diff --git a/005.tar.gz b/005.tar.gz deleted file mode 100644 index f145ff0..0000000 Binary files a/005.tar.gz and /dev/null differ diff --git a/006.tar.gz b/006.tar.gz new file mode 100644 index 0000000..5f26a2e Binary files /dev/null and b/006.tar.gz differ diff --git a/adapt-to-blivet-2-0-API.patch b/adapt-to-blivet-2-0-API.patch deleted file mode 100644 index a68c102..0000000 --- a/adapt-to-blivet-2-0-API.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 3fec7cef90b4000464864aa00404f03042c1d56b Mon Sep 17 00:00:00 2001 -From: David Lehman -Date: Wed, 23 Mar 2016 16:04:37 -0400 -Subject: [PATCH] Adapt to blivet-2.0 API. - ---- - com_redhat_kdump/common.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/com_redhat_kdump/common.py b/com_redhat_kdump/common.py -index 9e16bcf..d7c0517 100644 ---- a/com_redhat_kdump/common.py -+++ b/com_redhat_kdump/common.py -@@ -62,7 +62,7 @@ def getMemoryBounds(): - - totalMemory = getTotalMemory() - -- if blivet.arch.getArch() == 'ppc64': -+ if blivet.arch.get_arch() == 'ppc64': - lowerBound = 256 - minUsable = 1024 - step = 1 diff --git a/add-kdump-spoke-icon.patch b/add-kdump-spoke-icon.patch deleted file mode 100644 index 4a9a966..0000000 --- a/add-kdump-spoke-icon.patch +++ /dev/null @@ -1,280 +0,0 @@ -From e6ea58141a79a66ad494b2a97eff3d108c2d50c5 Mon Sep 17 00:00:00 2001 -From: Dave Young -Date: Fri, 5 Jun 2015 10:08:02 +0800 -Subject: [PATCH] Add kdump spoke icon - -Resolves: bz1200678 - -Previously we use gnome icon, people reported that the icon is bad because it -is always a sad face. - -Updated with another icon for kdump use only. - -Signed-off-by: Dave Young ---- - Makefile | 4 + - com_redhat_kdump/gui/spokes/kdump.py | 2 +- - kdump.svg | 202 +++++++++++++++++++++++++++ - test/packbootiso.sh | 1 + - 4 files changed, 208 insertions(+), 1 deletion(-) - create mode 100644 kdump.svg - -diff --git a/Makefile b/Makefile -index f7c2fa8..1982f5b 100644 ---- a/Makefile -+++ b/Makefile -@@ -10,6 +10,7 @@ FILES = $(ADDON) \ - po \ - Makefile \ - README \ -+ kdump.svg \ - version.sh - - EXCLUDES = \ -@@ -26,10 +27,13 @@ DISTNAME = $(NAME)-$(VERSION) - ADDONDIR = /usr/share/anaconda/addons/ - DISTBALL = $(DISTNAME).tar.gz - NUM_PROCS = $$(getconf _NPROCESSORS_ONLN) -+ICONDIR = /usr/share/icons/hicolor/scalable/apps/ - - install: version.sh - mkdir -p $(DESTDIR)$(ADDONDIR) -+ mkdir -p $(DESTDIR)$(ICONDIR) - cp -rv $(ADDON) $(DESTDIR)$(ADDONDIR) -+ install -c -m 644 kdump.svg $(DESTDIR)$(ICONDIR) - $(MAKE) install-po-files - - uninstall: -diff --git a/com_redhat_kdump/gui/spokes/kdump.py b/com_redhat_kdump/gui/spokes/kdump.py -index 9b2e731..7a52b46 100644 ---- a/com_redhat_kdump/gui/spokes/kdump.py -+++ b/com_redhat_kdump/gui/spokes/kdump.py -@@ -44,7 +44,7 @@ class KdumpSpoke(NormalSpoke): - helpFile = "KdumpSpoke.xml" - translationDomain = "kdump-anaconda-addon" - -- icon = "computer-fail-symbolic" -+ icon = "kdump" - title = N_("_KDUMP") - category = SystemCategory - -diff --git a/kdump.svg b/kdump.svg -new file mode 100644 -index 0000000..0386a6f ---- /dev/null -+++ b/kdump.svg -@@ -0,0 +1,202 @@ -+ -+ -+ -+ -+ -+ -+ -+ image/svg+xml -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/test/packbootiso.sh b/test/packbootiso.sh -index b7086ef..341b36f 100644 ---- a/test/packbootiso.sh -+++ b/test/packbootiso.sh -@@ -28,6 +28,7 @@ mkdir -p mnt/usr/share/anaconda/addons - rm -rf mnt/usr/share/anaconda/addons/com_redhat_kdump - find mnt/ -name kdump-anaconda-addon.mo -exec rm -f {} \; - cp -aRf kdump-anaconda-addon/com_redhat_kdump mnt/usr/share/anaconda/addons/ -+cp -a kdump-anaconda-addon/kdump.svg mnt/usr/share/icons/hicolor/scalable/apps/ - make -C kdump-anaconda-addon/po install DESTDIR=../../mnt - umount mnt - rm -rf kdump-anaconda-addon diff --git a/add-some-unit-tests.patch b/add-some-unit-tests.patch deleted file mode 100644 index 374321e..0000000 --- a/add-some-unit-tests.patch +++ /dev/null @@ -1,227 +0,0 @@ -From 6ed260c250a912e779b819d4e027ae571066c777 Mon Sep 17 00:00:00 2001 -From: Kairui Song -Date: Thu, 21 Mar 2019 17:34:28 +0800 -Subject: [PATCH 1/2] Add some unit tests - -This should cover most parts except UI part and Anaconda API. - -To run the test, ensure python3-nose is installed then run "make test" - -Signed-off-by: Kairui Song ---- - Makefile | 4 +- - test/unittests/test_common.py | 57 +++++++++++++++++++++++++++ - test/unittests/test_kickstart.py | 67 ++++++++++++++++++++++++++++++++ - test/unittests/utils.py | 12 ++++++ - 4 files changed, 138 insertions(+), 2 deletions(-) - create mode 100644 test/unittests/test_common.py - create mode 100644 test/unittests/test_kickstart.py - create mode 100644 test/unittests/utils.py - -diff --git a/Makefile b/Makefile -index 1982f5b..c9b581d 100644 ---- a/Makefile -+++ b/Makefile -@@ -77,14 +77,14 @@ test: - @find . -name '*.py' -print|xargs -n1 --max-procs=$(NUM_PROCS) pylint -E 2> /dev/null - @echo "[ OK ]" - @echo "***Running unittests checks***" -- @PYTHONPATH=. nosetests --processes=-1 -vw tests/ -+ @PYTHONPATH=. python3 -m nose --processes=-1 -vw test/unittests - - runpylint: - @find . -name '*.py' -print|xargs -n1 --max-procs=$(NUM_PROCS) pylint -E 2> /dev/null - @echo "[ OK ]" - - unittest: -- PYTHONPATH=. nosetests --processes=-1 -vw tests/ -+ PYTHONPATH=. python3 -m nose --processes=-1 -vw test/unittests - - version.sh: - @echo "KDUMP_ADDON_VERSION=$(VERSION)" > version.sh -diff --git a/test/unittests/test_common.py b/test/unittests/test_common.py -new file mode 100644 -index 0000000..d06263f ---- /dev/null -+++ b/test/unittests/test_common.py -@@ -0,0 +1,57 @@ -+from utils import KdumpTestCase -+from unittest.mock import patch, mock_open, MagicMock -+from com_redhat_kdump import common -+ -+SYS_CRASH_SIZE = '/sys/kernel/kexec_crash_size' -+PROC_MEMINFO = '/proc/meminfo' -+ -+X86_INFO_FIXTURE = { -+ SYS_CRASH_SIZE: "167772160", # 160MB -+ PROC_MEMINFO:"""MemTotal: 4030464 kB -+""" # 4GB - 160MB -+} -+ -+AARCH64_INFO_FIXTURE = { -+ SYS_CRASH_SIZE: "536870912", # 512MB -+ PROC_MEMINFO:"""MemTotal: 66584576 kB -+""" # 64GB - 512MB -+} -+ -+PPC64_INFO_FIXTURE = { -+ SYS_CRASH_SIZE: "1073741824", # 1024MB -+ PROC_MEMINFO:"""MemTotal: 66060288 kB -+""" # 64GB - 1GB -+} -+ -+ -+class MockFileRead(MagicMock): -+ def __init__(self, file_read_map): -+ MagicMock.__init__(self, name=open, spec=open) -+ self.file_read_map = file_read_map -+ -+ handle = MagicMock() -+ handle.__enter__.return_value = handle -+ handle.read.return_value = None -+ -+ def reset_choose_file(filename, *args, **kwargs): -+ handle.read.return_value = self.file_read_map[filename] -+ return handle -+ -+ self.side_effect = reset_choose_file -+ -+ -+class KdumpCommonTestCase(KdumpTestCase): -+ @patch("builtins.open", MockFileRead(X86_INFO_FIXTURE)) -+ @patch("blivet.arch.get_arch", return_value="x86_64") -+ def memory_bound_test_x86(self, _mock_read): -+ self.assertEqual((128, 4 * 1024 - 256, 1), common.getMemoryBounds()) -+ -+ @patch("builtins.open", MockFileRead(AARCH64_INFO_FIXTURE)) -+ @patch("blivet.arch.get_arch", return_value="aarch64") -+ def memory_bound_test_aarch64(self, _mock_read): -+ self.assertEqual((128, 64 * 1024 - 256, 1), common.getMemoryBounds()) -+ -+ @patch("builtins.open", MockFileRead(PPC64_INFO_FIXTURE)) -+ @patch("blivet.arch.get_arch", return_value="ppc64") -+ def memory_bound_test_ppc64(self, _mock_read): -+ self.assertEqual((256, 64 * 1024 - 1024, 1), common.getMemoryBounds()) -diff --git a/test/unittests/test_kickstart.py b/test/unittests/test_kickstart.py -new file mode 100644 -index 0000000..7b61e96 ---- /dev/null -+++ b/test/unittests/test_kickstart.py -@@ -0,0 +1,67 @@ -+from utils import KdumpTestCase -+from unittest.mock import patch -+from com_redhat_kdump.ks.kdump import KdumpData -+from pykickstart.errors import KickstartParseError -+import re -+ -+ -+ALL_ARGS_RE = re.compile( -+ r"[\s\n]*%addon\s+KdumpData\s+" -+ r"(--enable|--disable|--enablefadump|--reverse-mb[=|\ ]['\"]?\d+['\"][Mm]?)*" -+ r"\s+.*[\s\n]+%end[\s\n]*") -+ -+def new_ks_addon_data(): -+ return KdumpData("KdumpData") -+ -+ -+def kdump_check_ks(test, addon_data, required_arguments): -+ ks_str = str(addon_data) -+ for arg in required_arguments: -+ # Ensure rerquired argument is generated. -+ arg_regex = re.compile(r"[\s\n]*%addon\s+KdumpData.*\s+" + arg + r"\s+.*[\s\n]+%end[\s\n]*") -+ test.assertRegexpMatches(ks_str, arg_regex) -+ # Ensure no invalid argument is generated. -+ test.assertRegexpMatches(ks_str, ALL_ARGS_RE) -+ -+ -+class KdumpKickstartTestCase(KdumpTestCase): -+ def new_ks_addon_data_test(self): -+ ks_addon_data = new_ks_addon_data() -+ self.assertIsNotNone(ks_addon_data) -+ -+ def ks_default_to_str_test(self, _MockMemoryBounds): -+ ks_addon_data = new_ks_addon_data() -+ kdump_check_ks(self, ks_addon_data, ["--disable"]) -+ -+ def ks_enable_to_str_test(self): -+ ks_addon_data = new_ks_addon_data() -+ ks_addon_data.enabled = True -+ kdump_check_ks(self, ks_addon_data, ["--enable"]) -+ -+ def ks_disable_to_str_test(self): -+ ks_addon_data = new_ks_addon_data() -+ ks_addon_data.enabled = False -+ kdump_check_ks(self, ks_addon_data, ["--disable"]) -+ -+ def ks_parse_enable_to_str_test(self): -+ ks_addon_data = new_ks_addon_data() -+ ks_addon_data.handle_header(0, ["--enable"]) -+ kdump_check_ks(self, ks_addon_data, ["--enable"]) -+ -+ def ks_parse_reserve_to_str_test(self): -+ ks_addon_data = new_ks_addon_data() -+ ks_addon_data.handle_header(0, ["--enable", "--reserve-mb=256"]) -+ kdump_check_ks(self, ks_addon_data, ["--enable", "--reserve-mb[=|\ ](\"256\"|'256'|256)[Mm]?"]) -+ -+ def ks_parse_fadump_to_str_test(self): -+ ks_addon_data = new_ks_addon_data() -+ ks_addon_data.handle_header(0, ['--enablefadump']) -+ kdump_check_ks(self, ks_addon_data, ["--enablefadump"]) -+ -+ def ks_parse_invalid_reserve_size_test(self): -+ with self.assertRaises(KickstartParseError) as error: -+ ks_addon_data = new_ks_addon_data() -+ ks_addon_data.handle_header(0, ['--reserve-mb=']) -+ with self.assertRaises(KickstartParseError) as error: -+ ks_addon_data = new_ks_addon_data() -+ ks_addon_data.handle_header(0, ['--reserve-mb=invalid']) -diff --git a/test/unittests/utils.py b/test/unittests/utils.py -new file mode 100644 -index 0000000..64ae1a0 ---- /dev/null -+++ b/test/unittests/utils.py -@@ -0,0 +1,12 @@ -+import unittest -+ -+from unittest.mock import patch -+from com_redhat_kdump import common -+ -+def enable_kdump_addon_in_anaconda(): -+ return patch('pyanaconda.flags.cmdline.getbool', return_value=True) -+ -+class KdumpTestCase(unittest.TestCase): -+ def setUp(self): -+ # Clean up global variable that may cache test result of previous test case -+ common._reservedMemory = None - -From 22a2b63bde6621c650204d7ce8ad09612262a958 Mon Sep 17 00:00:00 2001 -From: Kairui Song -Date: Thu, 21 Mar 2019 21:30:45 +0800 -Subject: [PATCH 2/2] Allow quoting --reserve-mb parameter - -Previously, when parsing the kickstart file, it didn't expected the ---reserved-mb number to be quoted, but when generating kickstart lines -it will quote the number. This make it very confusing, as quoted -parameter currently will raise a exception of "Invalid value". - -Fix it by strip the quotes before parsing the int. - -Signed-off-by: Kairui Song ---- - com_redhat_kdump/ks/kdump.py | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index 6cc664f..53878b9 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -117,7 +117,8 @@ def handle_header(self, lineno, args): - - # Validate the reserve-mb argument - # Allow a final 'M' for consistency with the crashkernel kernel -- # parameter. Strip it if found. -+ # parameter. Strip it if found. And strip quotes. -+ opts.reserveMB = opts.reserveMB.strip("'\"") - if opts.reserveMB and opts.reserveMB[-1] == 'M': - opts.reserveMB = opts.reserveMB[:-1] - diff --git a/add-support-for-new-Anaconda-addon-methods.patch b/add-support-for-new-Anaconda-addon-methods.patch deleted file mode 100644 index 36f7c4c..0000000 --- a/add-support-for-new-Anaconda-addon-methods.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 3bb0f9714c09d12413ac2bc0a45f727841e8ca05 Mon Sep 17 00:00:00 2001 -From: Jiri Konecny -Date: Tue, 26 Apr 2016 10:09:40 +0200 -Subject: [PATCH] Add support for new Anaconda addon methods (#1288636) - -Setup() and execute() methods now have payload class accessible for -addons. - -These methods were changed in anaconda-21.48.22.67 for RHEL-7 and -anaconda-25.9 for Rawhide (for the next Fedora 25). - -Related: rhbz#1288636 ---- - com_redhat_kdump/ks/kdump.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index 34f46a2..ec4ab35 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -61,7 +61,7 @@ def __str__(self): - - return addon_str - -- def setup(self, storage, ksdata, instClass): -+ def setup(self, storage, ksdata, instClass, payload): - # the kdump addon should run only if requested - if not flags.cmdline.getbool("kdump_addon", default=False): - return -@@ -128,7 +128,7 @@ def handle_header(self, lineno, args): - self.reserveMB =opts.reserveMB - self.enablefadump = opts.enablefadump - -- def execute(self, storage, ksdata, instClass, users): -+ def execute(self, storage, ksdata, instClass, users, payload): - # the KdumpSpoke should run only if requested - if not flags.cmdline.getbool("kdump_addon", default=False): - return diff --git a/backport-use-pytest-to-run-the-unit-tests.patch b/backport-use-pytest-to-run-the-unit-tests.patch new file mode 100644 index 0000000..2510a1c --- /dev/null +++ b/backport-use-pytest-to-run-the-unit-tests.patch @@ -0,0 +1,215 @@ +From fe60eaf2d6e32ed7009f6d9cfecc1f761ec77560 Mon Sep 17 00:00:00 2001 +From: Vendula Poncova +Date: Thu, 23 Sep 2021 14:43:26 +0200 +Subject: [PATCH] Use pytest to run the unit tests + +The nose library is no longer maintained and it doesn't work with Python 3.9. +--- + Makefile | 2 +- + test/Dockerfile | 2 +- + test/{unittests => unit_tests}/test_common.py | 6 +++--- + test/{unittests => unit_tests}/test_installation.py | 10 +++++----- + test/{unittests => unit_tests}/test_interface.py | 6 +++--- + test/{unittests => unit_tests}/test_kickstart.py | 12 ++++++------ + 6 files changed, 19 insertions(+), 19 deletions(-) + rename test/{unittests => unit_tests}/test_common.py (92%) + rename test/{unittests => unit_tests}/test_installation.py (89%) + rename test/{unittests => unit_tests}/test_interface.py (94%) + rename test/{unittests => unit_tests}/test_kickstart.py (94%) + +diff --git a/Makefile b/Makefile +index 7db520c..f095243 100644 +--- a/Makefile ++++ b/Makefile +@@ -95,7 +95,7 @@ runpylint: + + unittest: + @echo "***Running unittests checks***" +- PYTHONPATH=. python3 -m nose --processes=-1 -vw test/unittests ++ PYTHONPATH=. pytest -vv test/unit_tests + + version.sh: + @echo "KDUMP_ADDON_VERSION=$(VERSION)" > version.sh +diff --git a/test/Dockerfile b/test/Dockerfile +index c09ad78..925a720 100644 +--- a/test/Dockerfile ++++ b/test/Dockerfile +@@ -9,7 +9,7 @@ RUN dnf update -y \ + + RUN pip install \ + pylint \ +- nose ++ pytest + + RUN mkdir /kdump-anaconda-addon + WORKDIR /kdump-anaconda-addon +diff --git a/test/unittests/test_common.py b/test/unit_tests/test_common.py +similarity index 92% +rename from test/unittests/test_common.py +rename to test/unit_tests/test_common.py +index e8c532e..16c973c 100644 +--- a/test/unittests/test_common.py ++++ b/test/unit_tests/test_common.py +@@ -48,15 +48,15 @@ class KdumpCommonTestCase(TestCase): + + @patch("builtins.open", MockFileRead(X86_INFO_FIXTURE)) + @patch("blivet.arch.get_arch", return_value="x86_64") +- def memory_bound_test_x86(self, _mock_read): ++ def test_memory_bound_x86(self, _mock_read): + self.assertEqual((128, 4 * 1024 - 256, 1), common.getMemoryBounds()) + + @patch("builtins.open", MockFileRead(AARCH64_INFO_FIXTURE)) + @patch("blivet.arch.get_arch", return_value="aarch64") +- def memory_bound_test_aarch64(self, _mock_read): ++ def test_memory_bound_aarch64(self, _mock_read): + self.assertEqual((128, 64 * 1024 - 256, 1), common.getMemoryBounds()) + + @patch("builtins.open", MockFileRead(PPC64_INFO_FIXTURE)) + @patch("blivet.arch.get_arch", return_value="ppc64") +- def memory_bound_test_ppc64(self, _mock_read): ++ def test_memory_bound_ppc64(self, _mock_read): + self.assertEqual((256, 64 * 1024 - 1024, 1), common.getMemoryBounds()) +diff --git a/test/unittests/test_installation.py b/test/unit_tests/test_installation.py +similarity index 89% +rename from test/unittests/test_installation.py +rename to test/unit_tests/test_installation.py +index 9c52bfe..b2deb4b 100644 +--- a/test/unittests/test_installation.py ++++ b/test/unit_tests/test_installation.py +@@ -7,7 +7,7 @@ from com_redhat_kdump.service.installation import KdumpConfigurationTask, KdumpI + class KdumpInstallationTestCase(TestCase): + + @patch("com_redhat_kdump.service.installation.STORAGE") +- def configuration_kdump_disabled_test(self, mock_storage): ++ def test_configuration_kdump_disabled(self, mock_storage): + bootloader_proxy = mock_storage.get_proxy.return_value + bootloader_proxy.ExtraArguments = [ + "a=1", "b=2", "c=3", "crashkernel=128M" +@@ -25,7 +25,7 @@ class KdumpInstallationTestCase(TestCase): + ]) + + @patch("com_redhat_kdump.service.installation.STORAGE") +- def configuration_kdump_enabled_test(self, mock_storage): ++ def test_configuration_kdump_enabled(self, mock_storage): + bootloader_proxy = mock_storage.get_proxy.return_value + bootloader_proxy.ExtraArguments = [ + "a=1", "b=2", "c=3", "crashkernel=128M" +@@ -44,7 +44,7 @@ class KdumpInstallationTestCase(TestCase): + + @patch("com_redhat_kdump.service.installation.os") + @patch("com_redhat_kdump.service.installation.STORAGE") +- def configuration_fadump_enabled_test(self, mock_storage, mock_os): ++ def test_configuration_fadump_enabled(self, mock_storage, mock_os): + bootloader_proxy = mock_storage.get_proxy.return_value + bootloader_proxy.ExtraArguments = [ + "a=1", "b=2", "c=3", "crashkernel=128M" +@@ -63,7 +63,7 @@ class KdumpInstallationTestCase(TestCase): + ]) + + @patch("com_redhat_kdump.service.installation.util") +- def installation_kdump_disabled_test(self, mock_util): ++ def test_installation_kdump_disabled(self, mock_util): + task = KdumpInstallationTask( + sysroot="/mnt/sysroot", + kdump_enabled=False +@@ -72,7 +72,7 @@ class KdumpInstallationTestCase(TestCase): + mock_util.execWithRedirect.assert_not_called() + + @patch("com_redhat_kdump.service.installation.util") +- def installation_kdump_enabled_test(self, mock_util): ++ def test_installation_kdump_enabled(self, mock_util): + task = KdumpInstallationTask( + sysroot="/mnt/sysroot", + kdump_enabled=True +diff --git a/test/unittests/test_interface.py b/test/unit_tests/test_interface.py +similarity index 94% +rename from test/unittests/test_interface.py +rename to test/unit_tests/test_interface.py +index fbf36fa..dbac003 100644 +--- a/test/unittests/test_interface.py ++++ b/test/unit_tests/test_interface.py +@@ -38,17 +38,17 @@ class KdumpInterfaceTestCase(TestCase): + [] + ) + +- def kdump_enabled_test(self): ++ def test_kdump_enabled(self): + self._interface.KdumpEnabled = True + self._check_properties_changed("KdumpEnabled", True) + self.assertEqual(self._interface.KdumpEnabled, True) + +- def fadump_enabled_test(self): ++ def test_fadump_enabled(self): + self._interface.FadumpEnabled = True + self._check_properties_changed("FadumpEnabled", True) + self.assertEqual(self._interface.FadumpEnabled, True) + +- def reserved_memory_test(self): ++ def test_reserved_memory(self): + self._interface.ReservedMemory = "256" + self._check_properties_changed("ReservedMemory", "256") + self.assertEqual(self._interface.ReservedMemory, "256") +diff --git a/test/unittests/test_kickstart.py b/test/unit_tests/test_kickstart.py +similarity index 94% +rename from test/unittests/test_kickstart.py +rename to test/unit_tests/test_kickstart.py +index 3637264..0dd78ed 100644 +--- a/test/unittests/test_kickstart.py ++++ b/test/unit_tests/test_kickstart.py +@@ -25,7 +25,7 @@ class KdumpKickstartTestCase(TestCase): + output = self._service.generate_kickstart() + self.assertEqual(output.strip(), dedent(ks_out).strip()) + +- def ks_default_test(self): ++ def test_ks_default(self): + self.assertEqual(self._service.kdump_enabled, False) + self.assertEqual(self._service.fadump_enabled, False) + self.assertEqual(self._service.reserved_memory, "128") +@@ -36,7 +36,7 @@ class KdumpKickstartTestCase(TestCase): + %end + """) + +- def ks_enable_test(self): ++ def test_ks_enable(self): + self._check_ks_input(""" + %addon com_redhat_kdump --enable + %end +@@ -52,7 +52,7 @@ class KdumpKickstartTestCase(TestCase): + %end + """) + +- def ks_disable_test(self): ++ def test_ks_disable(self): + self._check_ks_input(""" + %addon com_redhat_kdump --disable + %end +@@ -68,7 +68,7 @@ class KdumpKickstartTestCase(TestCase): + %end + """) + +- def ks_reserve_mb_test(self): ++ def test_ks_reserve_mb(self): + self._check_ks_input(""" + %addon com_redhat_kdump --enable --reserve-mb=256 + %end +@@ -84,7 +84,7 @@ class KdumpKickstartTestCase(TestCase): + %end + """) + +- def ks_reserve_mb_invalid_test(self): ++ def test_ks_reserve_mb_invalid(self): + ks_in = """ + %addon com_redhat_kdump --reserve-mb= + %end +@@ -99,7 +99,7 @@ class KdumpKickstartTestCase(TestCase): + ks_err = "Invalid value 'invalid' for --reserve-mb" + self._check_ks_input(ks_in, [ks_err]) + +- def ks_enablefadump_test(self): ++ def test_ks_enablefadump(self): + self._check_ks_input(""" + %addon com_redhat_kdump --disable --enablefadump + %end +-- +2.33.0 + diff --git a/backport-use-pytest-to-run-the-unittests.patch b/backport-use-pytest-to-run-the-unittests.patch deleted file mode 100644 index 1fb49f7..0000000 --- a/backport-use-pytest-to-run-the-unittests.patch +++ /dev/null @@ -1,116 +0,0 @@ -From fe60eaf2d6e32ed7009f6d9cfecc1f761ec77560 Mon Sep 17 00:00:00 2001 -From: Vendula Poncova -Date: Thu, 23 Sep 2021 14:43:26 +0200 -Subject: [PATCH] Use pytest to run the unit tests - -The nose library is no longer maintained and it doesn't work with Python 3.9. - -Conflict:Change the case name based on the current version -Reference:https://github.com/daveyoung/kdump-anaconda-addon/commit/fe60eaf2d6e32ed7009f6d9cfecc1f761ec77560 - ---- - Makefile | 4 ++-- - test/unittests/test_common.py | 6 +++--- - test/unittests/test_kickstart.py | 16 ++++++++-------- - 3 files changed, 13 insertions(+), 13 deletions(-) - -diff --git a/Makefile b/Makefile -index c9b581d..122d090 100644 ---- a/Makefile -+++ b/Makefile -@@ -77,14 +77,14 @@ test: - @find . -name '*.py' -print|xargs -n1 --max-procs=$(NUM_PROCS) pylint -E 2> /dev/null - @echo "[ OK ]" - @echo "***Running unittests checks***" -- @PYTHONPATH=. python3 -m nose --processes=-1 -vw test/unittests -+ @PYTHONPATH=. pytest -vv test/unittests - - runpylint: - @find . -name '*.py' -print|xargs -n1 --max-procs=$(NUM_PROCS) pylint -E 2> /dev/null - @echo "[ OK ]" - - unittest: -- PYTHONPATH=. python3 -m nose --processes=-1 -vw test/unittests -+ PYTHONPATH=. pytest -vv test/unittests - - version.sh: - @echo "KDUMP_ADDON_VERSION=$(VERSION)" > version.sh -diff --git a/test/unittests/test_common.py b/test/unittests/test_common.py -index 7f221be..e7a2ff3 100644 ---- a/test/unittests/test_common.py -+++ b/test/unittests/test_common.py -@@ -43,15 +43,15 @@ class MockFileRead(MagicMock): - class KdumpCommonTestCase(KdumpTestCase): - @patch("builtins.open", MockFileRead(X86_INFO_FIXTURE)) - @patch("blivet.arch.get_arch", return_value="x86_64") -- def memory_bound_test_x86(self, _mock_read): -+ def test_memory_bound_x86(self, _mock_read): - self.assertEqual((128, 4 * 1024 - 256, 1), common.getMemoryBounds()) - - @patch("builtins.open", MockFileRead(AARCH64_INFO_FIXTURE)) - @patch("blivet.arch.get_arch", return_value="aarch64") -- def memory_bound_test_aarch64(self, _mock_read): -+ def test_memory_bound_aarch64(self, _mock_read): - self.assertEqual((128, 64 * 1024 - 256, 1), common.getMemoryBounds()) - - @patch("builtins.open", MockFileRead(PPC64_INFO_FIXTURE)) - @patch("blivet.arch.get_arch", return_value="ppc64") -- def memory_bound_test_ppc64(self, _mock_read): -+ def test_memory_bound_ppc64(self, _mock_read): - self.assertEqual((256, 64 * 1024 - 1024, 1), common.getMemoryBounds()) -diff --git a/test/unittests/test_kickstart.py b/test/unittests/test_kickstart.py -index 4fb63a9..dc0d357 100644 ---- a/test/unittests/test_kickstart.py -+++ b/test/unittests/test_kickstart.py -@@ -25,40 +25,40 @@ def kdump_check_ks(test, addon_data, required_arguments): - - - class KdumpKickstartTestCase(KdumpTestCase): -- def new_ks_addon_data_test(self): -+ def test_new_ks_addon_data(self): - ks_addon_data = new_ks_addon_data() - self.assertIsNotNone(ks_addon_data) - -- def ks_default_to_str_test(self): -+ def test_ks_default_to_str(self): - ks_addon_data = new_ks_addon_data() - kdump_check_ks(self, ks_addon_data, ["--disable"]) - -- def ks_enable_to_str_test(self): -+ def test_ks_enable_to_str(self): - ks_addon_data = new_ks_addon_data() - ks_addon_data.enabled = True - kdump_check_ks(self, ks_addon_data, ["--enable"]) - -- def ks_disable_to_str_test(self): -+ def test_ks_disable_to_str(self): - ks_addon_data = new_ks_addon_data() - ks_addon_data.enabled = False - kdump_check_ks(self, ks_addon_data, ["--disable"]) - -- def ks_parse_enable_to_str_test(self): -+ def test_ks_parse_enable_to_str(self): - ks_addon_data = new_ks_addon_data() - ks_addon_data.handle_header(0, ["--enable"]) - kdump_check_ks(self, ks_addon_data, ["--enable"]) - -- def ks_parse_reserve_to_str_test(self): -+ def test_ks_parse_reserve_to_str(self): - ks_addon_data = new_ks_addon_data() - ks_addon_data.handle_header(0, ["--enable", "--reserve-mb=256"]) - kdump_check_ks(self, ks_addon_data, ["--enable", "--reserve-mb[=|\ ](\"256\"|'256'|256)[Mm]?"]) - -- def ks_parse_fadump_to_str_test(self): -+ def test_ks_parse_fadump_to_str(self): - ks_addon_data = new_ks_addon_data() - ks_addon_data.handle_header(0, ['--enablefadump']) - kdump_check_ks(self, ks_addon_data, ["--enablefadump"]) - -- def ks_parse_invalid_reserve_size_test(self): -+ def test_ks_parse_invalid_reserve_size(self): - with self.assertRaises(KickstartParseError) as error: - ks_addon_data = new_ks_addon_data() - ks_addon_data.handle_header(0, ['--reserve-mb=']) --- -2.33.0 - diff --git a/call-getMemoryBounds-to-the-match-method.patch b/call-getMemoryBounds-to-the-match-method.patch deleted file mode 100644 index 8f77baa..0000000 --- a/call-getMemoryBounds-to-the-match-method.patch +++ /dev/null @@ -1,47 +0,0 @@ -From 60fa4c1d1b15150c65b2f31c3447228cbd79fb01 Mon Sep 17 00:00:00 2001 -From: Dave Young -Date: Thu, 30 Jul 2015 15:00:55 +0800 -Subject: [PATCH] tui: call getMemoryBounds() call to the match() method - -Jan Stancek reported Installation sporadically hangs because kdump addon's -tui spoke in: /usr/share/anaconda/addons/com_redhat_kdump/tui/spokes/kdump.py -is calling their getMemoryBounds() function which ends up calling anaconda's -isys.total_memory method resulting in various actions happening at import -time including trying log and getting stuck. - -vpodzime suggest to move getMemoryBounds() call to the match() method ---- - com_redhat_kdump/tui/spokes/kdump.py | 8 +++----- - 1 file changed, 3 insertions(+), 5 deletions(-) - -diff --git a/com_redhat_kdump/tui/spokes/kdump.py b/com_redhat_kdump/tui/spokes/kdump.py -index 7a74011..d1b825c 100644 ---- a/com_redhat_kdump/tui/spokes/kdump.py -+++ b/com_redhat_kdump/tui/spokes/kdump.py -@@ -35,13 +35,12 @@ - __all__ = ["KdumpSpoke"] - - class _re: -- def __init__(self, patten, low, up): -+ def __init__(self, patten): - self.re = re.compile(patten) -- self.low = low -- self.up = up - - def match(self, key): - if self.re.match(key): -+ self.low, self.up, self.step = getMemoryBounds() - if key[-1] == 'M': - key = key[:-1] - key = int(key) -@@ -49,9 +48,8 @@ def match(self, key): - return True - return False - --lower, upper ,step = getMemoryBounds() - # Allow a string of digits optionally followed by 'M' --RESERVE_VALID = _re(r'^(\d+M?)$', lower, upper) -+RESERVE_VALID = _re(r'^(\d+M?)$') - - class KdumpSpoke(EditTUISpoke): - title = N_("Kdump") diff --git a/delete-old-files-before-updating-new-addon.patch b/delete-old-files-before-updating-new-addon.patch deleted file mode 100644 index 9fe793b..0000000 --- a/delete-old-files-before-updating-new-addon.patch +++ /dev/null @@ -1,23 +0,0 @@ -From bf53665efb51354b03350e1be87b059e8f778162 Mon Sep 17 00:00:00 2001 -From: Dave Young -Date: Fri, 6 Feb 2015 11:37:40 +0800 -Subject: [PATCH] packbootiso.sh: delete old files before updating new addon in - iso - ---- - test/packbootiso.sh | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/test/packbootiso.sh b/test/packbootiso.sh -index 95d908f..b7086ef 100644 ---- a/test/packbootiso.sh -+++ b/test/packbootiso.sh -@@ -25,6 +25,8 @@ umount mnt - mount -o loop squashdir/LiveOS/rootfs.img mnt - tar -xvzf $addon_tarball - mkdir -p mnt/usr/share/anaconda/addons -+rm -rf mnt/usr/share/anaconda/addons/com_redhat_kdump -+find mnt/ -name kdump-anaconda-addon.mo -exec rm -f {} \; - cp -aRf kdump-anaconda-addon/com_redhat_kdump mnt/usr/share/anaconda/addons/ - make -C kdump-anaconda-addon/po install DESTDIR=../../mnt - umount mnt diff --git a/deleteing-the-untranslated-po-files.patch b/deleteing-the-untranslated-po-files.patch deleted file mode 100644 index 6d506ce..0000000 --- a/deleteing-the-untranslated-po-files.patch +++ /dev/null @@ -1,576 +0,0 @@ -From 87921d53a65b52d9dbbb28877c0b02293970f621 Mon Sep 17 00:00:00 2001 -From: Dave Young -Date: Fri, 6 Feb 2015 17:52:39 +0800 -Subject: [PATCH] Deleteing the untranslated po files so that default language - will be used. - ---- - po/bn.po | 73 -------------------------------------------------------- - po/hy.po | 73 -------------------------------------------------------- - po/ku.po | 73 -------------------------------------------------------- - po/lo.po | 73 -------------------------------------------------------- - po/mk.po | 73 -------------------------------------------------------- - po/my.po | 73 -------------------------------------------------------- - po/ur.po | 73 -------------------------------------------------------- - 7 files changed, 511 deletions(-) - delete mode 100644 po/bn.po - delete mode 100644 po/hy.po - delete mode 100644 po/ku.po - delete mode 100644 po/lo.po - delete mode 100644 po/mk.po - delete mode 100644 po/my.po - delete mode 100644 po/ur.po - -diff --git a/po/bn.po b/po/bn.po -deleted file mode 100644 -index 28eeb57..0000000 ---- a/po/bn.po -+++ /dev/null -@@ -1,73 +0,0 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. --# --#, fuzzy --msgid "" --msgstr "" --"Project-Id-Version: PACKAGE VERSION\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-11-12 16:19+0800\n" --"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" --"Last-Translator: FULL NAME \n" --"Language-Team: LANGUAGE \n" --"Language: \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" --"Content-Transfer-Encoding: 8bit\n" -- --#: ../com_redhat_kdump/ks/kdump.py:120 --#, python-format --msgid "Invalid value %s for --reserve-mb" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:57 --msgid "Kdump" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:85 --#: ../com_redhat_kdump/gui/spokes/kdump.py:131 --msgid "Kdump is enabled" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:87 --#: ../com_redhat_kdump/gui/spokes/kdump.py:133 --msgid "Kdump is disabled" --msgstr "" -- --#: ../com_redhat_kdump/gui/spokes/kdump.py:47 --msgid "_KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:1 --msgid "KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:2 --msgid "" --"Kdump is a kernel crash dumping mechanism. In the event of a system crash, " --"kdump will capture information from your system that can be invaluable in " --"determining the cause of the crash. Note that kdump does require reserving a " --"portion of system memory that will be unavailable for other uses." --msgstr "" -- --#: tmp/kdump.glade.h:3 --msgid "Memory To Be _Reserved (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:4 --msgid "Total System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:5 --msgid "Usable System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:6 --msgid "_Enable kdump" --msgstr "" -- --#: tmp/kdump.glade.h:7 --msgid "_Enable dump mode fadump" --msgstr "" -diff --git a/po/hy.po b/po/hy.po -deleted file mode 100644 -index 28eeb57..0000000 ---- a/po/hy.po -+++ /dev/null -@@ -1,73 +0,0 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. --# --#, fuzzy --msgid "" --msgstr "" --"Project-Id-Version: PACKAGE VERSION\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-11-12 16:19+0800\n" --"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" --"Last-Translator: FULL NAME \n" --"Language-Team: LANGUAGE \n" --"Language: \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" --"Content-Transfer-Encoding: 8bit\n" -- --#: ../com_redhat_kdump/ks/kdump.py:120 --#, python-format --msgid "Invalid value %s for --reserve-mb" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:57 --msgid "Kdump" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:85 --#: ../com_redhat_kdump/gui/spokes/kdump.py:131 --msgid "Kdump is enabled" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:87 --#: ../com_redhat_kdump/gui/spokes/kdump.py:133 --msgid "Kdump is disabled" --msgstr "" -- --#: ../com_redhat_kdump/gui/spokes/kdump.py:47 --msgid "_KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:1 --msgid "KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:2 --msgid "" --"Kdump is a kernel crash dumping mechanism. In the event of a system crash, " --"kdump will capture information from your system that can be invaluable in " --"determining the cause of the crash. Note that kdump does require reserving a " --"portion of system memory that will be unavailable for other uses." --msgstr "" -- --#: tmp/kdump.glade.h:3 --msgid "Memory To Be _Reserved (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:4 --msgid "Total System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:5 --msgid "Usable System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:6 --msgid "_Enable kdump" --msgstr "" -- --#: tmp/kdump.glade.h:7 --msgid "_Enable dump mode fadump" --msgstr "" -diff --git a/po/ku.po b/po/ku.po -deleted file mode 100644 -index 28eeb57..0000000 ---- a/po/ku.po -+++ /dev/null -@@ -1,73 +0,0 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. --# --#, fuzzy --msgid "" --msgstr "" --"Project-Id-Version: PACKAGE VERSION\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-11-12 16:19+0800\n" --"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" --"Last-Translator: FULL NAME \n" --"Language-Team: LANGUAGE \n" --"Language: \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" --"Content-Transfer-Encoding: 8bit\n" -- --#: ../com_redhat_kdump/ks/kdump.py:120 --#, python-format --msgid "Invalid value %s for --reserve-mb" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:57 --msgid "Kdump" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:85 --#: ../com_redhat_kdump/gui/spokes/kdump.py:131 --msgid "Kdump is enabled" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:87 --#: ../com_redhat_kdump/gui/spokes/kdump.py:133 --msgid "Kdump is disabled" --msgstr "" -- --#: ../com_redhat_kdump/gui/spokes/kdump.py:47 --msgid "_KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:1 --msgid "KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:2 --msgid "" --"Kdump is a kernel crash dumping mechanism. In the event of a system crash, " --"kdump will capture information from your system that can be invaluable in " --"determining the cause of the crash. Note that kdump does require reserving a " --"portion of system memory that will be unavailable for other uses." --msgstr "" -- --#: tmp/kdump.glade.h:3 --msgid "Memory To Be _Reserved (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:4 --msgid "Total System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:5 --msgid "Usable System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:6 --msgid "_Enable kdump" --msgstr "" -- --#: tmp/kdump.glade.h:7 --msgid "_Enable dump mode fadump" --msgstr "" -diff --git a/po/lo.po b/po/lo.po -deleted file mode 100644 -index 28eeb57..0000000 ---- a/po/lo.po -+++ /dev/null -@@ -1,73 +0,0 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. --# --#, fuzzy --msgid "" --msgstr "" --"Project-Id-Version: PACKAGE VERSION\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-11-12 16:19+0800\n" --"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" --"Last-Translator: FULL NAME \n" --"Language-Team: LANGUAGE \n" --"Language: \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" --"Content-Transfer-Encoding: 8bit\n" -- --#: ../com_redhat_kdump/ks/kdump.py:120 --#, python-format --msgid "Invalid value %s for --reserve-mb" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:57 --msgid "Kdump" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:85 --#: ../com_redhat_kdump/gui/spokes/kdump.py:131 --msgid "Kdump is enabled" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:87 --#: ../com_redhat_kdump/gui/spokes/kdump.py:133 --msgid "Kdump is disabled" --msgstr "" -- --#: ../com_redhat_kdump/gui/spokes/kdump.py:47 --msgid "_KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:1 --msgid "KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:2 --msgid "" --"Kdump is a kernel crash dumping mechanism. In the event of a system crash, " --"kdump will capture information from your system that can be invaluable in " --"determining the cause of the crash. Note that kdump does require reserving a " --"portion of system memory that will be unavailable for other uses." --msgstr "" -- --#: tmp/kdump.glade.h:3 --msgid "Memory To Be _Reserved (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:4 --msgid "Total System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:5 --msgid "Usable System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:6 --msgid "_Enable kdump" --msgstr "" -- --#: tmp/kdump.glade.h:7 --msgid "_Enable dump mode fadump" --msgstr "" -diff --git a/po/mk.po b/po/mk.po -deleted file mode 100644 -index 28eeb57..0000000 ---- a/po/mk.po -+++ /dev/null -@@ -1,73 +0,0 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. --# --#, fuzzy --msgid "" --msgstr "" --"Project-Id-Version: PACKAGE VERSION\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-11-12 16:19+0800\n" --"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" --"Last-Translator: FULL NAME \n" --"Language-Team: LANGUAGE \n" --"Language: \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" --"Content-Transfer-Encoding: 8bit\n" -- --#: ../com_redhat_kdump/ks/kdump.py:120 --#, python-format --msgid "Invalid value %s for --reserve-mb" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:57 --msgid "Kdump" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:85 --#: ../com_redhat_kdump/gui/spokes/kdump.py:131 --msgid "Kdump is enabled" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:87 --#: ../com_redhat_kdump/gui/spokes/kdump.py:133 --msgid "Kdump is disabled" --msgstr "" -- --#: ../com_redhat_kdump/gui/spokes/kdump.py:47 --msgid "_KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:1 --msgid "KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:2 --msgid "" --"Kdump is a kernel crash dumping mechanism. In the event of a system crash, " --"kdump will capture information from your system that can be invaluable in " --"determining the cause of the crash. Note that kdump does require reserving a " --"portion of system memory that will be unavailable for other uses." --msgstr "" -- --#: tmp/kdump.glade.h:3 --msgid "Memory To Be _Reserved (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:4 --msgid "Total System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:5 --msgid "Usable System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:6 --msgid "_Enable kdump" --msgstr "" -- --#: tmp/kdump.glade.h:7 --msgid "_Enable dump mode fadump" --msgstr "" -diff --git a/po/my.po b/po/my.po -deleted file mode 100644 -index 28eeb57..0000000 ---- a/po/my.po -+++ /dev/null -@@ -1,73 +0,0 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. --# --#, fuzzy --msgid "" --msgstr "" --"Project-Id-Version: PACKAGE VERSION\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-11-12 16:19+0800\n" --"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" --"Last-Translator: FULL NAME \n" --"Language-Team: LANGUAGE \n" --"Language: \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" --"Content-Transfer-Encoding: 8bit\n" -- --#: ../com_redhat_kdump/ks/kdump.py:120 --#, python-format --msgid "Invalid value %s for --reserve-mb" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:57 --msgid "Kdump" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:85 --#: ../com_redhat_kdump/gui/spokes/kdump.py:131 --msgid "Kdump is enabled" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:87 --#: ../com_redhat_kdump/gui/spokes/kdump.py:133 --msgid "Kdump is disabled" --msgstr "" -- --#: ../com_redhat_kdump/gui/spokes/kdump.py:47 --msgid "_KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:1 --msgid "KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:2 --msgid "" --"Kdump is a kernel crash dumping mechanism. In the event of a system crash, " --"kdump will capture information from your system that can be invaluable in " --"determining the cause of the crash. Note that kdump does require reserving a " --"portion of system memory that will be unavailable for other uses." --msgstr "" -- --#: tmp/kdump.glade.h:3 --msgid "Memory To Be _Reserved (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:4 --msgid "Total System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:5 --msgid "Usable System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:6 --msgid "_Enable kdump" --msgstr "" -- --#: tmp/kdump.glade.h:7 --msgid "_Enable dump mode fadump" --msgstr "" -diff --git a/po/ur.po b/po/ur.po -deleted file mode 100644 -index 28eeb57..0000000 ---- a/po/ur.po -+++ /dev/null -@@ -1,73 +0,0 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. --# --#, fuzzy --msgid "" --msgstr "" --"Project-Id-Version: PACKAGE VERSION\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-11-12 16:19+0800\n" --"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" --"Last-Translator: FULL NAME \n" --"Language-Team: LANGUAGE \n" --"Language: \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" --"Content-Transfer-Encoding: 8bit\n" -- --#: ../com_redhat_kdump/ks/kdump.py:120 --#, python-format --msgid "Invalid value %s for --reserve-mb" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:57 --msgid "Kdump" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:85 --#: ../com_redhat_kdump/gui/spokes/kdump.py:131 --msgid "Kdump is enabled" --msgstr "" -- --#: ../com_redhat_kdump/tui/spokes/kdump.py:87 --#: ../com_redhat_kdump/gui/spokes/kdump.py:133 --msgid "Kdump is disabled" --msgstr "" -- --#: ../com_redhat_kdump/gui/spokes/kdump.py:47 --msgid "_KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:1 --msgid "KDUMP" --msgstr "" -- --#: tmp/kdump.glade.h:2 --msgid "" --"Kdump is a kernel crash dumping mechanism. In the event of a system crash, " --"kdump will capture information from your system that can be invaluable in " --"determining the cause of the crash. Note that kdump does require reserving a " --"portion of system memory that will be unavailable for other uses." --msgstr "" -- --#: tmp/kdump.glade.h:3 --msgid "Memory To Be _Reserved (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:4 --msgid "Total System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:5 --msgid "Usable System Memory (MB):" --msgstr "" -- --#: tmp/kdump.glade.h:6 --msgid "_Enable kdump" --msgstr "" -- --#: tmp/kdump.glade.h:7 --msgid "_Enable dump mode fadump" --msgstr "" diff --git a/dont-call-pyanaconda-function-for-total-memory.patch b/dont-call-pyanaconda-function-for-total-memory.patch deleted file mode 100644 index f4f6a72..0000000 --- a/dont-call-pyanaconda-function-for-total-memory.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 6577df4d909ae3501b4ff2b623a8bef53d0a4588 Mon Sep 17 00:00:00 2001 -From: Dave Young -Date: Thu, 7 Jul 2016 15:46:37 +0800 -Subject: [PATCH] Do not call pyanaconda function for total_memory - -Resolves: bz1349308 - -Jan reported another installer hang which is caused by this function -callback. - -Switch to read meminfo directly instead of call the function. ---- - com_redhat_kdump/common.py | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - -diff --git a/com_redhat_kdump/common.py b/com_redhat_kdump/common.py -index d7c0517..d45304e 100644 ---- a/com_redhat_kdump/common.py -+++ b/com_redhat_kdump/common.py -@@ -19,12 +19,11 @@ - # Red Hat Author(s): David Shea - # - import os -+import re - __all__ = ["getReservedMemory", "getTotalMemory", "getMemoryBounds"] - - import blivet.arch - --from pyanaconda.isys import total_memory -- - _reservedMemory = None - def getReservedMemory(): - """Return the amount of memory currently reserved for kdump in MB.""" -@@ -47,9 +46,14 @@ def getTotalMemory(): - This is the amount reported by /proc/meminfo plus the aount - currently reserved for kdump. - """ -+ memkb = 0 -+ fd = open('/proc/meminfo').read() -+ matched = re.search(r'^MemTotal:\s+(\d+)', fd) -+ if matched: -+ memkb = int(matched.groups()[0]) - - # total_memory return memory in KB, convert to MB -- availMem = total_memory() / 1024 -+ availMem = memkb / 1024 - - return availMem + getReservedMemory() - diff --git a/dont-mix-tabs-and-spaces-for-indentation.patch b/dont-mix-tabs-and-spaces-for-indentation.patch deleted file mode 100644 index bfab0ac..0000000 --- a/dont-mix-tabs-and-spaces-for-indentation.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 354324a5c577774863977254358a61ef0d00d1d5 Mon Sep 17 00:00:00 2001 -From: Martin Kolman -Date: Tue, 17 Mar 2015 15:41:51 +0100 -Subject: [PATCH] Don't mix tabs and spaces for indentation - -While discouraged it is still possible to mix tabs and spaces in Python -2, but in Python 3 this cases an error at runtime. ---- - com_redhat_kdump/ks/kdump.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index d83da32..6929c9b 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -88,7 +88,7 @@ def setup(self, storage, ksdata, instClass): - if self.enabled: - storage.bootloader.boot_args.add('crashkernel=%s' % self.reserveMB) - ksdata.packages.packageList.append("kexec-tools") -- if self.enablefadump and os.path.exists(FADUMP_CAPABLE_FILE): -+ if self.enablefadump and os.path.exists(FADUMP_CAPABLE_FILE): - storage.bootloader.boot_args.add('fadump=on') - - def handle_header(self, lineno, args): diff --git a/dont-put-options-after-the-end-of-the-addon-section.patch b/dont-put-options-after-the-end-of-the-addon-section.patch deleted file mode 100644 index 4b272d5..0000000 --- a/dont-put-options-after-the-end-of-the-addon-section.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 0c68135bd14788bc6b3f7f901eb2d2cb8ba76f79 Mon Sep 17 00:00:00 2001 -From: Martin Kolman -Date: Mon, 7 Sep 2015 14:46:42 +0200 -Subject: [PATCH] Don't put options after the %end of the %addon section - -Otherwise the installation describing kickstart will not be valid. -This can resulting in various issues such, as Initial Setup refusing -to run due to invalid kickstart file. ---- - com_redhat_kdump/ks/kdump.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index 6929c9b..34f46a2 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -54,11 +54,11 @@ def __str__(self): - if self.reserveMB: - addon_str += " --reserve-mb='%s'" % self.reserveMB - -- addon_str += "\n%s\n%%end\n" % self.content.strip() -- - if self.enablefadump: - addon_str += " --enablefadump" - -+ addon_str += "\n%s\n%%end\n" % self.content.strip() -+ - return addon_str - - def setup(self, storage, ksdata, instClass): diff --git a/dont-use-the-local-storage-object.patch b/dont-use-the-local-storage-object.patch deleted file mode 100644 index 6047816..0000000 --- a/dont-use-the-local-storage-object.patch +++ /dev/null @@ -1,57 +0,0 @@ -From 5ff2c303eee42b38db75e538c196741d0e9e29d6 Mon Sep 17 00:00:00 2001 -From: Vendula Poncova -Date: Tue, 11 Feb 2020 11:33:08 +0100 -Subject: [PATCH] Don't use the local storage object - -If the local storage object is not available, don't set it up. It means that -Anaconda uses the DBus Storage module and it is enough to set up the extra -arguments of the Bootloader module. ---- - com_redhat_kdump/ks/kdump.py | 16 ++++++++++++++-- - 1 file changed, 14 insertions(+), 2 deletions(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index 09f727b..167edba 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -70,7 +70,11 @@ def setup(self, storage, ksdata, payload): - if not kernel_arguments.is_enabled("kdump_addon"): - return - -+ # Update the package list. -+ if self.enabled: -+ ksdata.packages.packageList.append("kexec-tools") - -+ # Update the bootloader arguments. - bootloader_proxy = STORAGE.get_proxy(BOOTLOADER) - - # Clear any existing crashkernel bootloader arguments -@@ -83,10 +87,18 @@ def setup(self, storage, ksdata, payload): - # Ensure that the amount is an amount in MB - if self.reserveMB[-1] != 'M': - self.reserveMB += 'M' -- new_args.append(' crashkernel=%s' % self.reserveMB) -+ new_args.append('crashkernel=%s' % self.reserveMB) -+ -+ if self.enablefadump and os.path.exists(FADUMP_CAPABLE_FILE): -+ new_args.append('fadump=on') - - bootloader_proxy.SetExtraArguments(new_args) - -+ # If the local storage object is not available, skip. -+ # FIXME: This is a temporary workaround. -+ if not storage: -+ return -+ - # Do the same thing with the storage.bootloader.boot_args set - if storage.bootloader.boot_args: - crashargs = [arg for arg in storage.bootloader.boot_args \ -@@ -95,7 +107,7 @@ def setup(self, storage, ksdata, payload): - - if self.enabled: - storage.bootloader.boot_args.add('crashkernel=%s' % self.reserveMB) -- ksdata.packages.packageList.append("kexec-tools") -+ - if self.enablefadump and os.path.exists(FADUMP_CAPABLE_FILE): - storage.bootloader.boot_args.add('fadump=on') - diff --git a/fix-an-unittest-error.patch b/fix-an-unittest-error.patch deleted file mode 100644 index c23bae3..0000000 --- a/fix-an-unittest-error.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 653265118d4fa3a0043a03405fbcb8fa601daaa7 Mon Sep 17 00:00:00 2001 -From: Kairui Song -Date: Thu, 28 Mar 2019 11:37:57 +0800 -Subject: [PATCH] Fix an unittest error - -There is no mock object passing in so this will raise an error. - -Signed-off-by: Kairui Song ---- - test/unittests/test_kickstart.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/test/unittests/test_kickstart.py b/test/unittests/test_kickstart.py -index 7b61e96..77bde43 100644 ---- a/test/unittests/test_kickstart.py -+++ b/test/unittests/test_kickstart.py -@@ -29,7 +29,7 @@ def new_ks_addon_data_test(self): - ks_addon_data = new_ks_addon_data() - self.assertIsNotNone(ks_addon_data) - -- def ks_default_to_str_test(self, _MockMemoryBounds): -+ def ks_default_to_str_test(self): - ks_addon_data = new_ks_addon_data() - kdump_check_ks(self, ks_addon_data, ["--disable"]) - diff --git a/fix-an-unknown-error.patch b/fix-an-unknown-error.patch deleted file mode 100644 index e50dd22..0000000 --- a/fix-an-unknown-error.patch +++ /dev/null @@ -1,29 +0,0 @@ -From d3e2e0ebcb2f9ba803576e48e7b9c752cc7e9f1a Mon Sep 17 00:00:00 2001 -From: Tong Li -Date: Mon, 12 Dec 2016 13:10:08 +0800 -Subject: [PATCH] Fix 'an unknown error has occurred' issue when selecting - languages using non-latin characters - -Now when kdump_anaconda_addon is enabled and languages which use non-latin -characters are selected in anaconda, e.g. Chinese and Japanese, it will -raise an error and unable to continue to finish the installation process. -This is because 'gettext.ldgettext' will return a byte object when -translation includes non-latin character, while anaconda's core code -requires a string. To fix this, we apply the mothod used by pyanaconda, -which is invoking gettext after getting a translation instance. This can -make sure that a str object will be returned. ---- - com_redhat_kdump/i18n.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/com_redhat_kdump/i18n.py b/com_redhat_kdump/i18n.py -index a8cd27a..0c1cbd9 100644 ---- a/com_redhat_kdump/i18n.py -+++ b/com_redhat_kdump/i18n.py -@@ -23,5 +23,5 @@ - - import gettext - --_ = lambda x: gettext.ldgettext("kdump-anaconda-addon", x) -+_ = lambda x: gettext.translation("kdump-anaconda-addon", fallback=True).gettext(x) if x != "" else "" - N_ = lambda x: x diff --git a/fix-bug-1053550.patch b/fix-bug-1053550.patch deleted file mode 100644 index 37186ca..0000000 --- a/fix-bug-1053550.patch +++ /dev/null @@ -1,135 +0,0 @@ -From 173b1d1060c1e2ef1e4db9fa36ed3b8112482cc4 Mon Sep 17 00:00:00 2001 -From: Tong Li -Date: Tue, 8 Nov 2016 16:10:05 +0800 -Subject: [PATCH] Fix bug #1053550 - https://bugzilla.redhat.com/show_bug.cgi?id=1053550 - -"Latn" is the script code according to ISO 15924 used by CLDR and libicu. -But glibc locales spell it "latin" and "Latn" doesnt' work with gettext. -So when Serbian in latin script is selected in anaconda while installing, -translations can't be displayed correctly in the kdump configuration addon. ---- - po/sr@latin.po | 114 +++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 114 insertions(+) - create mode 100644 po/sr@latin.po - -diff --git a/po/sr@latin.po b/po/sr@latin.po -new file mode 100644 -index 0000000..bbe478f ---- /dev/null -+++ b/po/sr@latin.po -@@ -0,0 +1,114 @@ -+# Serbian(Latin) translations for kexec-tools -+# Copyright (C) 2007 Red Hat, Inc. -+# This file is distributed under the same license as the kexec-tools package. -+# Miloš Komarčević , 2007. -+msgid "" -+msgstr "" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2007-03-10 08:02-0500\n" -+"Last-Translator: Miloš Komarčević \n" -+"Language-Team: Serbian (sr) \n" -+"Language: sr-Latn\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"X-Generator: Zanata 2.0.2\n" -+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -+ -+#: ../com_redhat_kdump/ks/kdump.py:120 -+#, python-format -+msgid "Invalid value %s for --reserve-mb" -+msgstr "" -+ -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 -+msgid "Kdump" -+msgstr "Kdump" -+ -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 -+msgid "Kdump is enabled" -+msgstr "" -+ -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 -+msgid "Kdump is disabled" -+msgstr "" -+ -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 -+msgid "_KDUMP" -+msgstr "" -+ -+#: tmp/kdump.glade.h:1 -+msgid "KDUMP" -+msgstr "" -+ -+#: tmp/kdump.glade.h:2 -+msgid "" -+"Kdump is a kernel crash dumping mechanism. In the event of a system crash, " -+"kdump will capture information from your system that can be invaluable in " -+"determining the cause of the crash. Note that kdump does require reserving a " -+"portion of system memory that will be unavailable for other uses." -+msgstr "" -+"Kdump je mehanizam za izbačaj kraha jezgra. U slučaju kraha sistema, kdump " -+"će sakupiti podatke od sistema koji mogu biti od neprocenjive pomoći u " -+"određivanju uzroka kraha. Primetite da kdump zahteva zauzimanje dela " -+"sistemske memorije koji neće biti dostupan za drugu upotrebu." -+ -+#: tmp/kdump.glade.h:3 -+msgid "Memory To Be _Reserved (MB):" -+msgstr "" -+ -+#: tmp/kdump.glade.h:4 -+#, fuzzy -+msgid "Total System Memory (MB):" -+msgstr "_Ukupna memorija sistema (MB):" -+ -+#: tmp/kdump.glade.h:5 -+#, fuzzy -+msgid "Usable System Memory (MB):" -+msgstr "_Upotrebljiva memorija sistema (MB):" -+ -+#: tmp/kdump.glade.h:6 -+msgid "_Enable kdump" -+msgstr "" -+ -+#: tmp/kdump.glade.h:7 -+msgid "_Enable dump mode fadump" -+msgstr "" -+ -+#, fuzzy -+#~ msgid "Kdump Memory Reservation:" -+#~ msgstr "_Kdump memorija (MB):" -+ -+#~ msgid "%s" -+#~ msgstr "%s" -+ -+#~ msgid "" -+#~ "Sorry, your system does not have enough memory for kdump to be viable!" -+#~ msgstr "" -+#~ "Žalim, sistem ne poseduje dovoljno memorije kako bi kdump bio moguć!" -+ -+#, fuzzy -+#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -+#~ msgstr "Žalim, Xen jezgra trenutno ne podržavaju kdump!" -+ -+#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -+#~ msgstr "Žalim, %s arhitektura trenutno ne podržava kdump!" -+ -+#, fuzzy -+#~ msgid "" -+#~ "Changing Kdump settings requires rebooting the system to reallocate " -+#~ "memory accordingly. Would you like to continue with this change and " -+#~ "reboot the system after firstboot is complete?" -+#~ msgstr "" -+#~ "Izmena Kdump podešavanja zahteva ponovno pokretanje sistema kako bi se " -+#~ "shodno zauzela memorija. %sDa li želite da nastavite sa ovom izmenom i " -+#~ "ponovo pokrenete sistem nakon što se firstboot završi?" -+ -+#~ msgid "Error! No bootloader config file found, aborting configuration!" -+#~ msgstr "" -+#~ "Greška! Nije pronađena datoteka podešavanja pokretačkog programa, " -+#~ "obustavljam podešavanje!" diff --git a/fix-import-after-Anaconda-refactoring.patch b/fix-import-after-Anaconda-refactoring.patch deleted file mode 100644 index 90717ed..0000000 --- a/fix-import-after-Anaconda-refactoring.patch +++ /dev/null @@ -1,220 +0,0 @@ -From 78830ebefc25f616145da2b1534f879f4cabca29 Mon Sep 17 00:00:00 2001 -From: Jiri Konecny -Date: Fri, 19 Jan 2018 11:41:39 +0100 -Subject: [PATCH 1/3] Fix import after Anaconda refactoring - -iutil -> core.util - -Introduced in anaconda-28.18.1. ---- - com_redhat_kdump/ks/kdump.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index ec4ab35..4f734e4 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -21,7 +21,7 @@ - - import os.path - from pyanaconda.addons import AddonData --from pyanaconda import iutil -+from pyanaconda.core import util - from pyanaconda.flags import flags - - from pykickstart.options import KSOptionParser -@@ -138,4 +138,4 @@ def execute(self, storage, ksdata, instClass, users, payload): - else: - action = "disable" - -- iutil.execWithRedirect("systemctl", [action, "kdump.service"], root=iutil.getSysroot()) -+ util.execWithRedirect("systemctl", [action, "kdump.service"], root=util.getSysroot()) - -From d0a30e26ca7176db949038402effa0523cae3fc2 Mon Sep 17 00:00:00 2001 -From: Jiri Konecny -Date: Fri, 19 Jan 2018 11:45:32 +0100 -Subject: [PATCH 2/3] Fix unused dependency and code style - -Minor issues I found in the code. ---- - com_redhat_kdump/common.py | 1 - - com_redhat_kdump/ks/kdump.py | 2 +- - 2 files changed, 1 insertion(+), 2 deletions(-) - -diff --git a/com_redhat_kdump/common.py b/com_redhat_kdump/common.py -index d45304e..1b79186 100644 ---- a/com_redhat_kdump/common.py -+++ b/com_redhat_kdump/common.py -@@ -18,7 +18,6 @@ - # - # Red Hat Author(s): David Shea - # --import os - import re - __all__ = ["getReservedMemory", "getTotalMemory", "getMemoryBounds"] - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index 4f734e4..84ec5f9 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -125,7 +125,7 @@ def handle_header(self, lineno, args): - - # Store the parsed arguments - self.enabled = opts.enabled -- self.reserveMB =opts.reserveMB -+ self.reserveMB = opts.reserveMB - self.enablefadump = opts.enablefadump - - def execute(self, storage, ksdata, instClass, users, payload): - -From 8d18fd069b8b63b2ff031f47103ec879ab85f22d Mon Sep 17 00:00:00 2001 -From: Jiri Konecny -Date: Fri, 19 Jan 2018 16:50:04 +0100 -Subject: [PATCH 3/3] Migrate TUI spoke to new Simpleline solution - -Anaconda migrated to Simpleline which is old Anaconda TUI promoted to -separate library. ---- - com_redhat_kdump/tui/spokes/kdump.py | 106 +++++++++++++++++++-------- - 1 file changed, 76 insertions(+), 30 deletions(-) - -diff --git a/com_redhat_kdump/tui/spokes/kdump.py b/com_redhat_kdump/tui/spokes/kdump.py -index e220f07..dea0b14 100644 ---- a/com_redhat_kdump/tui/spokes/kdump.py -+++ b/com_redhat_kdump/tui/spokes/kdump.py -@@ -26,50 +26,36 @@ - - from pyanaconda.flags import flags - from pyanaconda.ui.categories.system import SystemCategory --from pyanaconda.ui.tui.spokes import EditTUISpoke --from pyanaconda.ui.tui.spokes import EditTUISpokeEntry as Entry -+from pyanaconda.ui.tui.spokes import NormalTUISpoke -+from pyanaconda.ui.tui.tuiobject import Dialog -+from simpleline.render.widgets import CheckboxWidget, EntryWidget -+from simpleline.render.containers import ListColumnContainer -+from simpleline.render.screen import InputState - from com_redhat_kdump.common import getMemoryBounds - from com_redhat_kdump.i18n import N_, _ - from com_redhat_kdump.constants import FADUMP_CAPABLE_FILE - - __all__ = ["KdumpSpoke"] - --class _re: -- def __init__(self, patten): -- self.re = re.compile(patten) -+class KdumpSpoke(NormalTUISpoke): -+ category = SystemCategory - -- def match(self, key): -- if self.re.match(key): -- self.low, self.up, self.step = getMemoryBounds() -- if key[-1] == 'M': -- key = key[:-1] -- key = int(key) -- if key <= self.up and key >= self.low : -- return True -- return False -+ def __init__(self, data, storage, payload, instclass): -+ super().__init__(data, storage, payload, instclass) -+ self.title = N_("Kdump") -+ self._addon_data = self.data.addons.com_redhat_kdump - --# Allow a string of digits optionally followed by 'M' --RESERVE_VALID = _re(r'^(\d+M?)$') -+ self._lower, self._upper, self._step = getMemoryBounds() -+ # Allow a string of digits optionally followed by 'M' -+ self._reserve_check_re = re.compile(r'^(\d+M?)$') - --class KdumpSpoke(EditTUISpoke): -- title = N_("Kdump") -- category = SystemCategory -- lower, upper ,_step = getMemoryBounds() -- edit_fields = [ -- Entry("Enable kdump", "enabled", EditTUISpoke.CHECK, True), -- Entry("Enable dump mode fadump", "enablefadump", EditTUISpoke.CHECK, os.path.exists(FADUMP_CAPABLE_FILE) and (lambda self,args: args.enabled)), -- Entry("Reserve amount (%d - %d MB)" % (lower, upper), "reserveMB", RESERVE_VALID, lambda self,args: args.enabled) -- ] -+ self._container = None - - @classmethod - def should_run(cls, environment, data): - # the KdumpSpoke should run only if requested - return flags.cmdline.getbool("kdump_addon", default=False) - -- def __init__(self, app, data, storage, payload, instclass): -- EditTUISpoke.__init__(self, app, data, storage, payload, instclass) -- self.args = self.data.addons.com_redhat_kdump -- - def apply(self): - pass - -@@ -79,8 +65,68 @@ def completed(self): - - @property - def status(self): -- if self.args.enabled: -+ if self._addon_data.enabled: - state = _("Kdump is enabled") - else: - state = _("Kdump is disabled") - return state -+ -+ def refresh(self, args=None): -+ super().refresh(args) -+ -+ self._container = ListColumnContainer(1) -+ self.window.add(self._container) -+ -+ self._create_enable_checkbox() -+ -+ if self._addon_data.enabled: -+ self._create_fadump_checkbox() -+ self._create_reserve_amount_text_widget() -+ -+ self.window.add_separator() -+ -+ def _create_enable_checkbox(self): -+ enable_kdump_checkbox = CheckboxWidget(title=_("Enable kdump"), -+ completed=self._addon_data.enabled) -+ self._container.add(enable_kdump_checkbox, self._set_enabled) -+ -+ def _create_fadump_checkbox(self): -+ if not os.path.exists(FADUMP_CAPABLE_FILE): -+ return -+ -+ enable_fadump_checkbox = CheckboxWidget(title=_("Enable dump mode fadump"), -+ completed=self._addon_data.enablefadump) -+ self._container.add(enable_fadump_checkbox, self._set_fadump_enable) -+ -+ def _create_reserve_amount_text_widget(self): -+ title = _("Reserve amount (%d - %d MB)" % (self._lower, self._upper)) -+ reserve_amount_entry = EntryWidget(title=title, value=self._addon_data.reserveMB) -+ self._container.add(reserve_amount_entry, self._get_reserve_amount) -+ -+ def _set_enabled(self, data): -+ self._addon_data.enabled = not self._addon_data.enabled -+ -+ def _set_fadump_enable(self, data): -+ self._addon_data.enablefadump = not self._addon_data.enablefadump -+ -+ def _get_reserve_amount(self, data): -+ text = "Reserve amount (%d - %d MB)" % (self._lower, self._upper) -+ dialog = Dialog(title=text, conditions=[self._check_reserve_valid]) -+ -+ self._addon_data.reserveMB = dialog.run() -+ -+ def _check_reserve_valid(self, key, report_func): -+ if self._reserve_check_re.match(key): -+ if key[-1] == 'M': -+ key = key[:-1] -+ key = int(key) -+ if self._upper >= key >= self._lower: -+ return True -+ return False -+ -+ def input(self, args, key): -+ if self._container.process_user_input(key): -+ self.redraw() -+ return InputState.PROCESSED -+ else: -+ return super().input(args, key) diff --git a/kdump-anaconda-addon.spec b/kdump-anaconda-addon.spec index 6c93efd..7696275 100644 --- a/kdump-anaconda-addon.spec +++ b/kdump-anaconda-addon.spec @@ -1,43 +1,16 @@ Name: kdump-anaconda-addon -Version: 005 -Release: 11 +Version: 006 +Release: 1 Summary: Anaconda addon for configuring kdump. License: GPLv2 -URL: https://github.com/daveyoung/kdump-anaconda-addon -Source0: https://github.com/daveyoung/kdump-anaconda-addon/archive/%{version}.tar.gz +URL: https://github.com/rhinstaller/kdump-anaconda-addon +Source0: https://github.com/rhinstaller/kdump-anaconda-addon/archive/%{version}.tar.gz -Patch6000: update-translation-files.patch -Patch6001: set-helpFile-for-the-kdump-spoke.patch -Patch6002: deleteing-the-untranslated-po-files.patch -Patch6003: delete-old-files-before-updating-new-addon.patch -Patch6004: dont-mix-tabs-and-spaces-for-indentation.patch -Patch6005: add-kdump-spoke-icon.patch -Patch6006: update-kdump-svg-again.patch -Patch6007: update-kdump-icon.patch -Patch6008: use-mizmo-replacement-icon-for-kdump-addon.patch -Patch6009: call-getMemoryBounds-to-the-match-method.patch -Patch6010: dont-put-options-after-the-end-of-the-addon-section.patch -Patch6011: adapt-to-blivet-2-0-API.patch -Patch6012: show-range-of-valid-reserved-memory-values-in-TUI.patch -Patch6013: dont-call-pyanaconda-function-for-total-memory.patch -Patch6014: fix-bug-1053550.patch -Patch6015: add-support-for-new-Anaconda-addon-methods.patch -Patch6016: fix-an-unknown-error.patch -Patch6017: pykickstart3-support.patch -Patch6018: fix-import-after-Anaconda-refactoring.patch -Patch6019: use-anaconda-bootloader-module-for-boot-options-setting.patch -Patch6020: make-it-possible-to-prevent-systemctl-invocation.patch -Patch6021: remove-install-classes.patch -Patch6022: add-some-unit-tests.patch -Patch6023: fix-an-unittest-error.patch -Patch6024: replace-getSysroot.patch -Patch6025: use-kernel-arguments-instead-of-cmdline.patch -Patch6026: dont-use-the-local-storage-object.patch -Patch6027: backport-use-pytest-to-run-the-unittests.patch +Patch0: backport-use-pytest-to-run-the-unit-tests.patch -BuildRequires: intltool gettext python3-pytest python3-blivet anaconda >= 29.24 -Requires: anaconda >= 29.24 hicolor-icon-theme +BuildRequires: intltool gettext python3-pytest python3-blivet anaconda +Requires: anaconda >= 34.13 hicolor-icon-theme Obsoletes: kexec-tools-anaconda-addon < 2.0.17-9 Provides: kexec-tools-anaconda-addon = %{version}-%{release} @@ -73,9 +46,14 @@ make unittest %doc README %license LICENSE %{_datadir}/anaconda/addons/com_redhat_kdump +%{_datadir}/anaconda/dbus/confs/org.fedoraproject.Anaconda.Addons.Kdump.conf +%{_datadir}/anaconda/dbus/services/org.fedoraproject.Anaconda.Addons.Kdump.service %{_datadir}/icons/hicolor/scalable/apps/kdump.svg %changelog +* Tue Nov 08 2022 yanglu - 006-1 +- DESC: update kdump-anaconda-addon version to 006 + * Mon Jun 06 2022 yanglu - 005-11 - DESC: enable make check diff --git a/make-it-possible-to-prevent-systemctl-invocation.patch b/make-it-possible-to-prevent-systemctl-invocation.patch deleted file mode 100644 index 2cc6e8f..0000000 --- a/make-it-possible-to-prevent-systemctl-invocation.patch +++ /dev/null @@ -1,43 +0,0 @@ -From d411f7d635f999c2d67a0a0f4c64cd0db1252e9b Mon Sep 17 00:00:00 2001 -From: Martin Kolman -Date: Wed, 25 Jul 2018 16:08:41 +0200 -Subject: [PATCH] Make it possible to prevent systemctl invocation via - kickstart - -There are cases such as creation of very minimal containers where -there might be no systemctl inside the installation chroot. - -In such a case we need to assure that systemctl is not called -or else the installation will fail. Unfortunately at the moment -kdump will try to always call systemctl unless the whole addon -is marked as disabled in the boot options and it's not possible -to override this behavior via kickstart. - -So change the logic a bit so that when %addon com_redhat_kdump --disable -is used in kickstart will have the same effect (systemctl will not be -called). - -Resolves: rhbz#1608359 ---- - com_redhat_kdump/ks/kdump.py | 7 ++----- - 1 file changed, 2 insertions(+), 5 deletions(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index 496c322..fa1bfee 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -137,12 +137,9 @@ def handle_header(self, lineno, args): - - def execute(self, storage, ksdata, instClass, users, payload): - # the KdumpSpoke should run only if requested -- if not flags.cmdline.getbool("kdump_addon", default=False): -+ if not flags.cmdline.getbool("kdump_addon", default=False) or not self.enabled: - return - -- if self.enabled: -- action = "enable" -- else: -- action = "disable" -+ action = "enable" - - util.execWithRedirect("systemctl", [action, "kdump.service"], root=util.getSysroot()) diff --git a/pykickstart3-support.patch b/pykickstart3-support.patch deleted file mode 100644 index 53e3c80..0000000 --- a/pykickstart3-support.patch +++ /dev/null @@ -1,60 +0,0 @@ -From fcdbae91a98c1ec0c4ba576b0bd5a9f4b0b70c60 Mon Sep 17 00:00:00 2001 -From: Martin Kolman -Date: Mon, 4 Dec 2017 19:31:25 +0100 -Subject: [PATCH] Pykickstart 3 support - -Pykickstart 3 uses Argparse as the option parser, and there is -the new requirement for specifying when the given command has been -introduced, which can be used for kickstart file validation and/or -to generate documentation. - -For more information about Pykickstart 2 to 3 porting see: -https://github.com/rhinstaller/pykickstart/blob/master/docs/2to3 - -So change the Kdump addon kickstart parsing code accordingly. ---- - com_redhat_kdump/ks/kdump.py | 24 +++++++++++++----------- - 1 file changed, 13 insertions(+), 11 deletions(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index ec4ab35..99e9a66 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -26,6 +26,7 @@ - - from pykickstart.options import KSOptionParser - from pykickstart.errors import KickstartParseError, formatErrorMsg -+from pykickstart.version import F27 - from com_redhat_kdump.common import getMemoryBounds - from com_redhat_kdump.i18n import _ - from com_redhat_kdump.constants import FADUMP_CAPABLE_FILE -@@ -92,17 +93,18 @@ def setup(self, storage, ksdata, instClass, payload): - storage.bootloader.boot_args.add('fadump=on') - - def handle_header(self, lineno, args): -- op = KSOptionParser() -- op.add_option("--enable", action="store_true", default=True, -- dest="enabled", help="Enable kdump") -- op.add_option("--enablefadump", action="store_true", default=False, -- dest="enablefadump", help="Enable dump mode fadump") -- op.add_option("--disable", action="store_false", -- dest="enabled", help="Disable kdump") -- op.add_option("--reserve-mb", type="string", dest="reserveMB", -- default="128", help="Amount of memory in MB to reserve for kdump.") -- -- (opts, extra) = op.parse_args(args=args, lineno=lineno) -+ op = KSOptionParser(prog="addon com_redhat_kdump", version=F27, -+ description="Configure the Kdump Addon.") -+ op.add_argument("--enable", action="store_true", default=True, -+ version=F27, dest="enabled", help="Enable kdump") -+ op.add_argument("--enablefadump", action="store_true", default=False, -+ version=F27, dest="enablefadump", help="Enable dump mode fadump") -+ op.add_argument("--disable", action="store_false", -+ version=F27, dest="enabled", help="Disable kdump") -+ op.add_argument("--reserve-mb", type=str, dest="reserveMB", -+ version=F27, default="128", help="Amount of memory in MB to reserve for kdump.") -+ -+ (opts, extra) = op.parse_known_args(args=args, lineno=lineno) - - # Reject any additional arguments - if extra: diff --git a/remove-install-classes.patch b/remove-install-classes.patch deleted file mode 100644 index bb6eaf7..0000000 --- a/remove-install-classes.patch +++ /dev/null @@ -1,65 +0,0 @@ -From 07a69ab652ffc418e9366d7fca338b0633a1b75c Mon Sep 17 00:00:00 2001 -From: Vendula Poncova -Date: Thu, 6 Dec 2018 17:26:15 +0100 -Subject: [PATCH] Remove install classes - -Anaconda removes the install classes from the code. They are -replaced with cofiguration files. ---- - com_redhat_kdump/gui/spokes/kdump.py | 4 ++-- - com_redhat_kdump/ks/kdump.py | 4 ++-- - com_redhat_kdump/tui/spokes/kdump.py | 4 ++-- - 3 files changed, 6 insertions(+), 6 deletions(-) - -diff --git a/com_redhat_kdump/gui/spokes/kdump.py b/com_redhat_kdump/gui/spokes/kdump.py -index 7a52b46..c8f5c9b 100644 ---- a/com_redhat_kdump/gui/spokes/kdump.py -+++ b/com_redhat_kdump/gui/spokes/kdump.py -@@ -53,8 +53,8 @@ def should_run(cls, environment, data): - # the KdumpSpoke should run only if requested - return flags.cmdline.getbool("kdump_addon", default=False) - -- def __init__(self, data, storage, payload, instclass): -- NormalSpoke.__init__(self, data, storage, payload, instclass) -+ def __init__(self, *args): -+ NormalSpoke.__init__(self, *args) - self._reserveMem = 0 - - def initialize(self): -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index fa1bfee..6cc664f 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -64,7 +64,7 @@ def __str__(self): - - return addon_str - -- def setup(self, storage, ksdata, instClass, payload): -+ def setup(self, storage, ksdata, payload): - # the kdump addon should run only if requested - if not flags.cmdline.getbool("kdump_addon", default=False): - return -@@ -135,7 +135,7 @@ def handle_header(self, lineno, args): - self.reserveMB = opts.reserveMB - self.enablefadump = opts.enablefadump - -- def execute(self, storage, ksdata, instClass, users, payload): -+ def execute(self, storage, ksdata, users, payload): - # the KdumpSpoke should run only if requested - if not flags.cmdline.getbool("kdump_addon", default=False) or not self.enabled: - return -diff --git a/com_redhat_kdump/tui/spokes/kdump.py b/com_redhat_kdump/tui/spokes/kdump.py -index dea0b14..871f71d 100644 ---- a/com_redhat_kdump/tui/spokes/kdump.py -+++ b/com_redhat_kdump/tui/spokes/kdump.py -@@ -40,8 +40,8 @@ - class KdumpSpoke(NormalTUISpoke): - category = SystemCategory - -- def __init__(self, data, storage, payload, instclass): -- super().__init__(data, storage, payload, instclass) -+ def __init__(self, *args): -+ super().__init__(*args) - self.title = N_("Kdump") - self._addon_data = self.data.addons.com_redhat_kdump - diff --git a/replace-getSysroot.patch b/replace-getSysroot.patch deleted file mode 100644 index 6b85761..0000000 --- a/replace-getSysroot.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 758589858d45f8c81c37cf484ba6e3f606257fd9 Mon Sep 17 00:00:00 2001 -From: Vendula Poncova -Date: Thu, 11 Jul 2019 17:43:10 +0200 -Subject: [PATCH] Replace getSysroot - -Use conf.target.system_root instead of the function getSysroot to -get the path to the system root. The function getSysroot will be -removed. ---- - com_redhat_kdump/ks/kdump.py | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index 53878b9..0adb5e5 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -22,6 +22,7 @@ - import os.path - from pyanaconda.addons import AddonData - from pyanaconda.core import util -+from pyanaconda.core.configuration.anaconda import conf - from pyanaconda.flags import flags - from pyanaconda.modules.common.constants.services import STORAGE - from pyanaconda.modules.common.constants.objects import BOOTLOADER -@@ -143,4 +144,4 @@ def execute(self, storage, ksdata, users, payload): - - action = "enable" - -- util.execWithRedirect("systemctl", [action, "kdump.service"], root=util.getSysroot()) -+ util.execWithRedirect("systemctl", [action, "kdump.service"], root=conf.target.system_root) diff --git a/set-helpFile-for-the-kdump-spoke.patch b/set-helpFile-for-the-kdump-spoke.patch deleted file mode 100644 index 7b0c1ff..0000000 --- a/set-helpFile-for-the-kdump-spoke.patch +++ /dev/null @@ -1,24 +0,0 @@ -From e397cca17cc029c41b207eebb9a77b3fe4ee7727 Mon Sep 17 00:00:00 2001 -From: Martin Kolman -Date: Fri, 16 Jan 2015 17:34:14 +0100 -Subject: [PATCH] Set helpFile for the kdump spoke - -This makes it possible to show help content for the kdump addon screen. -Also the RHEL7 Installation Guide already has content for the kdump addon screen (KdumpSpoke.xml) -and this change is needed for it to be displayed. ---- - com_redhat_kdump/gui/spokes/kdump.py | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/com_redhat_kdump/gui/spokes/kdump.py b/com_redhat_kdump/gui/spokes/kdump.py -index 029e6ba..9b2e731 100644 ---- a/com_redhat_kdump/gui/spokes/kdump.py -+++ b/com_redhat_kdump/gui/spokes/kdump.py -@@ -41,6 +41,7 @@ class KdumpSpoke(NormalSpoke): - builderObjects = ["KdumpWindow", "advancedConfigBuffer"] - mainWidgetName = "KdumpWindow" - uiFile = "kdump.glade" -+ helpFile = "KdumpSpoke.xml" - translationDomain = "kdump-anaconda-addon" - - icon = "computer-fail-symbolic" diff --git a/show-range-of-valid-reserved-memory-values-in-TUI.patch b/show-range-of-valid-reserved-memory-values-in-TUI.patch deleted file mode 100644 index cde9782..0000000 --- a/show-range-of-valid-reserved-memory-values-in-TUI.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 3efb61effdb2dc92f9670bf25c5c8b24eef557f7 Mon Sep 17 00:00:00 2001 -From: Martin Kolman -Date: Thu, 19 May 2016 18:20:31 +0200 -Subject: [PATCH] Show range of valid reserved memory values in TUI - -Show range of valid reserved memory values in TUI -to make it easier for the user to select a correct value. ---- - com_redhat_kdump/tui/spokes/kdump.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/com_redhat_kdump/tui/spokes/kdump.py b/com_redhat_kdump/tui/spokes/kdump.py -index 7a74011..fad1482 100644 ---- a/com_redhat_kdump/tui/spokes/kdump.py -+++ b/com_redhat_kdump/tui/spokes/kdump.py -@@ -56,11 +56,11 @@ def match(self, key): - class KdumpSpoke(EditTUISpoke): - title = N_("Kdump") - category = SystemCategory -- -+ lower, upper ,_step = getMemoryBounds() - edit_fields = [ - Entry("Enable kdump", "enabled", EditTUISpoke.CHECK, True), - Entry("Enable dump mode fadump", "enablefadump", EditTUISpoke.CHECK, os.path.exists(FADUMP_CAPABLE_FILE) and (lambda self,args: args.enabled)), -- Entry("Reserve amount(MB)", "reserveMB", RESERVE_VALID, lambda self,args: args.enabled) -+ Entry("Reserve amount (%d - %d MB)" % (lower, upper), "reserveMB", RESERVE_VALID, lambda self,args: args.enabled) - ] - - @classmethod diff --git a/update-kdump-icon.patch b/update-kdump-icon.patch deleted file mode 100644 index 1cf0c5e..0000000 --- a/update-kdump-icon.patch +++ /dev/null @@ -1,255 +0,0 @@ -From d16915fca79f890926591a179100f34cc5699efd Mon Sep 17 00:00:00 2001 -From: Dave Young -Date: Mon, 13 Jul 2015 11:04:03 +0800 -Subject: [PATCH] Update kdump icon - -rmarshall@redhat.com reported the icon exhibits a rough-edge and pixelation -along the interior edges between the thing outer line and the solid black -inserts. - -Xiaoxue updated the icon again without the outer ring. ---- - kdump.svg | 198 +++++++++++++++++++----------------------------------- - 1 file changed, 70 insertions(+), 128 deletions(-) - -diff --git a/kdump.svg b/kdump.svg -index 30493bf..bef8e17 100644 ---- a/kdump.svg -+++ b/kdump.svg -@@ -27,7 +27,7 @@ - image/svg+xml - -- -+ - - - -@@ -46,158 +46,100 @@ - inkscape:window-height="851" - id="namedview4" - showgrid="false" -- inkscape:zoom="5.2619095" -- inkscape:cx="29.358045" -- inkscape:cy="41.521755" -+ inkscape:zoom="1" -+ inkscape:cx="44.125181" -+ inkscape:cy="20.454697" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" -- inkscape:current-layer="svg2" /> -+ inkscape:current-layer="layer2" /> - -- -- -- -- -- -- -- -- -- -- -+ inkscape:groupmode="layer" -+ id="layer2" -+ inkscape:label="Layer 2"> -+ - -+ style="fill:none;fill-opacity:1" -+ transform="matrix(-0.15804756,0.22130765,-0.2213091,-0.15804654,286.66481,-83.453469)" -+ id="g4341-1"> - -+ d="m 979.23421,520.64441 a 87.186172,86.853699 0 0 1 -5.25797,29.70571" -+ inkscape:transform-center-x="-73.402883" -+ inkscape:transform-center-y="30.476983" /> - -+ d="m -421.13871,886.56494 a 87.374962,86.876862 0 0 1 -5.26935,29.71364" -+ inkscape:transform-center-x="-30.602114" -+ inkscape:transform-center-y="-73.274815" -+ transform="matrix(-0.00830894,-0.99996548,0.99996508,0.00835658,0,0)" /> - -+ d="m 603.00179,-891.09454 a 86.706924,86.806252 0 0 1 -5.22907,29.68948" -+ inkscape:transform-center-x="30.154045" -+ inkscape:transform-center-y="73.74507" -+ transform="matrix(-0.0016694,0.99999861,-0.99999861,0.00166749,0,0)" /> - -+ d="m -801.76986,-512.94012 a 86.661537,86.843796 0 0 1 -5.22633,29.70232" -+ inkscape:transform-center-x="73.849926" -+ inkscape:transform-center-y="-30.108015" -+ transform="matrix(-0.9999953,-0.00306549,-0.00305905,-0.99999532,0,0)" /> - - -+ -+ -+ -+ - diff --git a/update-kdump-svg-again.patch b/update-kdump-svg-again.patch deleted file mode 100644 index 77eb5f7..0000000 --- a/update-kdump-svg-again.patch +++ /dev/null @@ -1,182 +0,0 @@ -From 6115ca79de0d0eb0ad261d5f49f0421df4c50e3a Mon Sep 17 00:00:00 2001 -From: Dave Young -Date: Thu, 11 Jun 2015 14:10:00 +0800 -Subject: [PATCH] Update kdump.svg again - -During test we found the icon color theme is different from other icons. - -So I asked xiazhang@redhat.com to create a new one. Kudos to her. ---- - kdump.svg | 91 ++++++++++++++++++++++++++++--------------------------- - 1 file changed, 46 insertions(+), 45 deletions(-) - -diff --git a/kdump.svg b/kdump.svg -index 0386a6f..30493bf 100644 ---- a/kdump.svg -+++ b/kdump.svg -@@ -46,9 +46,9 @@ - inkscape:window-height="851" - id="namedview4" - showgrid="false" -- inkscape:zoom="7.8203125" -- inkscape:cx="61.89011" -- inkscape:cy="33.133205" -+ inkscape:zoom="5.2619095" -+ inkscape:cx="29.358045" -+ inkscape:cy="41.521755" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" -@@ -60,77 +60,78 @@ - transform="matrix(0.77251542,0.13871563,-0.13871563,0.77251542,212.91427,27.530304)" - id="g4347-4"> - - -+ transform="matrix(0.91602888,0.40111234,-0.40111234,0.91602888,282.41444,-315.33313)"> - -+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#dedede;stroke-width:38.52220154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" -+ transform="matrix(0.99998455,-0.00555799,-0.00557927,0.99998444,0,0)" /> - -+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#dedede;stroke-width:38.56903076;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - -+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#dedede;stroke-width:38.47369766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - -+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#dedede;stroke-width:38.33777618;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - - -@@ -138,7 +139,7 @@ - - - - - -Date: Wed, 12 Nov 2014 16:20:41 +0800 -Subject: [PATCH] Update translation files - -Overwrite po files with ones which has been translated by translators. -then run `make update-po` - -Signed-off-by: Dave Young ---- - po/ar.po | 16 +++---- - po/as.po | 79 +++++++++------------------------ - po/bg.po | 16 +++---- - po/bn.po | 16 +++---- - po/bn_IN.po | 78 ++++++++------------------------ - po/bs.po | 16 +++---- - po/ca.po | 16 +++---- - po/cs.po | 16 +++---- - po/cy.po | 16 +++---- - po/da.po | 16 +++---- - po/de.po | 87 +++++++++--------------------------- - po/el.po | 16 +++---- - po/en_GB.po | 16 +++---- - po/es.po | 79 ++++++++------------------------- - po/et.po | 16 +++---- - po/fa.po | 16 +++---- - po/fi.po | 16 +++---- - po/fr.po | 87 +++++++++--------------------------- - po/gu.po | 74 ++++++++----------------------- - po/he.po | 16 +++---- - po/hi.po | 77 +++++++++----------------------- - po/hr.po | 16 +++---- - po/hu.po | 16 +++---- - po/hy.po | 16 +++---- - po/id.po | 16 +++---- - po/is.po | 16 +++---- - po/it.po | 78 ++++++++------------------------ - po/ja.po | 85 ++++++++++------------------------- - po/ka.po | 16 +++---- - po/kdump-anaconda-addon.pot | 16 +++---- - po/kn.po | 81 +++++++++------------------------- - po/ko.po | 77 ++++++++------------------------ - po/ku.po | 16 +++---- - po/lo.po | 16 +++---- - po/lv.po | 16 +++---- - po/mk.po | 16 +++---- - po/ml.po | 79 +++++++++------------------------ - po/mr.po | 88 +++++++++++-------------------------- - po/ms.po | 16 +++---- - po/my.po | 16 +++---- - po/nb.po | 16 +++---- - po/nl.po | 16 +++---- - po/or.po | 77 ++++++++------------------------ - po/pa.po | 61 +++++-------------------- - po/pl.po | 16 +++---- - po/pt.po | 16 +++---- - po/pt_BR.po | 86 ++++++++++-------------------------- - po/ru.po | 83 ++++++++++------------------------ - po/si.po | 16 +++---- - po/sk.po | 16 +++---- - po/sl.po | 16 +++---- - po/sq.po | 16 +++---- - po/sr.po | 16 +++---- - po/sr@Latn.po | 16 +++---- - po/sv.po | 16 +++---- - po/ta.po | 77 +++++++++----------------------- - po/ta_IN.po | 16 +++---- - po/te.po | 79 ++++++++++----------------------- - po/tr.po | 16 +++---- - po/uk.po | 16 +++---- - po/ur.po | 16 +++---- - po/vi.po | 16 +++---- - po/zh_CN.po | 80 +++++++++------------------------ - po/zh_TW.po | 80 ++++++++++----------------------- - 64 files changed, 769 insertions(+), 1591 deletions(-) - -diff --git a/po/ar.po b/po/ar.po -index b097033..0c79620 100644 ---- a/po/ar.po -+++ b/po/ar.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -18,26 +18,26 @@ msgstr "" - "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " - "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/as.po b/po/as.po -index c347b4a..e70d60d 100644 ---- a/po/as.po -+++ b/po/as.po -@@ -3,48 +3,48 @@ - # This file is distributed under the same license as the PACKAGE package. - # - # Amitakhya Phukan , 2007. --# ngoswami , 2012. #zanata -+# Nilamdyuti Goswami , 2014. - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-11 03:18-0500\n" --"Last-Translator: ngoswami \n" --"Language-Team: Assamese\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 03:08-0500\n" -+"Last-Translator: Nilamdyuti Goswami \n" -+"Language-Team: Assamese \n" - "Language: as\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n!=1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb ৰ বাবে অবৈধ মান %s" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump সামৰ্থবান" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump অসামৰ্থবান" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "KDUMP (_K)" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -58,7 +58,6 @@ msgstr "" - "যে kdump ক চিস্টেমৰ মেমৰি এটা অংশ সংৰক্ষণ কৰিব যি অন্য কাৰ্য্যৰ বাবে পোৱা নাযাব।" - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "সংৰক্ষণ কৰিবলে মেমৰি (MB) (_R):" - -@@ -71,14 +70,12 @@ msgid "Usable System Memory (MB):" - msgstr "ব্যৱহাৰযোগ্য চিস্টেমৰ মেমৰি (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "kdump সামৰ্থবান কৰিব নে (_E)?" -+msgstr "kdump সামৰ্থবান কৰক (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "kdump সামৰ্থবান কৰিব নে (_E)?" -+msgstr "ডাম্প অৱস্থা fadump সামৰ্থবান কৰক (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump ৰ মেমৰি সংৰক্ষণ:" -@@ -88,39 +85,3 @@ msgstr "kdump সামৰ্থবান কৰিব নে (_E)?" - - #~ msgid "_Manual" - #~ msgstr "হস্তচালিত (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "বৰ্তমানে সংৰক্ষিত মেমৰি (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "উন্নত kdump সংৰূপ" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "ক্ষমা কৰিব, kdump ফলপ্ৰসু হোৱাৰ বাবে আপোনাৰ চিস্টেমৰ পৰ্যাপ্ত মেমৰি নাই!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "ক্ষমা কৰিব, Xen কাৰ্ণেলসমূহে এই সময়ত kdump সমৰ্থন নকৰে!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "ক্ষমা কৰিব, %s স্থাপত্যই এই সময়ত kdump ৰ সমৰ্থন নকৰে!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Kdump ৰ পছন্দৰ সলনি কৰিলে চিস্টেম পুনাৰম্ভ কৰাৰ প্ৰয়োজন যাতে মেমৰি আবন্টন কৰিব " --#~ "পাৰি। আপুনি এই সলনিৰ সৈতে আগবাঢ়ি firstboot সম্পূৰ্ণ হোৱাৰ পিছত চিস্টেম পুনাৰম্ভ " --#~ "কৰিব খোজে নে?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "" --#~ "ত্ৰুটি! বুটল'ডাৰৰ কোনো বিন্যাস ফাইল পোৱা নগ'ল, বিন্যাস কৰা বাতিল কৰা হৈছে!" -diff --git a/po/bg.po b/po/bg.po -index c4109cb..e5b5428 100644 ---- a/po/bg.po -+++ b/po/bg.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-03-12 12:47-0400\n" - "Last-Translator: Doncho N. Gunchev \n" - "Language-Team: Bulgarian >\n" -@@ -18,26 +18,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/bn.po b/po/bn.po -index 9493d26..28eeb57 100644 ---- a/po/bn.po -+++ b/po/bn.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "Content-Type: text/plain; charset=CHARSET\n" - "Content-Transfer-Encoding: 8bit\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/bn_IN.po b/po/bn_IN.po -index d242f07..1113bf0 100644 ---- a/po/bn_IN.po -+++ b/po/bn_IN.po -@@ -6,47 +6,48 @@ - # translation of bn_IN.po to Bengali INDIA - # Runa Bhattacharjee , 2007, 2010. - # sray , 2013. #zanata -+# sray , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2013-12-03 12:14-0500\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 12:00-0500\n" - "Last-Translator: sray \n" - "Language-Team: Bengali INDIA \n" - "Language: bn-IN\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 3.1.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb এর জন্য %s মান অবৈধ" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump সক্রিয়" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump নিষ্ক্রিয়" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -61,27 +62,24 @@ msgstr "" - "আবশ্যক। এই অংশটি অন্যান্য ব্যবহারকারীদের নাগালের বাইরে থাকবে।" - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "যত মেমরি সংরক্ষণ করতে হবে (_R) (MB):" - - #: tmp/kdump.glade.h:4 - msgid "Total System Memory (MB):" --msgstr "সিস্টেমে উপস্থিত সর্বমোট মেমরি(মেগাবাইট):" -+msgstr "সিস্টেমে উপস্থিত সর্বমোট মেমরি (মেগাবাইট):" - - #: tmp/kdump.glade.h:5 - msgid "Usable System Memory (MB):" - msgstr "সিস্টেমের ব্যবহারযোগ্য মেমরি (মেগাবাইট):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "kdump সক্রিয় করা হবে কি?(_E)" -+msgstr "kdump সক্রিয় করুন (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "kdump সক্রিয় করা হবে কি?(_E)" -+msgstr "ডাম্প মোড fadump সক্রিয় করুন (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump মেমরি সংরক্ষণ:" -@@ -91,41 +89,3 @@ msgstr "kdump সক্রিয় করা হবে কি?(_E)" - - #~ msgid "_Manual" - #~ msgstr "ম্যানুয়াল (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "বর্তমানে সংরক্ষিত মেমরি (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "উন্নত kdump কনফিগারেশন" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "দুঃখিত, kdump-র সুষ্টু ব্যবহারের জন্য আপনার সিস্টেমে পর্যাপ্ত মেমরি উপস্থিত নেই!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "দুঃখিত, Xen কার্নেল দ্বারা বর্তমানে kdump সমর্থিত হয় না!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "দুঃখিত, %s আর্কিটেকচারে বর্তমানে kdump সমর্থিত হয় না!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Kdump-র বৈশিষ্ট্য পরিবর্তনের ফলে মেমরি পুনরায় বরাদ্দ করার জন্য সিস্টেম রি-বুট করা " --#~ "আবশ্যক। চিহ্নিত পরিবর্তনগুলি গ্রহণ করে firstboot-র কর্ম সমাপ্তির পরে আপনি সিস্টেম " --#~ "পুনরায় বুট করতে ইচ্ছুক কি?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "" --#~ "ত্রুটি! bootloader কনফিগ ফাইল পাওয়া যায়নি, কনফিগারেশন প্রক্রিয়া পরিত্যাগ করা " --#~ "হবে!" -diff --git a/po/bs.po b/po/bs.po -index fc15868..7c0e71e 100644 ---- a/po/bs.po -+++ b/po/bs.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -18,26 +18,26 @@ msgstr "" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" - "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/ca.po b/po/ca.po -index 00778f2..695d036 100644 ---- a/po/ca.po -+++ b/po/ca.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-03-10 10:56-0500\n" - "Last-Translator: Josep Puigdemont \n" - "Language-Team: Catalan \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/cs.po b/po/cs.po -index 90d4aba..83ed6b5 100644 ---- a/po/cs.po -+++ b/po/cs.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-03-08 07:29-0500\n" - "Last-Translator: Milan Kerslager \n" - "Language-Team: Czech \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/cy.po b/po/cy.po -index 36b5857..e733b23 100644 ---- a/po/cy.po -+++ b/po/cy.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -18,26 +18,26 @@ msgstr "" - "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " - "11) ? 2 : 3\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/da.po b/po/da.po -index 2dd4510..9d116a7 100644 ---- a/po/da.po -+++ b/po/da.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-04-14 06:14-0400\n" - "Last-Translator: Keld Simonsen \n" - "Language-Team: \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/de.po b/po/de.po -index b0496a8..fb6ae9e 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -3,48 +3,48 @@ - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. - # - # PGP-KeyID: 0x037FD3CF , 2007. --# hedda , 2012. #zanata -+# hpeters , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 11:45-0500\n" --"Last-Translator: hedda \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 04:46-0500\n" -+"Last-Translator: hpeters \n" - "Language-Team: \n" - "Language: de\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "Ungültiger Wert %s für --reserve-mb" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump ist aktiviert" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump ist deaktiviert" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -60,27 +60,24 @@ msgstr "" - "für andere Zwecke nicht zur Verfügung steht." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" --msgstr "Zu _reservierender Speicher (MB)" -+msgstr "Zu _reservierender Speicher (MB):" - - #: tmp/kdump.glade.h:4 - msgid "Total System Memory (MB):" --msgstr "Gesamter Systemspeicher (MB)" -+msgstr "Gesamter Systemspeicher (MB):" - - #: tmp/kdump.glade.h:5 - msgid "Usable System Memory (MB):" - msgstr "Verwendbarer Systemspeicher (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "Kdump aktivi_eren?" -+msgstr "Kdump _aktivieren" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "Kdump aktivi_eren?" -+msgstr "Dump-Modus fadump _aktivieren" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump-Speicherreservierung:" -@@ -90,45 +87,3 @@ msgstr "Kdump aktivi_eren?" - - #~ msgid "_Manual" - #~ msgstr "_Manuell" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "Derzeit reservierter Speicher (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "Erweiterte kdump-Konfiguration" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "Leider steht Ihrem System nicht genügend Speicher zur Verfügung, um kdump " --#~ "einzusetzen!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "Leider unterstützen Xen-Kernel kdump derzeit noch nicht." -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "" --#~ "Leider wird kdump zu diesem Zeitpunkt noch nicht von der %s-Architektur " --#~ "unterstützt!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Änderungen der Kdump-Einstellungen erfordern einen Neustart des Systems, " --#~ "damit entsprechend Speicher neu zugewiesen wird. Möchten Sie mit dieser " --#~ "Änderung fortfahren und das System nach der Fertigstellung von firstboot " --#~ "neu starten?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "" --#~ "Es trat ein Fehler auf! Es wurde keine Bootloader-Konfigurationsdatei " --#~ "gefunden. Die Konfiguration wird jetzt abgebrochen!" -diff --git a/po/el.po b/po/el.po -index 5f81dda..d5efbc0 100644 ---- a/po/el.po -+++ b/po/el.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/en_GB.po b/po/en_GB.po -index 769ec8c..6b5e507 100644 ---- a/po/en_GB.po -+++ b/po/en_GB.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/es.po b/po/es.po -index 9b78c06..bde9ada 100644 ---- a/po/es.po -+++ b/po/es.po -@@ -6,12 +6,13 @@ - # - # Gladys Guerrero , 2010. - # gguerrer , 2013. #zanata -+# gguerrer , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2013-12-01 07:35-0500\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 12:56-0500\n" - "Last-Translator: gguerrer \n" - "Language-Team: Spanish \n" - "Language: es\n" -@@ -19,35 +20,35 @@ msgstr "" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - "X-Poedit-Language: Spanish\n" --"X-Generator: Zanata 3.1.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "Valor no válido %s para --reserve-mb" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump está habilitado" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump esta inhabilitado" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -63,7 +64,6 @@ msgstr "" - "disponible para otros usos." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "Memoria que va a ser _Reservada (MB):" - -@@ -76,14 +76,12 @@ msgid "Usable System Memory (MB):" - msgstr "Memoria del sistema utilizable (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "_Habilitar kdump?" -+msgstr "_Habilitar kdump" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "_Habilitar kdump?" -+msgstr "_Habilitar modo de volcado fadump" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Reserva de memoria de Kdump (MB):" -@@ -93,44 +91,3 @@ msgstr "_Habilitar kdump?" - - #~ msgid "_Manual" - #~ msgstr "_Manual" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "Memoria reservada actualmente (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "Configuración avanzada de Kdump " -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "Lamentablemente su sistema no tiene memoria suficiente para usar kdump." -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "" --#~ "¡Lo siento, los kernel Xen no ofrecen soporte a kdump en este momento!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "" --#~ "Lamentablemente la arquitectura %s no tiene soporte para kdump en este " --#~ "momento." -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "El cambio de la configuración de Kdump requiere reiniciar el sistema para " --#~ "reasignar memoria de forma apropiada. ¿Desea continuar con este cambio y " --#~ "reiniciar el sistema cuando se complete el primer arranque ?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "" --#~ "¡Error! No se encontró el archivo de configuración del cargador de " --#~ "arranque, ¡abortando la configuración!" -diff --git a/po/et.po b/po/et.po -index 6e4c197..fd23cd5 100644 ---- a/po/et.po -+++ b/po/et.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/fa.po b/po/fa.po -index 272a2c6..7228555 100644 ---- a/po/fa.po -+++ b/po/fa.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=1; plural=0\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/fi.po b/po/fi.po -index 3e238e8..ff2561f 100644 ---- a/po/fi.po -+++ b/po/fi.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-03-09 05:37-0500\n" - "Last-Translator: Ville-Pekka Vainio \n" - "Language-Team: Finnish \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/fr.po b/po/fr.po -index bd1c612..8d73c29 100644 ---- a/po/fr.po -+++ b/po/fr.po -@@ -1,53 +1,53 @@ --# translation of fr.po to French - # translation of fr.po to -+# translation of fr.po to French - # This file is distributed under the same license as the PACKAGE package. - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. --# - # Decroux Fabien , 2007. -+# - # Gauthier Ancelin , 2007. - # Sam Friedmann , 2010. --# samfreemanz , 2012. #zanata -+# Sam Friedmann , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 01:40-0500\n" --"Last-Translator: samfreemanz \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 05:32-0500\n" -+"Last-Translator: Sam Friedmann \n" - "Language-Team: French \n" - "Language: fr\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n > 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "Valeur %s non valide pour --reserve-mb" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump est activé" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump est désactivé" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -62,7 +62,6 @@ msgstr "" - "mémoire système qui sera indisponible pour d'autres utilisations." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "Mémoire à _réserver (en Mo) :" - -@@ -75,14 +74,12 @@ msgid "Usable System Memory (MB):" - msgstr "Mémoire utilisable du système (en Mo) :" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "_Activer kdump ?" -+msgstr "Activ_er Kdump" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "_Activer kdump ?" -+msgstr "Activ_er le mode de vidage fadump" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Réservation de la mémoire Kdump (en Mo) :" -@@ -92,45 +89,3 @@ msgstr "_Activer kdump ?" - - #~ msgid "_Manual" - #~ msgstr "_Manuel" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "Mémoire actuellement réservée (en Mo) :" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "Configuration Kdump avancée" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "Désolé, votre système n'a pas assez de mémoire pour que kdump puisse être " --#~ "viable !" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "" --#~ "Désolé, les noyaux Xen ne prennent pas en charge kdump pour le moment !" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "" --#~ "Désolé l'architecture %s ne supporte pas kdump pour le moment !" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Modifier les paramètres de kdump nécessite un redémarrage du système afin " --#~ "de réallouer convenablement la mémoire. Désirez-vous continuer avec ces " --#~ "modifications et redémarrer le système une fois que firstboot aura " --#~ "terminé ?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "" --#~ "Erreur ! Aucun fichier de configuration du chargeur de démarrage n'a " --#~ "été trouvé, abandon de la configuration !" -diff --git a/po/gu.po b/po/gu.po -index 2438e8e..ac249ac 100644 ---- a/po/gu.po -+++ b/po/gu.po -@@ -4,49 +4,49 @@ - # - # Ankit Patel , 2007. - # Sweta Kothari , 2010. --# Ankit Patel , 2013. #zanata - # swkothar , 2013. #zanata -+# swkothar , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2013-11-29 04:47-0500\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 12:02-0500\n" - "Last-Translator: swkothar \n" - "Language-Team: Gujarati\n" - "Language: gu\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 3.1.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n!=1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb માટે અયોગ્ય કિંમત %s" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump સક્રિય થયેલ છે" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump નિષ્ક્રિય થયેલ છે" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "KDUMP (_K)" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -60,7 +60,6 @@ msgstr "" - "સિસ્ટમ મેમરીના ભાગને આરક્ષિત રાખવા માટે જરૂરી છે કે જે અન્ય વપરાશો માટે ઉપલબ્ધ રહેશે નહિં." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "સુરક્ષિત માપ રાખવા માટે મેમરી (MB):" - -@@ -73,14 +72,12 @@ msgid "Usable System Memory (MB):" - msgstr "ઉપયોગી સિસ્ટમ મેમરી (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "શું kdump સક્રિય કરવું છે (_E)?" -+msgstr " kdump ને સક્રિય કરો (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "શું kdump સક્રિય કરવું છે (_E)?" -+msgstr "ડમ્પ સ્થિતિ fadump ને સક્રિય કરો (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump મેમરી આરક્ષણ:" -@@ -90,38 +87,3 @@ msgstr "શું kdump સક્રિય કરવું છે (_E)?" - - #~ msgid "_Manual" - #~ msgstr "જાતે જ (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "મેમરીનું હાલમાં સુરક્ષિત માપ (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "અદ્યતન kdump રૂપરેખાંકન" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "માફ કરજો, તમારી સિસ્ટમ પાસે kdump ને વ્યાજબી બનાવવા માટે પૂરતી મેમરી નથી!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "માફ કરજો, Xen કર્નલો kdump ને આ વખતે આધાર આપતી નથી!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "માફ કરજો, %s આર્કીટેક્ચર આ સમયે kdump ને આધાર આપતું નથી!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Kdump સુયોજનો બદલવા માટે સિસ્ટમને મેમરી અનુક્રમે પુનઃફાળવવા માટે સિસ્ટમ રીબુટ કરવાની " --#~ "જરૂર છે. શું તમે આ ફેરફાર સાથે ચાલુ રાખવા ઈચ્છો છો અને firstboot સમાપ્ત થાય પછી " --#~ "સિસ્ટમ રીબુટ કરવા માંગો છો?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "ભૂલ! કોઈ બુટલોડર રૂપરેખા ફાઈલ મળી નહિં, અડધેથી રૂપરેખાંકન બંધ કરી રહ્યા છીએ!" -diff --git a/po/he.po b/po/he.po -index 319ca44..2889c36 100644 ---- a/po/he.po -+++ b/po/he.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/hi.po b/po/hi.po -index da3f44a..2723be8 100644 ---- a/po/hi.po -+++ b/po/hi.po -@@ -3,49 +3,50 @@ - # This file is distributed under the same license as the PACKAGE package. - # - # hi , 2007. -+# Rajesh Ranjan , 2007. - # Rajesh Ranjan , 2007, 2010. --# rajesh , 2012. #zanata -+# rranjan , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-13 06:42-0500\n" --"Last-Translator: rajesh \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 09:35-0500\n" -+"Last-Translator: rranjan \n" - "Language-Team: Hindi \n" - "Language: hi\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n!=1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb के लिए अवैध मान %s" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump सक्रिय है" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump निष्क्रिय है" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -59,7 +60,6 @@ msgstr "" - "हिस्सा जरूरी है जो कि अन्य प्रयोग के लिये अनुपलब्ध रहेगा." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "स्मृति वापस करने के लिए (_R) (MB):" - -@@ -72,14 +72,12 @@ msgid "Usable System Memory (MB):" - msgstr "प्रयोज्य तंत्र स्मृति (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "kdump सक्रिय करें? (_E)" -+msgstr "kdump सक्रिय करें (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "kdump सक्रिय करें? (_E)" -+msgstr "डंप अवस्था fadump सक्रिय करें (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump स्मृति आरक्षण:" -@@ -89,38 +87,3 @@ msgstr "kdump सक्रिय करें? (_E)" - - #~ msgid "_Manual" - #~ msgstr "दस्ती (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "स्मृति अभी वापस (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "उन्नत kdump विन्यास" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "क्षमा करें, आपके तंत्र के पास kdump के अर्थक्षम होने के लिये पर्याप्त स्मृति नहीं है!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "क्षमा करें, Xen कर्नेल इस समय kdump का समर्थन नहीं करता है!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "क्षमा करें, %s ऑर्किटेक्चर kdump को इस समय समर्थन नहीं देता है!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Kdump सेटिंग बदलने के लिये तंत्र रिबूटिंग जरूरी है ताकि स्मृति को उसी तरह फिर आबंटित " --#~ "किया जा सके. क्या आप इस बदलाव के साथ जारी रखना चाहेंगे और तंत्र को फर्स्ट बूट के पूरा " --#~ "होने पर रिबूट करें?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "त्रुटि! कोई बूटलोडर विन्यास फाइल नहीं मिला, विन्यास छोड़ रहा है!" -diff --git a/po/hr.po b/po/hr.po -index ad631b7..28be1a8 100644 ---- a/po/hr.po -+++ b/po/hr.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-07-02 02:20-0400\n" - "Last-Translator: Renato Pavicic translator-shop.org>\n" - "Language-Team: LANGUAGE \n" -@@ -18,26 +18,26 @@ msgstr "" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" - "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/hu.po b/po/hu.po -index 606118a..7db2bfa 100644 ---- a/po/hu.po -+++ b/po/hu.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-03-13 04:23-0400\n" - "Last-Translator: Péter Sulyok \n" - "Language-Team: Hungarian \n" -@@ -18,26 +18,26 @@ msgstr "" - "Plural-Forms: nplurals=1; plural=0;\n" - "X-Generator: Zanata 2.0.2\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/hy.po b/po/hy.po -index 9493d26..28eeb57 100644 ---- a/po/hy.po -+++ b/po/hy.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "Content-Type: text/plain; charset=CHARSET\n" - "Content-Transfer-Encoding: 8bit\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/id.po b/po/id.po -index 2717992..f2dedac 100644 ---- a/po/id.po -+++ b/po/id.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-04-20 04:08-0400\n" - "Last-Translator: Erwien Samantha Y \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=1; plural=0\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/is.po b/po/is.po -index c9a9b6c..709a7cf 100644 ---- a/po/is.po -+++ b/po/is.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-04-24 10:50-0400\n" - "Last-Translator: Richard Allen \n" - "Language-Team: is \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n%10!=1 || n%100==11)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/it.po b/po/it.po -index ff89065..61b91db 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -6,47 +6,48 @@ - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. - # Francesco Tombolini , 2007. - # fvalen , 2013. #zanata -+# fvalen , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2013-12-01 07:00-0500\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 12:54-0500\n" - "Last-Translator: fvalen \n" - "Language-Team: \n" - "Language: it\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 3.1.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "Valore \"%s\" non valido per --reserve-mb" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump abilitato" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "kdump disabilitato" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -56,13 +57,12 @@ msgid "" - "portion of system memory that will be unavailable for other uses." - msgstr "" - "Kdump è un meccanismo di crash dumping del kernel. In caso di crash del " --"sistema, kdump catturerà le informazioni dal sistema, utili per determinare " -+"sistema, kdump catturerà le informazioni dal sistema utili per determinare " - "la causa del crash. Da notare che kdump necessita di un utilizzo di una " - "porzione della memoria del sistema, la quale a sua volta non sarà " - "disponibile per altri usi." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "Memoria da _Riservare (MB):" - -@@ -75,14 +75,12 @@ msgid "Usable System Memory (MB):" - msgstr "Memoria del Sistema Utilizzabile (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "_Abilita kdump?" -+msgstr "_Abilita kdump" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "_Abilita kdump?" -+msgstr "_Abilita fadump nella modalità dump" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Prenotazione Memoria di Kdump (MB):" -@@ -92,41 +90,3 @@ msgstr "_Abilita kdump?" - - #~ msgid "_Manual" - #~ msgstr "_Manuale" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "Memoria attualmente riservata (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "Configurazioni avanzate di kdump" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "Spiacente, il sistema non ha abbastanza memoria per far funzionare kdump!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "Spiacente, i kernel Xen non supportano kdump in questo momento!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "Spiacente, l'architettura %s non supporta kdump in questo momento!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Cambiare le impostazioni di Kdump richiederà il riavvio del sistema per " --#~ "poter riassegnare la memoria. Desideri continuare con il cambiamento e " --#~ "riavviare il sistema dopo che firstboot è stato completato?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "" --#~ "Errore! Non è stato trovato alcun file di configurazione del bootloader, " --#~ "configurazione annullata!" -diff --git a/po/ja.po b/po/ja.po -index facb386..ee14998 100644 ---- a/po/ja.po -+++ b/po/ja.po -@@ -5,49 +5,50 @@ - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. - # - # kiyoto james hashida , 2007. -+# Kiyoto Hashida , 2007. - # Kiyoto Hashida , 2007, 2010. --# noriko , 2012. #zanata -+# noriko , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 09:59-0500\n" --"Last-Translator: noriko \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 01:51-0500\n" -+"Last-Translator: noriko \n" - "Language-Team: Japanese \n" - "Language: ja\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: Plural-Forms: nplurals=2; plural=(n!=1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb に対して %s は不正な値です" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump が有効になります" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump が無効になります" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -57,12 +58,11 @@ msgid "" - "portion of system memory that will be unavailable for other uses." - msgstr "" - "Kdump はカーネルクラッシュダンプのメカニズムです。システムがクラッシュした場" --"合、 Kdump はシステムからそのクラッシュの原因を判定するために重要となる可能性" --"のある情報をキャプチャします。kdump には kdump 以外では使用できない部分をシス" --"テムメモリー内に予約しておく必要があるため注意して下さい。" -+"合、Kdump によりクラッシュの原因の判定に重要となる可能性のある情報がシステム" -+"からキャプチャされます。kdump 以外には使用できない kdump 専用の領域をシステム" -+"メモリー内に予約しておく必要があるため注意してください。" - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "予約されるメモリー (MB):" - -@@ -75,14 +75,12 @@ msgid "Usable System Memory (MB):" - msgstr "使用可能なシステムメモリー (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "kdump を有効にしますか (_E)?" -+msgstr "kdump を有効にする (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "kdump を有効にしますか (_E)?" -+msgstr "ダンプモードの fadump を有効にする (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump メモリー予約:" -@@ -92,40 +90,3 @@ msgstr "kdump を有効にしますか (_E)?" - - #~ msgid "_Manual" - #~ msgstr "手動 (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "現在予約されているメモリー (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "高度な kdump の設定" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "すみません。システムには kdump を運営できるだけの充分なメモリーがありませ" --#~ "ん!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "すみません。Xen カーネルは、今回は kdump をサポートしていません. " -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "すみません。%s アーキテクチャは、今回は kdump サポートしていません!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Kdump 設定を変更するとメモリーを再割り当てするためのシステムの再起動が必要" --#~ "になります。この変更を加え続行し、 初期起動 (firstboot) が完了した後にシス" --#~ "テムの再起動を行いますか?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "エラー! ブートローダ設定ファイルが見つかりません。設定を中止します!" -diff --git a/po/ka.po b/po/ka.po -index 6be5d96..3c469e6 100644 ---- a/po/ka.po -+++ b/po/ka.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=1; plural=0\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/kdump-anaconda-addon.pot b/po/kdump-anaconda-addon.pot -index 9493d26..28eeb57 100644 ---- a/po/kdump-anaconda-addon.pot -+++ b/po/kdump-anaconda-addon.pot -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "Content-Type: text/plain; charset=CHARSET\n" - "Content-Transfer-Encoding: 8bit\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/kn.po b/po/kn.po -index 50418dd..aff30ed 100644 ---- a/po/kn.po -+++ b/po/kn.po -@@ -2,49 +2,50 @@ - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - # This file is distributed under the same license as the PACKAGE package. - # -+# Shankar Prasad , 2007. - # Shankar Prasad , 2007, 2010. --# shanky , 2012. #zanata -+# Shankar , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 07:26-0500\n" --"Last-Translator: shanky \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 01:42-0500\n" -+"Last-Translator: Shankar \n" - "Language-Team: kn_IN \n" - "Language: kn\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "%s for --reserve-mb ಗಾಗಿನ ತಪ್ಪಾದ ಮೌಲ್ಯ" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump ಸಕ್ರಿಯಗೊಂಡಿದೆ" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump ನಿಷ್ಕ್ರಿಯಗೊಂಡಿದೆ" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -60,7 +61,6 @@ msgstr "" - "ಬೇರಾವುದೇ ಬಳಕೆಗೆ ಬರುವುದಿಲ್ಲ." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "ಕಾದಿರಿಸಬೇಕಿರುವ ಮೆಮೊರಿ (MB) (_R):" - -@@ -73,14 +73,12 @@ msgid "Usable System Memory (MB):" - msgstr "ಗಣಕದ ಬಳಸಬಹುದಾದಂತಹ ಮೆಮೊರಿ (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "kdump ಅನ್ನು ಶಕ್ತಗೊಳಿಸಬೇಕೆ (_E)?" -+msgstr "kdump ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "kdump ಅನ್ನು ಶಕ್ತಗೊಳಿಸಬೇಕೆ (_E)?" -+msgstr "ಡಂಪ್ ಕ್ರಮದ fadump ಅನ್ನು ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump ಮೆಮೊರಿ ಕಾದಿರಿಸುವಿಕೆ:" -@@ -90,42 +88,3 @@ msgstr "kdump ಅನ್ನು ಶಕ್ತಗೊಳಿಸಬೇಕೆ (_E)?" - - #~ msgid "_Manual" - #~ msgstr "ಕೈಪಿಡಿ (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "ಪ್ರಸಕ್ತ ಕಾದಿರಿಸಲಾದ ಮೆಮೊರಿ (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "ಸುಧಾರಿತ kdump ಸಂರಚನೆ" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "ಕ್ಷಮಿಸಿ, kdump ಅನ್ನು ಕಾರ್ಯಸಾಧ್ಯ ಮಾಡಲು ನಿಮ್ಮ ಗಣಕದಲ್ಲಿ ಸಾಕಷ್ಟು ಮೆಮೊರಿಯು ಲಭ್ಯವಿಲ್ಲ!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "ಕ್ಷಮಿಸಿ, Xen ಕರ್ನಲ್ಲುಗಳು ಈ ಸಮಯದಲ್ಲಿ kdump ಅನ್ನು ಬೆಂಬಲಿಸುತ್ತಿಲ್ಲ." -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "ಕ್ಷಮಿಸಿ, %s ಆರ್ಕಿಟೆಕ್ಚರ್ ಈ ಸಮಯದಲ್ಲಿ kdump ಅನ್ನು ಬೆಂಬಲಿಸುತ್ತಿಲ್ಲ!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "ಮೆಮೊರಿಯನ್ನು ಅನುಗುಣವಾಗಿ ಪುನರ್ ಹಂಚಿಕೆ ಮಾಡಲು ಅನುವಾಗುವಂತೆ Kdump ಸಿದ್ಧತೆಗಳನ್ನು " --#~ "ಬದಲಾಯಿಸಲು ಗಣಕವನ್ನು ಪುನಃ ಬೂಟ್‌ ಮಾಡುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ. ನೀವು ಈ ಬದಲಾವಣೆಯೊಂದಿಗೆ " --#~ "ಮುಂದುವರೆಯಲು ಹಾಗು ಪ್ರಥಮ ಬೂಟ್ ಸಂಪೂರ್ಣಗೊಂಡ ನಂತರ ಗಣಕವನ್ನು ಮರಳಿ ಬೂಟ್‌ ಮಾಡಲು " --#~ "ಬಯಸುತ್ತೀರೆ?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "" --#~ "ದೋಷ! ಯಾವುದೇ ಬೂಟ್-ಲೋಡರ್ config ಕಡತವು ಕಂಡುಬಂದಿಲ್ಲ, ಸಂರಚನೆಯನ್ನು " --#~ "ಸ್ಥಗಿತಗೊಳಿಸಲಾಗುತ್ತಿದೆ!" -diff --git a/po/ko.po b/po/ko.po -index f1ad939..2fdb404 100644 ---- a/po/ko.po -+++ b/po/ko.po -@@ -6,48 +6,48 @@ - # - # Eunju Kim , 2007. - # Hyunsok Oh , 2010. --# eukim , 2012. #zanata -+# eukim , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 08:25-0500\n" --"Last-Translator: eukim \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-10 05:08-0500\n" -+"Last-Translator: eukim \n" - "Language-Team: Korean \n" - "Language: ko\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=1; plural=0;\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb에 대해 %s는 잘못된 값입니다 " - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump가 활성화됩니다 " - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump가 비활성화됩니다 " - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -61,7 +61,6 @@ msgstr "" - "하며, 이 부분은 다른 목적으로 사용할 수 없음을 알려드립니다." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "예약 메모리 (MB) (_R):" - -@@ -74,14 +73,12 @@ msgid "Usable System Memory (MB):" - msgstr "사용 가능한 시스템 메모리 (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "kdump를 활성화하겠습니까?(_E)" -+msgstr "kdump 활성화 (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "kdump를 활성화하겠습니까?(_E)" -+msgstr "덤프 모드 fadump 활성화 (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump 메모리 예약:" -@@ -91,39 +88,3 @@ msgstr "kdump를 활성화하겠습니까?(_E)" - - #~ msgid "_Manual" - #~ msgstr "수동(_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "현재 예약된 메모리 (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "고급 kdump 설정 " -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "죄송합니다. 시스템에 kdump를 실행할 만한 충분한 메모리 공간이 없습니다!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "죄송합니다. Xen 커널은 현재 kdump를 지원하지 않습니다!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "죄송합니다. %s 구조는 현재 kdump를 지원하지 않습니다!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "kdump 설정을 변경하면 그에 맞게 메모리를 재할당하기 위해 시스템을 다시 시" --#~ "작해야 합니다. firstboot가 완료된 다음에 시스템을 다시 시작하여 이 변경 사" --#~ "항을 적용하시겠습니까?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "오류! 부트로더 구성 파일을 찾을 수 없습니다. 설정을 종료합니다!" -diff --git a/po/ku.po b/po/ku.po -index 9493d26..28eeb57 100644 ---- a/po/ku.po -+++ b/po/ku.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "Content-Type: text/plain; charset=CHARSET\n" - "Content-Transfer-Encoding: 8bit\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/lo.po b/po/lo.po -index 9493d26..28eeb57 100644 ---- a/po/lo.po -+++ b/po/lo.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "Content-Type: text/plain; charset=CHARSET\n" - "Content-Transfer-Encoding: 8bit\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/lv.po b/po/lv.po -index 1e34d25..28a6cf6 100644 ---- a/po/lv.po -+++ b/po/lv.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -18,26 +18,26 @@ msgstr "" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " - "2)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/mk.po b/po/mk.po -index 9493d26..28eeb57 100644 ---- a/po/mk.po -+++ b/po/mk.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "Content-Type: text/plain; charset=CHARSET\n" - "Content-Transfer-Encoding: 8bit\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/ml.po b/po/ml.po -index 65e1b6d..1f70eaf 100644 ---- a/po/ml.po -+++ b/po/ml.po -@@ -1,51 +1,52 @@ - # translation of ml.po to Malayalam --# translation of ml.po to - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - # This file is distributed under the same license as the PACKAGE package. - # -+# Ani Peter , 2007. -+# translation of ml.po to - # Ani Peter , 2007, 2010. --# anipeter , 2012. #zanata -+# apeter , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-13 03:50-0500\n" --"Last-Translator: anipeter \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 01:20-0500\n" -+"Last-Translator: apeter \n" - "Language-Team: Malayalam \n" - "Language: ml\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n!=1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb-നു് %s എന്ന അസാധു മൂല്ല്യം" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump പ്രവര്‍ത്തന സജ്ജമാക്കിയിരിയ്ക്കുന്നു" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump പ്രവര്‍ത്തന രഹിതമാക്കിയിരിയ്ക്കുന്നു" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -59,7 +60,6 @@ msgstr "" - "ഉപയോക്താക്കള്‍ക്കു് ലഭ്യമല്ലാത്ത സിസ്റ്റത്തിന്റെ ഒരു ഭാഗം മെമ്മറി kdump-നു് ആവശ്യമുണ്ട്." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "കരുതിവയ്ക്കേണ്ട മെമ്മറി (MB) :" - -@@ -72,14 +72,12 @@ msgid "Usable System Memory (MB):" - msgstr "സിസ്റ്റത്തില്‍ ഉപയോഗപ്രദമായ മെമ്മറി (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "kdump പ്രവര്‍ത്തന സജ്ജമാക്കണമോ (_E)?" -+msgstr "kdump പ്ര_വര്‍ത്തന സജ്ജമാക്കൂ" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "kdump പ്രവര്‍ത്തന സജ്ജമാക്കണമോ (_E)?" -+msgstr "fadump എന്ന ഡമ്പ് മോഡ് പ്ര_വര്‍ത്തന സജ്ജമാക്കൂ" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump മെമ്മറി കരുതല്‍:" -@@ -89,38 +87,3 @@ msgstr "kdump പ്രവര്‍ത്തന സജ്ജമാക്കണ - - #~ msgid "_Manual" - #~ msgstr "_മാനുവല്‍" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "നിലവില്‍ സൂക്ഷിച്ചിട്ടുള്ള മെമ്മറി (MB) :" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "മെച്ചപ്പെട്ട kdump ക്രമീകരണം" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "ക്ഷമിക്കണം, നിങ്ങളുടെ സിസ്റ്റത്തില്‍ kdump-നു് ആവശ്യമുളള മെമ്മറി നിലവിലില്ല!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "ക്ഷമിക്കണം, Xen കേര്‍ണലുകള്‍ നിലവില്‍ kdump പിന്തുണയ്ക്കുന്നില്ല!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "ക്ഷമിക്കണം, %s ആര്‍ക്കിടക്ചര്‍ നിലവില്‍ kdump പിന്തുണയ്ക്കുന്നില്ല!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Kdump ക്രമീകരണങ്ങളില്‍ മാറ്റം വരുത്തുന്നതിനായി നിങ്ങളുടെ സിസ്റ്റം റീബൂട്ട് ചെയ്തു് മെമ്മറി " --#~ "സജ്ജീകരണങ്ങള്‍ വീണ്ടും ക്രമപ്പെടുത്തേണ്ടതാകുന്നു. നിങ്ങള്‍ക്ക് ഈ മാറ്റവുമായി മുമ്പോട്ട് പോയി, " --#~ "ഫസ്റ്റ്ബൂട്ട് പൂര്‍ത്തിയാക്കിയ ശേഷം സിസ്റ്റം വീണ്ടും റീബൂട്ട് ചെയ്യണമോ?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "പിഴവ്! ബൂട്ട്ലോഡര്‍ ക്രമീകരണ ഫയല്‍ ലഭ്യമായില്ല, ക്രമീകരണം നിര്‍ത്തുന്നു!" -diff --git a/po/mr.po b/po/mr.po -index f88e819..6aecefb 100644 ---- a/po/mr.po -+++ b/po/mr.po -@@ -1,51 +1,54 @@ --# translation of mr.po to Marathi -+# SOME DESCRIPTIVE TITLE. - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - # This file is distributed under the same license as the PACKAGE package. -+# FIRST AUTHOR , YEAR. -+# Sandeep Shedmake , 2013. -+# translation of mr.po to Marathi - # - # sandeep shedmake , 2007. - # Sandeep Shedmake , 2010. --# sandeeps , 2012. #zanata -+# Sandeep Shedmake , 2010, 2014. - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-10 02:52-0500\n" --"Last-Translator: sandeeps \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 12:16-0500\n" -+"Last-Translator: Sandeep Shedmake \n" - "Language-Team: Marathi \n" - "Language: mr\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n!=1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb करिता अवैध मूल्य %s" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "केडम्प" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "केडम्प सुरू केले" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "केडम्प बंद केले" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "KDUMP (_K)" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -59,7 +62,6 @@ msgstr "" - "kdump ला प्रणाली स्मृत्तीचे आरक्षण हवे असते जे इतर वापरकर्त्यांना अनुपलब्ध राहतील." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "आरक्षित करणेजोगी मेमरी (MB) (_R):" - -@@ -69,59 +71,21 @@ msgstr "एकूण प्रणालीची मेमरी (MB):" - - #: tmp/kdump.glade.h:5 - msgid "Usable System Memory (MB):" --msgstr "वापरतायेण्याजोगी प्रणाली मेमरी (MB):" -+msgstr "वापरण्याजोगी प्रणाली मेमरी (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "केडम्प सुरू करा (_E)?" -+msgstr "kdump सुरू करा (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "केडम्प सुरू करा (_E)?" -+msgstr "डम्प मोड fadump सुरू करा (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "केडम्प मेमरी आरक्षण (MB) (_K):" - - #~ msgid "_Automatic" --#~ msgstr "स्वयंचलित (_A)" -+#~ msgstr "स्व (_A)" - - #~ msgid "_Manual" --#~ msgstr "व्यक्तिचलित (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "सध्या आरक्षित मेमरी(MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "प्रगत केडम्प संरचना" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "माफ करा, आपल्या प्रणालीस केडम्प यशस्वीरीत्या चालण्याजोगी अतिरीक्त स्मृत्ती नाही!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "माफ करा, xen कर्नल्स् याक्षणी kdump करीता समर्थन पुरवत नाही!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "माफ करा, %s आर्किटेक्चर kdump करीता समर्थन पुरवत नाही!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "केडम्प सेटिंग्ज बदलण्याकरीता प्रणालीस मेमरीचे परस्पररीत्या वाटप करण्याकरीता प्रणाली " --#~ "पुन्हा सुरू करा. तुम्हाला हे बदल लागू करायचे व फर्स्टबूट पूर्ण झाल्यावर प्रणालीला पुन्हा सुरू " --#~ "करायचे?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "त्रूटी! बूटलोडर config फाइल सापडली नाही, संरचना रद्द करीत आहे!" -+#~ msgstr "स्वहस्ते (_M)" -diff --git a/po/ms.po b/po/ms.po -index f851cb8..c954023 100644 ---- a/po/ms.po -+++ b/po/ms.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-04-13 11:22-0400\n" - "Last-Translator: Sharuzzaman Ahmat Raslan \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=1; plural=0\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/my.po b/po/my.po -index 9493d26..28eeb57 100644 ---- a/po/my.po -+++ b/po/my.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "Content-Type: text/plain; charset=CHARSET\n" - "Content-Transfer-Encoding: 8bit\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/nb.po b/po/nb.po -index 561e4b0..9f188a5 100644 ---- a/po/nb.po -+++ b/po/nb.po -@@ -5,7 +5,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-04-26 07:42-0400\n" - "Last-Translator: Espen A. Stefansen \n" - "Language-Team: Norwegian/Bokmaal \n" -@@ -16,26 +16,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/nl.po b/po/nl.po -index ae2cdb0..d386e16 100644 ---- a/po/nl.po -+++ b/po/nl.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/or.po b/po/or.po -index 36c15e5..5d45b70 100644 ---- a/po/or.po -+++ b/po/or.po -@@ -5,49 +5,48 @@ - # Subhransu Behera , 2007. - # Subhransu Behera , 2007. - # Manoj Kumar Giri , 2010. --# mgiri , 2012. #zanata --# yangrr , 2012. #zanata -+# mgiri , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-20 10:06-0500\n" --"Last-Translator: yangrr \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-05 03:45-0500\n" -+"Last-Translator: mgiri \n" - "Language-Team: Oriya \n" - "Language: or\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n!=1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb ପାଇଁ ଅବୈଧ ମୂଲ୍ୟ %s" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump ସକ୍ରିୟ ହୋଇଛି" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump ନିଷ୍କ୍ରିୟ ହୋଇଛି" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "KDUMP (_K)" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -62,7 +61,6 @@ msgstr "" - "ଅନ୍ଯାନ୍ଯ ଚାଳକ ମାନଙ୍କ ପାଇଁ ଅନୁପଲବ୍ଧ ହେବ।" - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "ସଂରକ୍ଷଣ କରିବାକୁ ଥିବା ସ୍ମୃତିସ୍ଥାନ (MB) (_R):" - -@@ -75,14 +73,12 @@ msgid "Usable System Memory (MB):" - msgstr "ବ୍ଯବହାର ଯୋଗ୍ଯ ତନ୍ତ୍ର ସ୍ମୃତି (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "kdump କୁ ସକ୍ରିୟ କରାଯିବ କି (_E)?" -+msgstr "kdump କୁ ସକ୍ରିୟ କରନ୍ତୁ (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "kdump କୁ ସକ୍ରିୟ କରାଯିବ କି (_E)?" -+msgstr "ଡମ୍ପ ଧାରା fadump କୁ ସକ୍ରିୟ କରନ୍ତୁ (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump ସ୍ମୃତି ସଂରକ୍ଷଣ:" -@@ -92,38 +88,3 @@ msgstr "kdump କୁ ସକ୍ରିୟ କରାଯିବ କି (_E)?" - - #~ msgid "_Manual" - #~ msgstr "ହସ୍ତକୃତ (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "ବର୍ତ୍ତମାନ ସଂରକ୍ଷିତ ସ୍ମୃତିସ୍ଥାନ (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "ଉନ୍ନତ kdump ସଂରଚନା" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "କ୍ଷମା କରିବେ, kdump କୁ କାର୍ଯ୍ଯକାରୀ କରିବା ପାଇଁ ଆପଣଙ୍କ ତନ୍ତ୍ରରେ ଯଥେଷ୍ଟ ସ୍ମୃତି ନାହିଁ!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "କ୍ଷମା କରିବେ, Xen କର୍ଣ୍ଣଲ ଗୁଡିକ ବର୍ତ୍ତମାନ kdump କୁ ସମର୍ଥନ କରେନାହିଁ।" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "କ୍ଷମା କରିବେ, %s ସ୍ଥାପତ୍ଯ ବର୍ତ୍ତମାନ kdump କୁ ସମର୍ଥନ କରେ ନାହିଁ!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Kdump ର ବିନ୍ଯାସ ପରିବର୍ତ୍ତନ କରିବା ପାଇଁ ସେହି ଅନୁଯାୟୀ ସ୍ମୃତି ବଣ୍ଟନ କରିବାକୁ ତନ୍ତ୍ରକୁ ପୁନର୍ଚାଳନ " --#~ "କରିବା ଆବଶ୍ଯକ। ଆପଣ ଏହି ପରିବର୍ତ୍ତନ ସହିତ ଜାରି ରଖିବା ପାଇଁ ଏବଂ firstboot ସମାପ୍ତ ହେବା ପରେ " --#~ "ତନ୍ତ୍ରକୁ ପୁନର୍ଚାଳନ କରିବା ପାଇଁ ଚାହାଁନ୍ତି?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "ତୃଟି! କୌଣସି ବୁଟ ଲୋଡର config ଫାଇଲ ମିଳିଲା ନାହିଁ, ବିନ୍ଯାସ ପ୍ରକ୍ରିୟାକୁ ପରିତ୍ଯାଗ କରୁଅଛି!" -diff --git a/po/pa.po b/po/pa.po -index 8d9421b..a94c50e 100644 ---- a/po/pa.po -+++ b/po/pa.po -@@ -3,12 +3,13 @@ - # This file is distributed under the same license as the PACKAGE package. - # - # A S Alam , 2007. -+# Jaswinder Singh , 2007. - # Jaswinder Singh , 2007, 2010, 2012. - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2012-12-13 05:01-0500\n" - "Last-Translator: Jaswinder Singh \n" - "Language-Team: Punjabi/Panjabi \n" -@@ -16,29 +17,29 @@ msgstr "" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "ਕੇ-ਡੰਪ" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -@@ -58,7 +59,6 @@ msgstr "" - "ਨੂੰ ਸਿਸਟਮ ਮੈਮੋਰੀ ਦਾ ਕੁਝ ਭਾਗ ਰਾਖਵਾਂ ਰੱਖਣਾ ਪੈਂਦਾ ਹੈ ਜੋ ਕਿ ਹੋਰ ਵਰਤੋਂ ਲਈ ਉਪਲੱਬਧ ਨਹੀਂ ਹੋਵੇਗਾ" - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "ਰਾਖਵੀਂ ਮੈਮੋਰੀ(_R) (MB):" - -@@ -71,14 +71,12 @@ msgid "Usable System Memory (MB):" - msgstr "ਵਰਤੋਂ-ਯੋਗ ਸਿਸਟਮ ਮੈਮੋਰੀ (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "ਕੇ-ਡੰਪ ਯੋਗ ਕਰੋ(_E)?" -+msgstr "" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "ਕੇ-ਡੰਪ ਯੋਗ ਕਰੋ(_E)?" -+msgstr "" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "ਕੇ-ਡੰਪ ਮੈਮੋਰੀ (MB):" -@@ -88,38 +86,3 @@ msgstr "ਕੇ-ਡੰਪ ਯੋਗ ਕਰੋ(_E)?" - - #~ msgid "_Manual" - #~ msgstr "ਦਸਤੀ(_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "ਮੌਜੂਦਾ ਰਾਖਵੀਂ ਮੈਮੋਰੀ (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "ਤਕਨੀਕੀ ਕੇ-ਡੰਪ ਸੰਰਚਨਾ" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "ਅਫਸੋਸ, ਕਿ ਤੁਹਾਡੇ ਸਿਸਟਮ ਉੱਤੇ ਕੇ-ਡੰਪ ਲਈ ਲੋੜੀਦੀ ਮੈਮੋਰੀ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "ਮੁਆਫ਼ੀ, Xen ਕਰਨਲ ਹਾਲੇ ਕੇ-ਡੰਪ ਲਈ ਸਹਿਯੋਗੀ ਨਹੀਂ ਹਨ!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "ਮੁਆਫੀ, ਕਿ %s ਢਾਂਚਾ ਹਾਲੇ ਕੇ-ਡੰਪ ਲਈ ਸਹਿਯੋਗੀ ਨਹੀਂ ਹੈ!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "ਕੇ-ਡੰਪ ਦੀ ਸੈਟਿੰਗ ਬਦਲਣ ਨਾਲ ਸਿਸਟਮ ਨੂੰ ਮੁੜ-ਚਾਲ ਕਰਨਾ ਪਵੇਗਾ ਤਾਂ ਕਿ ਮੈਮੋਰੀ ਮੁੜ-ਜਾਰੀ ਕੀਤੀ ਜਾ " --#~ "ਸਕੇ। %sਕੀ ਤੁਸੀਂ ਇਹ ਤਬਦੀਲੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ ਅਤੇ ਸਿਸਟਮ ਫਸਟ-ਬੂਟ ਪੂਰਾ ਹੋਣ ਬਾਅਦ ਮੁੜ-ਚਾਲੂ " --#~ "ਹੋਵੇਗਾ?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "ਗਲਤੀ! ਬੂਟ-ਲੋਡਰ ਸੰਰਚਨਾ ਨਹੀਂ ਮਿਲੀ ਹੈ, ਸੰਰਚਨਾ ਅਧੂਰੀ ਛੱਡੀ ਜਾਂਦੀ ਹੈ!" -diff --git a/po/pl.po b/po/pl.po -index d47bcf3..7f35c9b 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -4,7 +4,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-03-08 09:18-0500\n" - "Last-Translator: Piotr Drąg \n" - "Language-Team: Polish \n" -@@ -16,26 +16,26 @@ msgstr "" - "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " - "|| n%100>=20) ? 1 : 2)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/pt.po b/po/pt.po -index 1f9b110..018f2b8 100644 ---- a/po/pt.po -+++ b/po/pt.po -@@ -2,7 +2,7 @@ msgid "" - msgstr "" - "Project-Id-Version: firstboot_kdump\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-05-09 02:24+0100\n" - "Last-Translator: José Nuno Coelho Pires \n" - "Language-Team: pt \n" -@@ -12,26 +12,26 @@ msgstr "" - "Content-Transfer-Encoding: 8bit\n" - "X-POFile-SpellExtra: kdump Xen firstboot Kdump kernels\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/pt_BR.po b/po/pt_BR.po -index 7c21da2..3946aaf 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -1,18 +1,19 @@ --# translation of pt_BR.po to Portuguese -+# translation of pt_BR.po to Brazilian Portuguese - # This file is distributed under the same license as the kexec-tools package. - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. --# - # Valnir Ferreira Jr., 2007. - # Igor Pires Soares , 2007. -+# translation of pt_BR.po to Portuguese -+# - # Glaucia Cintra , 2010. --# gcintra , 2012. #zanata -+# gcintra , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 07:44-0500\n" --"Last-Translator: gcintra \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 06:36-0500\n" -+"Last-Translator: gcintra \n" - "Language-Team: Portuguese \n" - "Language: pt-BR\n" - "MIME-Version: 1.0\n" -@@ -21,34 +22,34 @@ msgstr "" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" - "X-Poedit-Language: Portuguese\n" - "X-Poedit-Country: BRAZIL\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "valor inválido %s para --reserve-mb" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump está ativado" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump está desativado" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -64,7 +65,6 @@ msgstr "" - "indisponível para outros usuários." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "Memória a ser_Reservada (MB):" - -@@ -77,14 +77,12 @@ msgid "Usable System Memory (MB):" - msgstr "Memória Utilizável do Sistema (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "_Habilitar kdump?" -+msgstr "_Ativar kdump" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "_Habilitar kdump?" -+msgstr "_Ativar modo dump fadump" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Memória do Kdump (MB):" -@@ -94,43 +92,3 @@ msgstr "_Habilitar kdump?" - - #~ msgid "_Manual" - #~ msgstr "_Manual" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "Memória Reservada Atualmente (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "Configuração avançada do kdump" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "" --#~ "Infelizmente, o seu sistema não tem memória suficiente para viabilizar o " --#~ "uso do kdump." -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "Infelizmente, kernels do xen não suportam o kdump desta vez!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "Infelizmente, a arquitetura %s ainda não suporta o kdump!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "A mudança da configuração do kdump requer a reinicialização do sistema " --#~ "para a realocação apropriada de memória. \n" --#~ "Gostaria de prosseguir com esta mudança e reinicializar o sistema após o " --#~ "término do firstboot?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "" --#~ "Erro! Nenhum arquivo de configuração do gerenciador de inicialização foi " --#~ "encontrado, abortando a configuração!" -diff --git a/po/ru.po b/po/ru.po -index 5df701a..72d4085 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -4,49 +4,49 @@ - # - # Yulia Poyarkova , 2007. - # Yulia , 2010. --# ypoyarko , 2012. #zanata -+# ypoyarko , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 05:21-0500\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 06:25-0500\n" - "Last-Translator: ypoyarko \n" - "Language-Team: Russian\n" - "Language: ru\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" - "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "Недопустимое значение --reserve-mb: «%s»" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump включен" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump отключен" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -55,33 +55,30 @@ msgid "" - "determining the cause of the crash. Note that kdump does require reserving a " - "portion of system memory that will be unavailable for other uses." - msgstr "" --"Kdump предоставляет новый механизм сбора статистики о сбоях ядра. В случае " --"сбоя kdump осуществляет сбор статистики для последующего определения причины " -+"Kdump предоставляет механизм сбора статистики о сбоях ядра. В случае сбоя " -+"kdump осуществляет сбор статистики для последующего определения причины " - "сбоя. Нужно иметь в виду, что kdump требует резервирования части системной " --"памяти, что делает её недоступной для использования." -+"памяти для своей работы." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "Будет зарезервировано (МБ):" - - #: tmp/kdump.glade.h:4 - msgid "Total System Memory (MB):" --msgstr "_Общий объем памяти (МБ):" -+msgstr "_Всего памяти (МБ):" - - #: tmp/kdump.glade.h:5 - msgid "Usable System Memory (MB):" - msgstr "_Доступно памяти (МБ):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "_Включить Kdump?" -+msgstr "_Включить kdump" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "_Включить Kdump?" -+msgstr "_Включить режим fadump" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Резервирование памяти Kdump:" -@@ -91,39 +88,3 @@ msgstr "_Включить Kdump?" - - #~ msgid "_Manual" - #~ msgstr "В_ручную" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "Зарезервировано памяти (МБ):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "Дополнительные настройки kdump" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "Извините, ваша система не имеет достаточно памяти для работы kdump!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "К сожалению, в настоящее время ядро Xen не поддерживает kdump." -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "Извините, архитектура %s в настоящее время не поддерживает kdump!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "Изменение настроек Kdump требует перезагрузки системы для " --#~ "перераспределения памяти. Продолжить и перезагрузить систему по " --#~ "завершению firstboot? " -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "" --#~ "Ошибка! Не найден конфигурационный файл загрузчика, настройка прервана." -diff --git a/po/si.po b/po/si.po -index cc8fbbd..b5eae99 100644 ---- a/po/si.po -+++ b/po/si.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-07-03 05:52-0400\n" - "Last-Translator: Danishka Navin \n" - "Language-Team: Sinhala \n" -@@ -18,26 +18,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "කේඩම්ප්" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/sk.po b/po/sk.po -index 8a3f56a..54602e9 100644 ---- a/po/sk.po -+++ b/po/sk.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/sl.po b/po/sl.po -index fc1d4f6..4238666 100644 ---- a/po/sl.po -+++ b/po/sl.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-04-09 01:38-0400\n" - "Last-Translator: Rok Papez \n" - "Language-Team: Slovenian \n" -@@ -19,26 +19,26 @@ msgstr "" - "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" - "%100==4 ? 3 : 0)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/sq.po b/po/sq.po -index 2e7b407..257ccc2 100644 ---- a/po/sq.po -+++ b/po/sq.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/sr.po b/po/sr.po -index f280a62..22910bc 100644 ---- a/po/sr.po -+++ b/po/sr.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: kexec-tools\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-03-11 01:02-0000\n" - "Last-Translator: Miloš Komarčević \n" - "Language-Team: Serbian (sr) \n" -@@ -16,26 +16,26 @@ msgstr "" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/sr@Latn.po b/po/sr@Latn.po -index 5b8efae..bbe478f 100644 ---- a/po/sr@Latn.po -+++ b/po/sr@Latn.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-03-10 08:02-0500\n" - "Last-Translator: Miloš Komarčević \n" - "Language-Team: Serbian (sr) \n" -@@ -18,26 +18,26 @@ msgstr "" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" - "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/sv.po b/po/sv.po -index dc5b7af..3eae63a 100644 ---- a/po/sv.po -+++ b/po/sv.po -@@ -5,7 +5,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-03-09 07:35-0500\n" - "Last-Translator: Magnus Larsson \n" - "Language-Team: Swedish \n" -@@ -16,26 +16,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/ta.po b/po/ta.po -index 43b5fe9..fd9f587 100644 ---- a/po/ta.po -+++ b/po/ta.po -@@ -1,51 +1,52 @@ - # translation of ta.po to - # This file is distributed under the same license as the PACKAGE package. - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. --# - # Felix , 2007. -+# - # I Felix , 2010. - # Shantha kumar , 2012. -+# shkumar , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 06:34-0500\n" --"Last-Translator: Shantha kumar \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-06 06:36-0500\n" -+"Last-Translator: shkumar \n" - "Language-Team: Tamil <>\n" - "Language: ta\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb க்கு %s என்ற தவறான மதிப்பு" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump செயல்படுத்தப்பட்டுள்ளது" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump முடக்கப்பட்டுள்ளது" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -59,7 +60,6 @@ msgstr "" - "பயன்களுக்கு இல்லாத கணினி நினைவகத்தின் ஒரு பகுதி தேவைப்படும் என்பதை குறித்து கொள்ளவும்." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "ஒதுக்கி வைக்கப்பட வேண்டிய நினைவகம் (MB): (_R)" - -@@ -72,14 +72,12 @@ msgid "Usable System Memory (MB):" - msgstr "பயன்படுத்தும் கணினி நினைவகம் (MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "kdumpஐ செயல்படுத்த வேண்டுமா? (_E)" -+msgstr "kdump ஐ செயல்படுத்து (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "kdumpஐ செயல்படுத்த வேண்டுமா? (_E)" -+msgstr "fadump டம்ப் முறையைச் செயல்படுத்தவும் (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump நினைவக ஒதுக்கீடு:" -@@ -89,38 +87,3 @@ msgstr "kdumpஐ செயல்படுத்த வேண்டுமா? (_E - - #~ msgid "_Manual" - #~ msgstr "கைமுறை (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "தற்போது ஒதுக்கிவைக்கப்பட்டுள்ள நினைவகம் (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "மேம்பட்ட kdump அமைவாக்கம்" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "உங்கள் கணினியில் kdump கொண்டிருக்க போதிய நினைவகம் இல்லை!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "இந்த நேரத்தில் Xen கர்னல்களை kdump துணை புரியவில்லை!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "இந்த நேரத்தில் %s கணினி kdump க்கு துணைப்புரிவதில்லை!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "நினைவகத்தை மறு ஒதுக்கீடு செய்வதற்கேற்ப Kdump அமைவுகளை மாற்றுவதற்கு மறு துவக்கம் " --#~ "செய்ய வேண்டும். %sமுதல் துவக்கம் முடிந்தவுடன் மறு துவக்கம் செய்து, இந்த மாற்றத்தை தொடர " --#~ "வேண்டுமா?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "பிழை! துவக்க ஏற்றி கட்டமைப்பு கோப்பு இல்லை, கட்டமைப்பை நிறுத்துகிறது!" -diff --git a/po/ta_IN.po b/po/ta_IN.po -index 5c5b3d3..4f60803 100644 ---- a/po/ta_IN.po -+++ b/po/ta_IN.po -@@ -3,7 +3,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2012-12-18 06:42-0500\n" - "Last-Translator: Shantha kumar \n" - "Language-Team: Tamil <>\n" -@@ -14,26 +14,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n != 1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/te.po b/po/te.po -index 99f6945..504edf3 100644 ---- a/po/te.po -+++ b/po/te.po -@@ -1,50 +1,52 @@ --# translation of te.po to Telugu -+# SOME DESCRIPTIVE TITLE. - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - # This file is distributed under the same license as the PACKAGE package. -+# FIRST AUTHOR , YEAR. -+# translation of te.po to Telugu - # - # Krishna Babu K , 2007, 2010. --# kkrothap , 2012. #zanata -+# kkrothap , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 09:17-0500\n" --"Last-Translator: kkrothap \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-04 12:23-0500\n" -+"Last-Translator: kkrothap \n" - "Language-Team: Telugu \n" - "Language: te\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=2; plural=(n!=1);\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "%s కు చెల్లని విలువ --reserve-mb" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "Kdump చేతనమైంది" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "Kdump అచేతనమైంది" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -57,7 +59,6 @@ msgstr "" - "క్రాషవడానికి గల కారణాలను నిర్దారించడానికి వీలుకానిది అయిఉండొచ్చు." - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "రిజర్వు చేయవలసిన మెమొరీ (MB) (_R):" - -@@ -70,14 +71,12 @@ msgid "Usable System Memory (MB):" - msgstr "ఉపయోగకరమైన సిస్టమ్ మెమొరి(MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "కెడంప్ సిద్దపరచు(_E)?" -+msgstr "kdump చేతనించు (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "కెడంప్ సిద్దపరచు(_E)?" -+msgstr "డంప్ మోడ్ fadump చేతనించు (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "కెడంప్ మెమొర రిజర్వేషన్:" -@@ -87,37 +86,3 @@ msgstr "కెడంప్ సిద్దపరచు(_E)?" - - #~ msgid "_Manual" - #~ msgstr "మానవీయ (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "ప్రస్తుతం రిజర్వు అయిన మెమొరీ (MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "అధునాతన కెడంప్ ఆకృతీకరణ" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "క్షమించాలి,మీ సిస్టమ్ కెడంప్ కు తగినంత మెమొరీని కలిగి లేదు!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "క్షమించాలి, xen కెర్నల్సు కెడంప్ కు ఈసమయంలో మద్దతీయటలేదు!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "క్షమించాలి,ఈ సమయమందు %s నిర్మాణం కెడంప్ కు మద్దతునీయదు!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "కెడంప్ అమరికలు మార్చినట్లైతే వాటికి తగినట్లు మెమొరీని తిరిగికేటాయించుటకు సిస్టమ్ పునఃప్రారంభించవలెను. " --#~ "మీరు ఈ మార్పుతో కొనసాగటానికి మరియు ఫస్టుబూట్ పూర్తైనతరువాత రీబూట్ చేయటానికి ఇష్టపడతారా?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "దోషం!బూట్ లోడర్ ఆకృతీకరణ దస్త్రం కనబడలేదు,ఆకృతీకరణ రద్దుచేయబడుతోంది!" -diff --git a/po/tr.po b/po/tr.po -index 8d45043..efd13f8 100644 ---- a/po/tr.po -+++ b/po/tr.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=2; plural=(n>1)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/uk.po b/po/uk.po -index 094b456..986c9f3 100644 ---- a/po/uk.po -+++ b/po/uk.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: 2007-01-23 07:15-0500\n" - "Last-Translator: Maxim Dziumanenko \n" - "Language-Team: Ukrainian \n" -@@ -18,26 +18,26 @@ msgstr "" - "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" - "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/ur.po b/po/ur.po -index 9493d26..28eeb57 100644 ---- a/po/ur.po -+++ b/po/ur.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "Content-Type: text/plain; charset=CHARSET\n" - "Content-Transfer-Encoding: 8bit\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/vi.po b/po/vi.po -index 66f1b26..a975173 100644 ---- a/po/vi.po -+++ b/po/vi.po -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" - "PO-Revision-Date: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -17,26 +17,26 @@ msgstr "" - "X-Generator: Zanata 2.0.2\n" - "Plural-Forms: nplurals=1; plural=0\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" - msgstr "" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" - msgstr "" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" - msgstr "" - -diff --git a/po/zh_CN.po b/po/zh_CN.po -index de8151f..ed13cbd 100644 ---- a/po/zh_CN.po -+++ b/po/zh_CN.po -@@ -1,53 +1,52 @@ --# translation of zh_CN.po to Wei Liu - # translation of zh_CN.po to - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - # This file is distributed under the same license as the PACKAGE package. - # - # Xi HUANG , 2007. -+# translation of zh_CN.po to Wei Liu - # Leah Liu , 2010. --# leahliu , 2012. #zanata --# yangrr , 2012. #zanata -+# Leah Liu , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-20 10:07-0500\n" --"Last-Translator: yangrr \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-03 11:59-0500\n" -+"Last-Translator: Leah Liu \n" - "Language-Team: Wei Liu\n" --"Language: zh-Hans-CN\n" -+"Language: zh-Hans\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=1; plural=0\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb 的有效值" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "已启用 Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "已禁用 Kdump" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "KDUMP(_K)" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -61,7 +60,6 @@ msgstr "" - "其他用户是不可用的。" - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "要保留的内存(MB):" - -@@ -74,14 +72,12 @@ msgid "Usable System Memory (MB):" - msgstr "可用系统内存(MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "启用 kdump (_E)?" -+msgstr "启用 kdump(_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "启用 kdump (_E)?" -+msgstr "启用转储模式 fadump(_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "为 Kdump 保留的内存:" -@@ -91,37 +87,3 @@ msgstr "启用 kdump (_E)?" - - #~ msgid "_Manual" - #~ msgstr "手动(_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "目前保留的内存(MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "高级 kdump 配置" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "对不起,您的系统没有足够的内存在运行 kdump!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "对不起,现在 Xen 内核不支持 kdump!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "对不起,%s 体系结构此时不支持 kdump!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "更改 Kdump 设置需要重新启动系统以便根据情况重新分配内存。您要保留这些修改" --#~ "并在 firstboot 完成后重新启动系统吗?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "错误!找不到引导装载程序的配置文件,配置终止!" -diff --git a/po/zh_TW.po b/po/zh_TW.po -index d429664..d88b97a 100644 ---- a/po/zh_TW.po -+++ b/po/zh_TW.po -@@ -4,48 +4,49 @@ - # - # Chester Cheng , 2007. - # Terry Chuang , 2010. --# snowlet , 2012. #zanata -+# tchuang , 2013. #zanata -+# ccheng , 2014. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2014-09-17 17:34+0800\n" --"PO-Revision-Date: 2012-12-18 01:50-0500\n" --"Last-Translator: snowlet \n" -+"POT-Creation-Date: 2014-11-12 16:19+0800\n" -+"PO-Revision-Date: 2014-11-03 11:58-0500\n" -+"Last-Translator: ccheng \n" - "Language-Team: Traditional Chinese \n" --"Language: zh-Hant-TW\n" -+"Language: zh-Hant\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Generator: Zanata 2.0.2\n" -+"X-Generator: Zanata 3.5.1\n" - "Plural-Forms: nplurals=1; plural=0\n" - --#: ../com_redhat_kdump/ks/kdump.py:119 -+#: ../com_redhat_kdump/ks/kdump.py:120 - #, python-format - msgid "Invalid value %s for --reserve-mb" --msgstr "" -+msgstr "--reserve-mb 的值 %s 無效" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:57 - msgid "Kdump" - msgstr "Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:84 --#: ../com_redhat_kdump/gui/spokes/kdump.py:130 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:85 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:131 - msgid "Kdump is enabled" --msgstr "" -+msgstr "已啟用 Kdump" - --#: ../com_redhat_kdump/tui/spokes/kdump.py:86 --#: ../com_redhat_kdump/gui/spokes/kdump.py:132 -+#: ../com_redhat_kdump/tui/spokes/kdump.py:87 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:133 - msgid "Kdump is disabled" --msgstr "" -+msgstr "已停用 Kdump" - --#: ../com_redhat_kdump/gui/spokes/kdump.py:46 -+#: ../com_redhat_kdump/gui/spokes/kdump.py:47 - msgid "_KDUMP" --msgstr "" -+msgstr "_KDUMP" - - #: tmp/kdump.glade.h:1 - msgid "KDUMP" --msgstr "" -+msgstr "KDUMP" - - #: tmp/kdump.glade.h:2 - msgid "" -@@ -54,12 +55,11 @@ msgid "" - "determining the cause of the crash. Note that kdump does require reserving a " - "portion of system memory that will be unavailable for other uses." - msgstr "" --"Kdump 是核心當機時的傾印機制。當系統當機時,kdump 會擷取系統資訊,以找出導致" -+"Kdump 乃核心當機時的傾印機制。當系統當機時,kdump 會擷取系統資訊,以找出導致" - "當機的原因。請注意,kdump 需要保留部份系統記憶體,其他使用者將無法使用這些記" - "憶體。" - - #: tmp/kdump.glade.h:3 --#, fuzzy - msgid "Memory To Be _Reserved (MB):" - msgstr "要保留的記憶體(MB)(_R):" - -@@ -72,14 +72,12 @@ msgid "Usable System Memory (MB):" - msgstr "可用的系統記憶體(MB):" - - #: tmp/kdump.glade.h:6 --#, fuzzy - msgid "_Enable kdump" --msgstr "啟用 kdump(_E)?" -+msgstr "啟用 kdump (_E)" - - #: tmp/kdump.glade.h:7 --#, fuzzy - msgid "_Enable dump mode fadump" --msgstr "啟用 kdump(_E)?" -+msgstr "啟用 dump 模式 fadump (_E)" - - #~ msgid "Kdump Memory Reservation:" - #~ msgstr "Kdump 保留記憶體:" -@@ -89,37 +87,3 @@ msgstr "啟用 kdump(_E)?" - - #~ msgid "_Manual" - #~ msgstr "首棟 (_M)" -- --#~ msgid "%s" --#~ msgstr "%s" -- --#~ msgid "Memory Currently Reserved (MB):" --#~ msgstr "目前保留的記憶體(MB):" -- --#~ msgid "" --#~ "\n" --#~ "Advanced kdump configuration" --#~ msgstr "" --#~ "\n" --#~ "kdump 進階配置" -- --#~ msgid "" --#~ "Sorry, your system does not have enough memory for kdump to be viable!" --#~ msgstr "您的系統沒有足夠的記憶體以執行 kdump!" -- --#~ msgid "Sorry, Xen kernels do not support kdump at this time!" --#~ msgstr "很抱歉,Xen kernel 目前尚不支援 kdump!" -- --#~ msgid "Sorry, the %s architecture does not support kdump at this time!" --#~ msgstr "%s 架構尚不支援 kdump!" -- --#~ msgid "" --#~ "Changing Kdump settings requires rebooting the system to reallocate " --#~ "memory accordingly. Would you like to continue with this change and " --#~ "reboot the system after firstboot is complete?" --#~ msgstr "" --#~ "變更 Kdump 設定之後,必須重新啟動系統,以重新分配記憶體。您是否希望繼續進" --#~ "行這項變更,並在 firstboot 完成後重新啟動系統?" -- --#~ msgid "Error! No bootloader config file found, aborting configuration!" --#~ msgstr "錯誤,找不到 bootloader(開機載入程式)的設定檔,放棄設定!" diff --git a/use-anaconda-bootloader-module-for-boot-options-setting.patch b/use-anaconda-bootloader-module-for-boot-options-setting.patch deleted file mode 100644 index ff6e133..0000000 --- a/use-anaconda-bootloader-module-for-boot-options-setting.patch +++ /dev/null @@ -1,50 +0,0 @@ -From 30efb24192b167466814a380e855b9ecf97d7fc8 Mon Sep 17 00:00:00 2001 -From: Radek Vykydal -Date: Mon, 25 Jun 2018 15:55:17 +0200 -Subject: [PATCH] Use anaconda bootloader module for boot options setting - (#1594827) - ---- - com_redhat_kdump/ks/kdump.py | 15 ++++++++++----- - 1 file changed, 10 insertions(+), 5 deletions(-) - -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index d9aaa7b..496c322 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -23,6 +23,8 @@ - from pyanaconda.addons import AddonData - from pyanaconda.core import util - from pyanaconda.flags import flags -+from pyanaconda.modules.common.constants.services import STORAGE -+from pyanaconda.modules.common.constants.objects import BOOTLOADER - - from pykickstart.options import KSOptionParser - from pykickstart.errors import KickstartParseError, formatErrorMsg -@@ -67,18 +69,21 @@ def setup(self, storage, ksdata, instClass, payload): - if not flags.cmdline.getbool("kdump_addon", default=False): - return - -+ bootloader_proxy = STORAGE.get_proxy(BOOTLOADER) -+ - # Clear any existing crashkernel bootloader arguments -- if ksdata.bootloader.appendLine: -- ksdata.bootloader.appendLine = ' '.join( -- (arg for arg in ksdata.bootloader.appendLine.split() \ -- if not arg.startswith('crashkernel='))) -+ extra_args = bootloader_proxy.ExtraArguments -+ new_args = [arg for arg in extra_args -+ if not arg.startswith('crashkernel=')] - - # Copy our reserved amount to the bootloader arguments - if self.enabled: - # Ensure that the amount is an amount in MB - if self.reserveMB[-1] != 'M': - self.reserveMB += 'M' -- ksdata.bootloader.appendLine += ' crashkernel=%s' % self.reserveMB -+ new_args.append(' crashkernel=%s' % self.reserveMB) -+ -+ bootloader_proxy.SetExtraArguments(new_args) - - # Do the same thing with the storage.bootloader.boot_args set - if storage.bootloader.boot_args: diff --git a/use-kernel-arguments-instead-of-cmdline.patch b/use-kernel-arguments-instead-of-cmdline.patch deleted file mode 100644 index 8086740..0000000 --- a/use-kernel-arguments-instead-of-cmdline.patch +++ /dev/null @@ -1,107 +0,0 @@ -From 5b9a9528e744a040ef1650cd31d8a1d20ccd341b Mon Sep 17 00:00:00 2001 -From: Vladimir Slavik -Date: Wed, 8 Jan 2020 20:04:38 +0100 -Subject: [PATCH] Use kernel_arguments instead of cmdline - -Changes all usages of pyanaconda.flags.cmdline to -pyanaconda.kernel.kernel_arguments. - -Requires pyanaconda >=32.18 ---- - com_redhat_kdump/gui/spokes/kdump.py | 4 ++-- - com_redhat_kdump/ks/kdump.py | 7 ++++--- - com_redhat_kdump/tui/spokes/kdump.py | 4 ++-- - test/unittests/utils.py | 2 +- - 4 files changed, 9 insertions(+), 8 deletions(-) - -diff --git a/com_redhat_kdump/gui/spokes/kdump.py b/com_redhat_kdump/gui/spokes/kdump.py -index c8f5c9b..01dfb0b 100644 ---- a/com_redhat_kdump/gui/spokes/kdump.py -+++ b/com_redhat_kdump/gui/spokes/kdump.py -@@ -24,7 +24,7 @@ - import os.path - from gi.repository import Gtk - --from pyanaconda.flags import flags -+from pyanaconda.core.kernel import kernel_arguments - from pyanaconda.ui.categories.system import SystemCategory - from pyanaconda.ui.gui.spokes import NormalSpoke - from pyanaconda.ui.gui.utils import fancy_set_sensitive -@@ -51,7 +51,7 @@ class KdumpSpoke(NormalSpoke): - @classmethod - def should_run(cls, environment, data): - # the KdumpSpoke should run only if requested -- return flags.cmdline.getbool("kdump_addon", default=False) -+ return kernel_arguments.is_enabled("kdump_addon") - - def __init__(self, *args): - NormalSpoke.__init__(self, *args) -diff --git a/com_redhat_kdump/ks/kdump.py b/com_redhat_kdump/ks/kdump.py -index 0adb5e5..09f727b 100644 ---- a/com_redhat_kdump/ks/kdump.py -+++ b/com_redhat_kdump/ks/kdump.py -@@ -23,7 +23,7 @@ - from pyanaconda.addons import AddonData - from pyanaconda.core import util - from pyanaconda.core.configuration.anaconda import conf --from pyanaconda.flags import flags -+from pyanaconda.core.kernel import kernel_arguments - from pyanaconda.modules.common.constants.services import STORAGE - from pyanaconda.modules.common.constants.objects import BOOTLOADER - -@@ -67,9 +67,10 @@ def __str__(self): - - def setup(self, storage, ksdata, payload): - # the kdump addon should run only if requested -- if not flags.cmdline.getbool("kdump_addon", default=False): -+ if not kernel_arguments.is_enabled("kdump_addon"): - return - -+ - bootloader_proxy = STORAGE.get_proxy(BOOTLOADER) - - # Clear any existing crashkernel bootloader arguments -@@ -139,7 +140,7 @@ def handle_header(self, lineno, args): - - def execute(self, storage, ksdata, users, payload): - # the KdumpSpoke should run only if requested -- if not flags.cmdline.getbool("kdump_addon", default=False) or not self.enabled: -+ if not kernel_arguments.is_enabled("kdump_addon") or not self.enabled: - return - - action = "enable" -diff --git a/com_redhat_kdump/tui/spokes/kdump.py b/com_redhat_kdump/tui/spokes/kdump.py -index 871f71d..c35fd0f 100644 ---- a/com_redhat_kdump/tui/spokes/kdump.py -+++ b/com_redhat_kdump/tui/spokes/kdump.py -@@ -24,7 +24,7 @@ - import os.path - import re - --from pyanaconda.flags import flags -+from pyanaconda.core.kernel import kernel_arguments - from pyanaconda.ui.categories.system import SystemCategory - from pyanaconda.ui.tui.spokes import NormalTUISpoke - from pyanaconda.ui.tui.tuiobject import Dialog -@@ -54,7 +54,7 @@ def __init__(self, *args): - @classmethod - def should_run(cls, environment, data): - # the KdumpSpoke should run only if requested -- return flags.cmdline.getbool("kdump_addon", default=False) -+ return kernel_arguments.is_enabled("kdump_addon") - - def apply(self): - pass -diff --git a/test/unittests/utils.py b/test/unittests/utils.py -index 64ae1a0..10ba8c7 100644 ---- a/test/unittests/utils.py -+++ b/test/unittests/utils.py -@@ -4,7 +4,7 @@ - from com_redhat_kdump import common - - def enable_kdump_addon_in_anaconda(): -- return patch('pyanaconda.flags.cmdline.getbool', return_value=True) -+ return patch('pyanaconda.kernel.kernel_arguments.is_enabled', return_value=True) - - class KdumpTestCase(unittest.TestCase): - def setUp(self): diff --git a/use-mizmo-replacement-icon-for-kdump-addon.patch b/use-mizmo-replacement-icon-for-kdump-addon.patch deleted file mode 100644 index 7375a50..0000000 --- a/use-mizmo-replacement-icon-for-kdump-addon.patch +++ /dev/null @@ -1,262 +0,0 @@ -From 59f9b73ff3a144274ec3fce3ef5f65a7298424c7 Mon Sep 17 00:00:00 2001 -From: Dave Young -Date: Thu, 23 Jul 2015 10:41:53 +0800 -Subject: [PATCH] Use mizmo's replacement icon for kdump addon -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -The life preserver has is that as an icon life preservers are generally -used to either symbolize 'help' or 'docs.' - -Máirín Duffy designed a better icon, it shows a little blip in a heart beat -with a magnifying class examining it, it uses components of the -gnome-symbolic-theme so it would match the other icons in the hub. ---- - kdump.svg | 210 ++++++++++++++++++++++++++---------------------------- - 1 file changed, 102 insertions(+), 108 deletions(-) - -diff --git a/kdump.svg b/kdump.svg -index bef8e17..8b3aaa3 100644 ---- a/kdump.svg -+++ b/kdump.svg -@@ -9,137 +9,131 @@ - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" -- id="svg2" -+ id="svg7384" -+ sodipodi:docname="kdump.svg" - version="1.1" - inkscape:version="0.91 r13725" -- width="64" -- height="64" -- viewBox="0 0 64 64" -- sodipodi:docname="kdump.svg" -- inkscape:export-filename="/Users/snow/Desktop/RHEL7-kdump" -- inkscape:export-xdpi="126.703" -- inkscape:export-ydpi="126.703"> -+ height="16" -+ width="16"> - -+ id="metadata90"> - - - image/svg+xml - -- -+ Gnome Symbolic Icon Theme - - - -- - -+ inkscape:window-x="2560" -+ inkscape:snap-global="true" -+ inkscape:window-y="0" -+ gridtolerance="10" -+ inkscape:window-height="1403" -+ inkscape:snap-to-guides="true" -+ inkscape:current-layer="layer12" -+ inkscape:snap-bbox-midpoints="false" -+ inkscape:zoom="45.254834" -+ inkscape:cx="9.864577" -+ inkscape:snap-grids="true" -+ inkscape:pageopacity="1" -+ borderlayer="false" -+ inkscape:showpageshadow="false"> -+ -+ -+ Gnome Symbolic Icon Theme -+ - -- -- -- -- -- -- -- -- -+ id="layer9" -+ style="display:inline" /> - -- -+ inkscape:label="devices" -+ transform="translate(-140.0002,-645.96875)" -+ inkscape:groupmode="layer" -+ id="layer10" /> -+ -+ -+ -+ -+ - - -+ -+ -+ -