diff --git a/anaconda-addon/Makefile b/anaconda-addon/Makefile deleted file mode 100644 index 1b30e44..0000000 --- a/anaconda-addon/Makefile +++ /dev/null @@ -1,79 +0,0 @@ -NAME = kdump-anaconda-addon - -ADDON = com_redhat_kdump -TESTS = test - -FILES = $(ADDON) \ - po \ - Makefile \ - README - -EXCLUDES = \ - *~ \ - *.pyc - -all: - @echo "usage: make dist" - @echo " make test" - @echo " make install" - @echo " make uninstall" - -DISTNAME = $(NAME)-$(shell date +%Y%m%d) -ADDONDIR = /usr/share/anaconda/addons/ -DISTBALL = $(DISTNAME).tar.gz -NUM_PROCS = $$(getconf _NPROCESSORS_ONLN) - -install: - mkdir -p $(DESTDIR)$(ADDONDIR) - cp -rv $(ADDON) $(DESTDIR)$(ADDONDIR) - make install-po-files - -uninstall: - rm -rfv $(DESTDIR)$(ADDONDIR) - -dist: - rm -rf $(NAME) - mkdir -p $(NAME) - @if test -d ".git"; \ - then \ - echo Creating ChangeLog && \ - ( cd "$(top_srcdir)" && \ - echo '# Generate automatically. Do not edit.'; echo; \ - git log --stat --date=short ) > ChangeLog.tmp \ - && mv -f ChangeLog.tmp $(NAME)/ChangeLog \ - || ( rm -f ChangeLog.tmp ; \ - echo Failed to generate ChangeLog >&2 ); \ - else \ - echo A git clone is required to generate a ChangeLog >&2; \ - fi - for file in $(FILES); do \ - cp -rpv $$file $(NAME)/$$file; \ - done - for excl in $(EXCLUDES); do \ - find $(NAME) -name "$$excl" -delete; \ - done - tar -czvf ../$(DISTBALL) $(NAME) - rm -rf $(NAME) - -potfile: - $(MAKE) DESTDIR=$(DESTDIR) -C po potfile - -po-pull: - tx pull -a --disable-overwrite - -install-po-files: - $(MAKE) -C po install - -test: - @echo "***Running pylint checks***" - @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/ - -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/ diff --git a/anaconda-addon/README b/anaconda-addon/README deleted file mode 100644 index 50a7c97..0000000 --- a/anaconda-addon/README +++ /dev/null @@ -1,29 +0,0 @@ -This is an anaconda addon for configuring kdump. To use, copy the -com_redhat_kdump directory into /usr/share/anaconda/addons on your -installation media. - -The syntax of the addon's kickstart section is: - -%addon com_redhat_kdump (--enable|--disable) --reserve-mb=("auto"|) -%end - -Note that support for arguments on the %addon line was added in -anaconda-21.23. See anaconda commit 3a512e4f9e15977f0ce2d0bbe39e841b881398f3, -https://bugzilla.redhat.com/show_bug.cgi?id=1065674 - -How to test the kdump-anaconda-addon? -You can provide an updates image in the kernel boot arguments as updates=, -and the contents will be added to the stage2 filesystem. -https://fedoraproject.org/wiki/Anaconda/Updates has more details, but usually -the easiest is to make it available via HTTP or FTP and provide a url to updates=. - -The file is a gzip-compressed cpio archive, and the files need to be put into -stage2 in /usr/share/anaconda/addons, so something like this will work to create -an updates.img: - -mkdir -p updates/usr/share/anaconda/addons -cp -r com_redhat_kdump updates/usr/share/anaconda/addons/ -( cd updates; find . | cpio -oc | gzip -c9 ) > updates.img - -then you can upload the updates.img to some http or ftp server so the anaconda -can get it by boot parameter as updates=http://some.website.com/path/to/updates.img. diff --git a/anaconda-addon/com_redhat_kdump/__init__.py b/anaconda-addon/com_redhat_kdump/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/anaconda-addon/com_redhat_kdump/common.py b/anaconda-addon/com_redhat_kdump/common.py deleted file mode 100644 index cd37131..0000000 --- a/anaconda-addon/com_redhat_kdump/common.py +++ /dev/null @@ -1,88 +0,0 @@ -# Kdump configuration common methods -# -# Copyright (C) 2014 Red Hat, Inc. -# -# This copyrighted material is made available to anyone wishing to use, -# modify, copy, or redistribute it subject to the terms and conditions of -# the GNU General Public License v.2, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY expressed or implied, including the implied warranties of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -# Public License for more details. You should have received a copy of the -# GNU General Public License along with this program; if not, write to the -# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the -# source code or documentation are not subject to the GNU General Public -# License and may only be used or replicated with the express permission of -# Red Hat, Inc. -# -# Red Hat Author(s): David Shea -# -import os -__all__ = ["getReservedMemory", "getTotalMemory", "getMemoryBounds", "getOS"] - -from pyanaconda.isys import total_memory -from pyanaconda.flags import flags -from com_redhat_kdump.constants import OS_RELEASE - -_reservedMemory = None -def getReservedMemory(): - """Return the amount of memory currently reserved for kdump in MB.""" - global _reservedMemory - - # Check if the value has already been read - if _reservedMemory is not None: - return _reservedMemory - - try: - with open("/sys/kernel/kexec_crash_size", "r") as fobj: - _reservedMemory = int(fobj.read()) / (1024*1024) - return _reservedMemory - except (ValueError, IOError): - return 0 - -def getTotalMemory(): - """Return the total amount of system memory in MB - - This is the amount reported by /proc/meminfo plus the aount - currently reserved for kdump. - """ - - # total_memory return memory in KB, convert to MB - availMem = total_memory() / 1024 - - return availMem + getReservedMemory() - -def getMemoryBounds(): - """Return a tuple of (lower, upper, step) for kdump reservation limits. - - If there is not enough memory available to use kdump, both lower and - upper will be 0. - """ - - totalMemory = getTotalMemory() - - if flags.targetarch == 'ppc64': - lowerBound = 256 - minUsable = 1024 - step = 1 - else: - lowerBound = 128 - minUsable = 256 - step = 1 - - upperBound = (totalMemory - minUsable) - (totalMemory % step) - - if upperBound < lowerBound: - upperBound = lowerBound = 0 - - return (lowerBound, upperBound, step) - -def getOS(): - with open(os.path.normpath(OS_RELEASE), "r") as fobj: - line = fobj.readline() - - if not "Fedora" in line: - return "redhat" - else: - return "fedora" diff --git a/anaconda-addon/com_redhat_kdump/constants.py b/anaconda-addon/com_redhat_kdump/constants.py deleted file mode 100644 index aab9537..0000000 --- a/anaconda-addon/com_redhat_kdump/constants.py +++ /dev/null @@ -1,23 +0,0 @@ -# Kdump configuration constants -# -# Copyright (C) 2014 Red Hat, Inc. -# -# This copyrighted material is made available to anyone wishing to use, -# modify, copy, or redistribute it subject to the terms and conditions of -# the GNU General Public License v.2, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY expressed or implied, including the implied warranties of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -# Public License for more details. You should have received a copy of the -# GNU General Public License along with this program; if not, write to the -# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the -# source code or documentation are not subject to the GNU General Public -# License and may only be used or replicated with the express permission of -# Red Hat, Inc. -# -# Red Hat Author(s): David Shea -# - -# The location of the kdump config file -OS_RELEASE = "/etc/os-release" diff --git a/anaconda-addon/com_redhat_kdump/gui/__init__.py b/anaconda-addon/com_redhat_kdump/gui/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/anaconda-addon/com_redhat_kdump/gui/spokes/RHEL.glade b/anaconda-addon/com_redhat_kdump/gui/spokes/RHEL.glade deleted file mode 100644 index 272f745..0000000 --- a/anaconda-addon/com_redhat_kdump/gui/spokes/RHEL.glade +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - filler - False - filler - KDUMP - - - - False - vertical - 6 - - - True - False - - - False - 6 - 6 - 6 - - - - - False - False - 0 - - - - - False - 0 - - - False - vertical - 6 - - - True - False - 10 - vertical - 10 - - - True - False - 0 - 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. - True - - - False - True - 0 - - - - - True - False - - - _Enable kdump? - True - True - False - True - 0 - 0 - True - - - - 0 - 0 - 3 - 1 - - - - - True - False - 0 - Kdump Memory Reservation: - - - 0 - 1 - 1 - 1 - - - - - _Automatic - True - True - False - True - 0 - True - True - - - - 1 - 1 - 1 - 1 - - - - - _Manual - True - True - False - True - 0 - True - True - autoButton - - - - 2 - 1 - 1 - 1 - - - - - True - False - 0 - Memory To Be _Reserved (MB): - True - toBeReservedSpin - - - 0 - 3 - 1 - 1 - - - - - True - True - digits - if-valid - - - - 1 - 3 - 1 - 1 - - - - - True - False - 0 - Total System Memory (MB): - - - 0 - 4 - 1 - 1 - - - - - True - False - 0 - - - 1 - 4 - 1 - 1 - - - - - True - False - 0 - Usable System Memory (MB): - - - 0 - 5 - 1 - 1 - - - - - True - False - 0 - - - 1 - 5 - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - False - True - 1 - - - - - False - True - 0 - - - - - - - True - True - 1 - - - - - - - - - diff --git a/anaconda-addon/com_redhat_kdump/gui/spokes/__init__.py b/anaconda-addon/com_redhat_kdump/gui/spokes/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/anaconda-addon/com_redhat_kdump/gui/spokes/fedora.glade b/anaconda-addon/com_redhat_kdump/gui/spokes/fedora.glade deleted file mode 100644 index 55442a8..0000000 --- a/anaconda-addon/com_redhat_kdump/gui/spokes/fedora.glade +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - filler - False - filler - KDUMP - - - - False - vertical - 6 - - - True - False - - - False - 6 - 6 - 6 - - - - - False - False - 0 - - - - - False - 0 - - - False - vertical - 6 - - - True - False - 10 - vertical - 10 - - - True - False - 0 - 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. - True - - - False - True - 0 - - - - - True - False - - - True - False - 0 - Memory To Be _Reserved (MB): - True - toBeReservedSpin - - - 0 - 3 - 1 - 1 - - - - - True - True - digits - if-valid - - - - 1 - 3 - 1 - 1 - - - - - True - False - 0 - Total System Memory (MB): - - - 0 - 4 - 1 - 1 - - - - - True - False - 0 - - - 1 - 4 - 1 - 1 - - - - - True - False - 0 - Usable System Memory (MB): - - - 0 - 5 - 1 - 1 - - - - - True - False - 0 - - - 1 - 5 - 1 - 1 - - - - - _Enable kdump? - True - True - False - True - 0 - 0 - True - - - - 0 - 0 - 1 - 1 - - - - - - - - - - - - - - - - - - - - False - True - 1 - - - - - False - True - 0 - - - - - - - True - True - 1 - - - - - - - - - diff --git a/anaconda-addon/com_redhat_kdump/gui/spokes/kdump.py b/anaconda-addon/com_redhat_kdump/gui/spokes/kdump.py deleted file mode 100644 index cec6b06..0000000 --- a/anaconda-addon/com_redhat_kdump/gui/spokes/kdump.py +++ /dev/null @@ -1,192 +0,0 @@ -# Kdump anaconda configuration -# -# Copyright (C) 2014 Red Hat, Inc. -# -# This copyrighted material is made available to anyone wishing to use, -# modify, copy, or redistribute it subject to the terms and conditions of -# the GNU General Public License v.2, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY expressed or implied, including the implied warranties of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -# Public License for more details. You should have received a copy of the -# GNU General Public License along with this program; if not, write to the -# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the -# source code or documentation are not subject to the GNU General Public -# License and may only be used or replicated with the express permission of -# Red Hat, Inc. -# -# Red Hat Author(s): David Shea -# - -"""Kdump anaconda GUI configuration""" - -from gi.repository import Gtk - -from pyanaconda.ui.gui.categories.system import SystemCategory -from pyanaconda.ui.gui.spokes import NormalSpoke -from pyanaconda.ui.gui.utils import fancy_set_sensitive - -from com_redhat_kdump.i18n import _, N_ -from com_redhat_kdump.common import getReservedMemory, getTotalMemory, getMemoryBounds, getOS - -__all__ = ["KdumpSpoke"] - -class KdumpSpoke(NormalSpoke): - """Kdump configuration spoke""" - - builderObjects = ["KdumpWindow", "advancedConfigBuffer"] - mainWidgetName = "KdumpWindow" - uiFile = "RHEL.glade" - translationDomain = "kdump-anaconda-addon" - - icon = "computer-fail-symbolic" - title = N_("KDUMP") - category = SystemCategory - OS = "redhat" - def __init__(self, data, storage, payload, instclass): - KdumpSpoke.OS = getOS() - if KdumpSpoke.OS == "fedora": - KdumpSpoke.uiFile = "fedora.glade" - NormalSpoke.__init__(self, data, storage, payload, instclass) - self._reserveMem = 0 - - def initialize(self): - NormalSpoke.initialize(self) - self._enableButton = self.builder.get_object("enableKdumpCheck") - KdumpSpoke.OS = getOS() - if KdumpSpoke.OS == "redhat": - self._reservationTypeLabel = self.builder.get_object("reservationTypeLabel") - self._autoButton = self.builder.get_object("autoButton") - self._manualButton = self.builder.get_object("manualButton") - - self._toBeReservedLabel = self.builder.get_object("toBeReservedLabel") - self._toBeReservedSpin = self.builder.get_object("toBeReservedSpin") - self._totalMemLabel = self.builder.get_object("totalMemLabel") - self._totalMemMB = self.builder.get_object("totalMemMB") - self._usableMemLabel = self.builder.get_object("usableMemLabel") - self._usableMemMB = self.builder.get_object("usableMemMB") - - # Set an initial value and adjustment on the spin button - lower, upper, step = getMemoryBounds() - adjustment = Gtk.Adjustment(lower, lower, upper, step, step, 0) - self._toBeReservedSpin.set_adjustment(adjustment) - self._toBeReservedSpin.set_value(lower) - - def refresh(self): - # If a reserve amount is requested, set it in the spin button - if self.data.addons.com_redhat_kdump.reserveMB != "auto": - # Strip the trailing 'M' - reserveMB = self.data.addons.com_redhat_kdump.reserveMB - if reserveMB and reserveMB[-1] == 'M': - reserveMB = reserveMB[:-1] - if reserveMB: - self._toBeReservedSpin.set_value(int(reserveMB)) - - # Set the various labels. Use the spin button signal handler to set the - # usable memory label once the other two have been set. - self._totalMemMB.set_text("%d" % getTotalMemory()) - self._toBeReservedSpin.emit("value-changed") - - # Set the states on the toggle buttons and let the signal handlers set - # the sensitivities on the related widgets. Set the radio button first, - # since the radio buttons' bailiwick is a subset of that of the - # enable/disable checkbox. - if KdumpSpoke.OS == "redhat": - if self.data.addons.com_redhat_kdump.reserveMB == "auto": - self._autoButton.set_active(True) - self._manualButton.set_active(False) - else: - self._autoButton.set_active(False) - self._manualButton.set_active(True) - - if self.data.addons.com_redhat_kdump.enabled: - self._enableButton.set_active(True) - else: - self._enableButton.set_active(False) - - # Force a toggled signal on the button in case it's state has not changed - self._enableButton.emit("toggled") - - def apply(self): - # Copy the GUI state into the AddonData object - self.data.addons.com_redhat_kdump.enabled = self._enableButton.get_active() - - if KdumpSpoke.OS == "redhat" and self._autoButton.get_active(): - reserveMem = "auto" - else: - reserveMem = "%dM" % self._toBeReservedSpin.get_value_as_int() - - self.data.addons.com_redhat_kdump.reserveMB = reserveMem - - - @property - def ready(self): - return True - - @property - def completed(self): - # Always treat as completed - return True - - @property - def mandatory(self): - return False - - @property - def status(self): - if self.data.addons.com_redhat_kdump.enabled: - state = _("Kdump is enabled") - else: - state = _("Kdump is disabled") - - return state - - # SIGNAL HANDLERS - - def on_enable_kdump_toggled(self, checkbutton, user_data=None): - status = checkbutton.get_active() - - # If disabling, set everything to insensitve. Otherwise, only set the radio - # button and currently reserved widgets to sensitive and then fake a - # toggle event on the radio button to set the state on the reserve - # amount spin button and total/usable mem display. - if KdumpSpoke.OS == "redhat": - self._autoButton.set_sensitive(status) - self._manualButton.set_sensitive(status) - self._reservationTypeLabel.set_sensitive(status) - - if not status: - fancy_set_sensitive(self._toBeReservedSpin, status) - self._totalMemLabel.set_sensitive(status) - self._totalMemMB.set_sensitive(status) - self._usableMemLabel.set_sensitive(status) - self._usableMemMB.set_sensitive(status) - elif KdumpSpoke.OS == "redhat": - self._autoButton.emit("toggled") - else: - fancy_set_sensitive(self._toBeReservedSpin, True) - self._totalMemLabel.set_sensitive(True) - self._totalMemMB.set_sensitive(True) - self._usableMemLabel.set_sensitive(True) - self._usableMemMB.set_sensitive(True) - - def on_reservation_toggled(self, radiobutton, user_data=None): - status = self._manualButton.get_active() - - # If setting to auto, disable the manual config spinner and - # the total/usable memory labels - fancy_set_sensitive(self._toBeReservedSpin, status) - self._totalMemLabel.set_sensitive(status) - self._totalMemMB.set_sensitive(status) - self._usableMemLabel.set_sensitive(status) - self._usableMemMB.set_sensitive(status) - - def on_reserved_value_changed(self, spinbutton, user_data=None): - reserveMem = spinbutton.get_value_as_int() - totalMemText = self._totalMemMB.get_text() - - # If no total memory is available yet, do nothing - if totalMemText: - totalMem = int(self._totalMemMB.get_text()) - self._usableMemMB.set_text("%d" % (totalMem - reserveMem)) diff --git a/anaconda-addon/com_redhat_kdump/i18n.py b/anaconda-addon/com_redhat_kdump/i18n.py deleted file mode 100644 index a8cd27a..0000000 --- a/anaconda-addon/com_redhat_kdump/i18n.py +++ /dev/null @@ -1,27 +0,0 @@ -# Kdump configuration translation functions -# -# Copyright (C) 2014 Red Hat, Inc. -# -# This copyrighted material is made available to anyone wishing to use, -# modify, copy, or redistribute it subject to the terms and conditions of -# the GNU General Public License v.2, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY expressed or implied, including the implied warranties of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -# Public License for more details. You should have received a copy of the -# GNU General Public License along with this program; if not, write to the -# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the -# source code or documentation are not subject to the GNU General Public -# License and may only be used or replicated with the express permission of -# Red Hat, Inc. -# -# Red Hat Author(s): David Shea -# - -__all__ = ["_", "N_"] - -import gettext - -_ = lambda x: gettext.ldgettext("kdump-anaconda-addon", x) -N_ = lambda x: x diff --git a/anaconda-addon/com_redhat_kdump/ks/__init__.py b/anaconda-addon/com_redhat_kdump/ks/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/anaconda-addon/com_redhat_kdump/ks/kdump.py b/anaconda-addon/com_redhat_kdump/ks/kdump.py deleted file mode 100644 index b4b346c..0000000 --- a/anaconda-addon/com_redhat_kdump/ks/kdump.py +++ /dev/null @@ -1,128 +0,0 @@ -# Kdump anaconda configuration -# -# Copyright (C) 2014 Red Hat, Inc. -# -# This copyrighted material is made available to anyone wishing to use, -# modify, copy, or redistribute it subject to the terms and conditions of -# the GNU General Public License v.2, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY expressed or implied, including the implied warranties of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -# Public License for more details. You should have received a copy of the -# GNU General Public License along with this program; if not, write to the -# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the -# source code or documentation are not subject to the GNU General Public -# License and may only be used or replicated with the express permission of -# Red Hat, Inc. -# -# Red Hat Author(s): David Shea -# - -import os - -from pyanaconda.addons import AddonData -from pyanaconda.constants import ROOT_PATH -from pyanaconda import iutil - -from pykickstart.options import KSOptionParser -from pykickstart.errors import KickstartParseError, formatErrorMsg -from com_redhat_kdump.common import getOS, getMemoryBounds -from com_redhat_kdump.i18n import _ - -__all__ = ["KdumpData"] - -class KdumpData(AddonData): - """Addon data for the kdump configuration""" - - def __init__(self, name): - AddonData.__init__(self, name) - - self.enabled = True - self.reserveMB = "auto" - if getOS() == "fedora": - self.enabled = False - lower, upper, step = getMemoryBounds() - self.reserveMB = "%d" % lower - - def __str__(self): - addon_str = "%%addon %s" % self.name - - if self.enabled: - addon_str += " --enable" - else: - addon_str += " --disable" - - if self.reserveMB: - addon_str += " --reserve-mb='%s'" % self.reserveMB - - addon_str += "\n%s\n%%end\n" % self.content.strip() - - return addon_str - - def setup(self, storage, ksdata, instClass): - # 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='))) - - # Copy our reserved amount to the bootloader arguments - if self.enabled: - # Ensure that the amount is "auto" or an amount in MB - if self.reserveMB != "auto" and self.reserveMB[-1] != 'M': - self.reserveMB += 'M' - ksdata.bootloader.appendLine += ' crashkernel=%s' % self.reserveMB - - # 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 \ - if arg.startswith('crashkernel=')] - storage.bootloader.boot_args -= set(crashargs) - - if self.enabled: - storage.bootloader.boot_args.add('crashkernel=%s' % self.reserveMB) - ksdata.packages.packageList.append("kexec-tools") - - 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("--disable", action="store_false", - dest="enabled", help="Disable kdump") - op.add_option("--reserve-mb", type="string", dest="reserveMB", - default="auto", help="Amount of memory in MB to reserve for kdump, or auto") - - (opts, extra) = op.parse_args(args=args, lineno=lineno) - - # Reject any additional arguments - if extra: - AddonData.handle_header(self, lineno, extra) - - # Validate the reserve-mb argument - if opts.reserveMB != "auto": - # Allow a final 'M' for consistency with the crashkernel kernel - # parameter. Strip it if found. - if opts.reserveMB and opts.reserveMB[-1] == 'M': - opts.reserveMB = opts.reserveMB[:-1] - - try: - _test = int(opts.reserveMB) - except ValueError: - msg = _("Invalid value %s for --reserve-mb") % opts.reserveMB - if lineno != None: - raise KickstartParseError(formatErrorMsg(lineno, msg=msg)) - else: - raise KickstartParseError(msg) - - # Store the parsed arguments - self.enabled = opts.enabled - self.reserveMB =opts.reserveMB - - def execute(self, storage, ksdata, instClass, users): - if self.enabled: - action = "enable" - else: - action = "disable" - - iutil.execWithRedirect("systemctl", [action, "kdump.service"], root=ROOT_PATH) diff --git a/anaconda-addon/com_redhat_kdump/tui/__init__.py b/anaconda-addon/com_redhat_kdump/tui/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/anaconda-addon/com_redhat_kdump/tui/spokes/__init__.py b/anaconda-addon/com_redhat_kdump/tui/spokes/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/anaconda-addon/com_redhat_kdump/tui/spokes/kdump.py b/anaconda-addon/com_redhat_kdump/tui/spokes/kdump.py deleted file mode 100644 index 23e8040..0000000 --- a/anaconda-addon/com_redhat_kdump/tui/spokes/kdump.py +++ /dev/null @@ -1,87 +0,0 @@ -# Kdump anaconda configuration -# -# Copyright (C) 2013 Red Hat, Inc. -# -# This copyrighted material is made available to anyone wishing to use, -# modify, copy, or redistribute it subject to the terms and conditions of -# the GNU General Public License v.2, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY expressed or implied, including the implied warranties of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -# Public License for more details. You should have received a copy of the -# GNU General Public License along with this program; if not, write to the -# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the -# source code or documentation are not subject to the GNU General Public -# License and may only be used or replicated with the express permission of -# Red Hat, Inc. -# -# Red Hat Author(s): David Shea -# - -"""Kdump anaconda TUI configuration""" - -import re - -from pyanaconda.ui.tui.spokes import EditTUISpoke -from pyanaconda.ui.tui.spokes import EditTUISpokeEntry as Entry -from com_redhat_kdump.common import getOS, getMemoryBounds -from com_redhat_kdump.i18n import N_, _ - -__all__ = ["KdumpSpoke"] - -class _re: - def __init__(self, patten, low, up): - self.re = re.compile(patten) - self.low = low - self.up = up - - def match(self, key): - if self.re.match(key): - if key == "auto": - return True - if key[-1] == 'M': - key = key[:-1] - key = int(key) - if key <= self.up and key >= self.low : - return True - return False - -lower, upper ,step = getMemoryBounds() -# Allow either "auto" or a string of digits optionally followed by 'M' -RESERVE_VALID = _re(r'^((auto)|(\d+M?))$', lower, upper) -FEDORA_RESERVE_VALID = _re(r'^(\d+M?)$', lower, upper) - -class KdumpSpoke(EditTUISpoke): - title = N_("Kdump") - category = "system" - - edit_fields = [ - Entry("Enable kdump", "enabled", EditTUISpoke.CHECK, True), - Entry("Reserve amount", "reserveMB", RESERVE_VALID, lambda self,args: args.enabled) - ] - - def __init__(self, app, data, storage, payload, instclass): - if getOS() == "fedora": - KdumpSpoke.edit_fields = [ - Entry("Enable kdump", "enabled", EditTUISpoke.CHECK, True), - Entry("Reserve amount", "reserveMB", FEDORA_RESERVE_VALID, lambda self,args: args.enabled) - ] - - EditTUISpoke.__init__(self, app, data, storage, payload, instclass) - self.args = self.data.addons.com_redhat_kdump - - def apply(self): - pass - - @property - def completed(self): - return True - - @property - def status(self): - if self.args.enabled: - state = _("Kdump is enabled") - else: - state = _("Kdump is disabled") - return state diff --git a/anaconda-addon/po/Makefile b/anaconda-addon/po/Makefile deleted file mode 100644 index b82cca4..0000000 --- a/anaconda-addon/po/Makefile +++ /dev/null @@ -1,75 +0,0 @@ -# -# Makefile for the PO files (translation) catalog -# -# $Id$ - -TOP = ../.. - -# What is this package? -NLSPACKAGE = kdump-anaconda-addon -POTFILE = $(NLSPACKAGE).pot -INSTALL = /usr/bin/install -c -INSTALL_DATA = $(INSTALL) -m 644 -INSTALL_DIR = /usr/bin/install -d - -# destination directory -INSTALL_NLS_DIR = $(DESTDIR)/usr/share/locale -# PO catalog handling -MSGMERGE = msgmerge -v -XGETTEXT = xgettext --default-domain=$(NLSPACKAGE) \ - --add-comments -MSGFMT = msgfmt --statistics --verbose - -# What do we need to do -POFILES = $(wildcard ./*.po) -MOFILES = $(patsubst %.po,%.mo,$(POFILES)) -PYSRC = $(wildcard ../com_redhat_kdump/*.py ../com_redhat_kdump/*/*.py ../com_redhat_kdump/*/*/*.py) -GLADEFILES = $(wildcard ../com_redhat_kdump/gui/spokes/*.glade) - -all:: update-po $(MOFILES) - -potfile: $(PYSRC) glade-po - $(XGETTEXT) -L Python --keyword=_ --keyword=N_ $(PYSRC) tmp/*.h - @if cmp -s $(NLSPACKAGE).po $(POTFILE); then \ - rm -f $(NLSPACKAGE).po; \ - else \ - mv -f $(NLSPACKAGE).po $(POTFILE); \ - fi; \ - rm -rf tmp/ - -glade-po: $(GLADEFILES) - rm -rf tmp/ - for f in $(GLADEFILES); do \ - intltool-extract --type=gettext/glade -l $$f ;\ - done - -update-po: Makefile refresh-po potfile - -refresh-po: Makefile - for cat in $(POFILES); do \ - if $(MSGMERGE) $$cat $(POTFILE) --out=$$cat ; then \ - echo "$(MSGMERGE) of $$cat succeeded" ; \ - else \ - echo "$(MSGMERGE) of $$cat failed" ; \ - fi \ - done - -clean: - @rm -fv *mo *~ .depend - @rm -rf tmp - -install: $(MOFILES) - @for n in $(MOFILES); do \ - l=`basename $$n .mo`; \ - $(INSTALL_DIR) $(INSTALL_NLS_DIR)/$$l/LC_MESSAGES; \ - $(INSTALL_DATA) --verbose $$n $(INSTALL_NLS_DIR)/$$l/LC_MESSAGES/$(NLSPACKAGE).mo; \ - done - -uninstall: - rm -rfv $(INSTALL_NLS_DIR)/*/LC_MESSAGES/$(NLSPACKAGE).mo - -%.mo: %.po - $(MSGFMT) -o $@ $< - -.PHONY: missing depend - diff --git a/anaconda-addon/po/ar.po b/anaconda-addon/po/ar.po deleted file mode 100644 index 9792ce1..0000000 --- a/anaconda-addon/po/ar.po +++ /dev/null @@ -1,79 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: ar\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=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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/as.po b/anaconda-addon/po/as.po deleted file mode 100644 index f69ff39..0000000 --- a/anaconda-addon/po/as.po +++ /dev/null @@ -1,119 +0,0 @@ -# translation of as.po to Assamese -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Amitakhya Phukan , 2007. -# ngoswami , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-11 03:18-0500\n" -"Last-Translator: ngoswami \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" -"Plural-Forms: nplurals=2; plural=(n!=1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 এটা কাৰনেলৰ বিজুতি জমা কৰাৰ যন্ত্ৰকৌশল। চিস্টেমৰ বিজুতিৰ ঘটনাত, kdump এ " -"আপোনাৰ চিস্টেমৰ পৰা তথ্য গ্ৰহণ কৰিব যি বিজুতিৰ কাৰণ গম পোৱাত অমূল্য হ'ব। মন কৰিব " -"যে kdump ক চিস্টেমৰ মেমৰি এটা অংশ সংৰক্ষণ কৰিব যি অন্য কাৰ্য্যৰ বাবে পোৱা নাযাব।" - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "সংৰক্ষণ কৰিবলে মেমৰি (MB) (_R):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "চিস্টেমৰ মুঠ মেমৰি (MB) :" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "ব্যৱহাৰযোগ্য চিস্টেমৰ মেমৰি (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdump সামৰ্থবান কৰিব নে (_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump ৰ মেমৰি সংৰক্ষণ:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "স্বচালিত (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/bg.po b/anaconda-addon/po/bg.po deleted file mode 100644 index d0878d4..0000000 --- a/anaconda-addon/po/bg.po +++ /dev/null @@ -1,118 +0,0 @@ -# translation of bg.pot to Bulgarian -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Doncho N. Gunchev , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-03-12 12:47-0400\n" -"Last-Translator: Doncho N. Gunchev \n" -"Language-Team: Bulgarian >\n" -"Language: bg\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 механизъм за стоварване (запис) на ядрото при блокиране. В случай на " -"блокиране, kdump ще прихване информация от вашата система, която може да " -"бъде незаменима при откриване причината за това. Забележете, че kdump " -"изисква резервиране на част от системната памет, която няма да бъде достъпна " -"за други цели." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Общо системна памет (МБ):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Използваема системна памет (МБ):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump памет (МБ):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "За съжаление вашата система няма достатъчно памет за да бъде kdump " -#~ "приложим!" - -#, fuzzy -#~ 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 за момента!" - -#, 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 "" -#~ "Промяната на настройките на Kdump изисква рестартиране на системата за " -#~ "заделяне на съответстваща памет. %sЖелаете ли да продължите с тази " -#~ "промяна и рестарт на системата след приключване на firstboot?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Грешка! Не е намерен конфигурационния файл за начално зареждане, " -#~ "конфигурацията няма да продължи!" diff --git a/anaconda-addon/po/bn.po b/anaconda-addon/po/bn.po deleted file mode 100644 index 345c340..0000000 --- a/anaconda-addon/po/bn.po +++ /dev/null @@ -1,78 +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-05-08 15:52+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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/bn_IN.po b/anaconda-addon/po/bn_IN.po deleted file mode 100644 index e2dc241..0000000 --- a/anaconda-addon/po/bn_IN.po +++ /dev/null @@ -1,124 +0,0 @@ -# translation of bn_IN.po to Bengali (India) -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# -# Runa Bhattacharjee , 2007. -# translation of bn_IN.po to Bengali INDIA -# Runa Bhattacharjee , 2007, 2010. -# sray , 2013. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2013-12-03 12:14-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" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 মূলত কার্নেল বিপর্যের সময়কার ডাম্পিং ব্যবস্থা। সিস্টেম বিপর্যস্ত হলে kdump " -"আপনার সিস্টেমের তথ্য সংগ্রহ করবে। বিপর্যয়ের কারণ নির্ণয়ের সময় এই তথ্য অত্যন্ত সহায়ক " -"প্রমাণিত হতে পারে। উল্লেখ্য, kdump-র ক্ষেত্রে সিস্টেম মেমরির একাংশ বরাদ্দ করা " -"আবশ্যক। এই অংশটি অন্যান্য ব্যবহারকারীদের নাগালের বাইরে থাকবে।" - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "যত মেমরি সংরক্ষণ করতে হবে (_R) (MB):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "সিস্টেমে উপস্থিত সর্বমোট মেমরি(মেগাবাইট):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "সিস্টেমের ব্যবহারযোগ্য মেমরি (মেগাবাইট):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdump সক্রিয় করা হবে কি?(_E)" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump মেমরি সংরক্ষণ:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "স্বয়ংক্রিয় (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/bs.po b/anaconda-addon/po/bs.po deleted file mode 100644 index be80936..0000000 --- a/anaconda-addon/po/bs.po +++ /dev/null @@ -1,79 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: bs\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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/ca.po b/anaconda-addon/po/ca.po deleted file mode 100644 index d915e0f..0000000 --- a/anaconda-addon/po/ca.po +++ /dev/null @@ -1,114 +0,0 @@ -# Catalan translations for Kdump. -# Copyright © 2007 The Free Software Foundation, Inc. -# This file is distributed under the same license as the Kdump package. -# Josep Puigdemont , 2007 -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-03-10 10:56-0500\n" -"Last-Translator: Josep Puigdemont \n" -"Language-Team: Catalan \n" -"Language: ca\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 "" -"El kdump és un mecanisme de bolcat per al nucli. Si el sistema es penja, el " -"kdump en capturarà informació que pot ser molt valuosa per a determinar la " -"causa de la fallada. El kdump requereix que es reservi una porció de la " -"memòria del sistema, que altres aplicacions no podran emprar." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "Mmemòria _total del sistema (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "Memòria _usable del sistema (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "Memòria del _kdump (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "El sistema no té prou memòria per al kdump." - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "De moment els nuclis Xen no són compatibles amb el kdump." - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "De moment l'arquitectura %s no és compatible amb el 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 "" -#~ "Per canviar els paràmetres del Kdump cal que es reiniciï el sistema, i " -#~ "poder ubicar la memòria que li calgui.%s Voleu continuar amb aquest canvi " -#~ "i reiniciar el sistema després que s'hagi completat la primera arrencada?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "S'ha produït un error, no s'ha trobat cap fitxer de configuració del " -#~ "carregador de l'arrencada; S'interromprà la configuració." diff --git a/anaconda-addon/po/cs.po b/anaconda-addon/po/cs.po deleted file mode 100644 index ebef8cb..0000000 --- a/anaconda-addon/po/cs.po +++ /dev/null @@ -1,114 +0,0 @@ -# Czech translation of kexec-tools. -# Copyright (C) 2007 FSF -# This file is distributed under the same license as the kexec-tools package. -# Milan Kerslager , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-03-08 07:29-0500\n" -"Last-Translator: Milan Kerslager \n" -"Language-Team: Czech \n" -"Language: cs\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 nástroj pro zaznamenání stavu systému při havárii (pádu systému). " -"Dojde-li k havárii, kdump zaznamená stav systému, což může mít " -"nepostradatelný význam při zjišťování její příčiny. Upozorňujeme, že kdump " -"vyžaduje pro svoji činnost vyhrazení části systémové paměti, kterou pak " -"nelze při normálním běhu systému využít." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Celkem paměťi (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "Paměť pro _systém (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "Paměť pro _kdump (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "Pro kdump není dostatek paměti!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Xen jádro zatím kdump nepodporuje!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Architektura %s zatím kdump nepodporuje!" - -#, 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 "" -#~ "Změna nastavení Kdump vyžaduje restart systému, aby mohla být alokována " -#~ "potřebná paměť %s. Chcete systém po dokončení nastavení restartovat a " -#~ "aktivovat tak provedené změny?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Chyba! Nenalezena konfigurace zavaděče systému, konfigurace přerušena!" diff --git a/anaconda-addon/po/cy.po b/anaconda-addon/po/cy.po deleted file mode 100644 index 0d9a180..0000000 --- a/anaconda-addon/po/cy.po +++ /dev/null @@ -1,79 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: cy\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=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " -"11) ? 2 : 3\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/da.po b/anaconda-addon/po/da.po deleted file mode 100644 index f22ab8c..0000000 --- a/anaconda-addon/po/da.po +++ /dev/null @@ -1,116 +0,0 @@ -# translation of da.po to -# Copyright (C) 2006, 2007 Free Software Foundation, Inc. -# Magnus Larsson , 2007. -# Keld Simonsen , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-04-14 06:14-0400\n" -"Last-Translator: Keld Simonsen \n" -"Language-Team: \n" -"Language: da\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 er en ny mekanisme for dumpning vedn kernenedbrud. I tilfælde af et " -"systemnedbrud kan en core-fil blive opfanget ved hjælp af kdump, som kan " -"være uvurderligt til at bestemme årsagen til et systemnedbrud. Bemærk at " -"kdump kræver reservering af en del af systemhukommelsen som vil være " -"utilgængelig for anden brug." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Total systemhukommelse (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Total brugelig systemhukommelse (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump-hukommelse (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "Desværre har dette system ikke nok hukommelse for at kdump er brugbart!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Desværre understøtter Xen-kerner ikke kdump for nærværende!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Desværre understøtter %s-arkitekturen ikke kdump for nærværende!" - -#, 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 "" -#~ "Ændring af indstillinger for Kdump kræver genstart af systemet for at " -#~ "gentildele hukommelse. %s Vil du fortsætte med denne ændring og genstarte " -#~ "systemet efter firstboot er klar?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Fejl! Ingen konfigurationsfil for opstartsprogrammet blev fundet, " -#~ "afbryder konfigurering!" diff --git a/anaconda-addon/po/de.po b/anaconda-addon/po/de.po deleted file mode 100644 index c70bee7..0000000 --- a/anaconda-addon/po/de.po +++ /dev/null @@ -1,127 +0,0 @@ -# translation of de.po to -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# -# PGP-KeyID: 0x037FD3CF , 2007. -# hedda , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 11:45-0500\n" -"Last-Translator: hedda \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" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 ist ein Mechanismus zur Aufzeichnung (dumping) eines Kernel-Absturzes. " -"Bei einem Systemabsturz sammelt kdump Informationen Ihres Systems, die " -"außerordentlich wertvoll bei der Ursachenforschung sein können. Beachten Sie " -"bitte, dass kdump eine bestimmte Menge an Systemspeicher beansprucht, der " -"für andere Zwecke nicht zur Verfügung steht." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "Zu _reservierender Speicher (MB)" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "Gesamter Systemspeicher (MB)" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "Verwendbarer Systemspeicher (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "Kdump aktivi_eren?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump-Speicherreservierung:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "_Automatisch" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/el.po b/anaconda-addon/po/el.po deleted file mode 100644 index e5d23f2..0000000 --- a/anaconda-addon/po/el.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: el\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/en_GB.po b/anaconda-addon/po/en_GB.po deleted file mode 100644 index a931099..0000000 --- a/anaconda-addon/po/en_GB.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: en-GB\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/es.po b/anaconda-addon/po/es.po deleted file mode 100644 index 70acb11..0000000 --- a/anaconda-addon/po/es.po +++ /dev/null @@ -1,129 +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. -# translation of es.po to Spanish -# -# Gladys Guerrero , 2010. -# gguerrer , 2013. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2013-12-01 07:35-0500\n" -"Last-Translator: gguerrer \n" -"Language-Team: Spanish \n" -"Language: es\n" -"MIME-Version: 1.0\n" -"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" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 es un mecanismo de volcado de fallos del kernel. En el evento de una " -"falla del sistema, kdump capturará la información de su sistema que puede " -"ser invaluable para la determinación de la causa del fallo. Observe que " -"kdump no requiere reservar una porción de memoria del sistema que no estará " -"disponible para otros usos." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "Memoria que va a ser _Reservada (MB):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "Memoria _Total del Sistema (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "Memoria del sistema utilizable (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "_Habilitar kdump?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Reserva de memoria de Kdump (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "_Automática" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/et.po b/anaconda-addon/po/et.po deleted file mode 100644 index 39512cb..0000000 --- a/anaconda-addon/po/et.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: et\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/fa.po b/anaconda-addon/po/fa.po deleted file mode 100644 index 81919d0..0000000 --- a/anaconda-addon/po/fa.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: fa\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=1; plural=0\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/fi.po b/anaconda-addon/po/fi.po deleted file mode 100644 index 7db83e5..0000000 --- a/anaconda-addon/po/fi.po +++ /dev/null @@ -1,115 +0,0 @@ -# Finnish translation of firstboot_kdump -# This file is distributed under the same license as the firstboot_kdump package. -# -# Ville-Pekka Vainio , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-03-09 05:37-0500\n" -"Last-Translator: Ville-Pekka Vainio \n" -"Language-Team: Finnish \n" -"Language: fi\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=2; plural=(n != 1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 on järjestelmä, jolla ytimen kaatumisesta saa vedoksen. Järjestelmän " -"kaatuessa kdump hankkii järjestelmästä tietoja, jotka voivat olla tärkeitä " -"kaatumisen syytä selvitettäessä. Huomaa, että kdumpille on varattava " -"järjestelmän muistista osa, jota ei voi käyttää muuhun." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Järjestelmän muistin kokonaismäärä (Mt):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Käytettävänä oleva järjestelmän muisti (Mt):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump-muisti (Mt):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "Järjestelmässä ei ole riittävästi muistia kdumpin toimintaan!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Xen-ytimet eivät tue Kdumpia tällä hetkellä!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "%s-arkkitehtuuri ei tue kdumpia tällä hetkellä!" - -#, 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 "" -#~ "Kdumpin asetusten muuttaminen vaatii järjestelmän uudelleenkäynnistyksen, " -#~ "jotta muistia voidaan varata. %s. Jatketaanko tätä muutosta ja " -#~ "käynnistetäänkö järjestelmä uudelleen sen jälkeen, kun firstboot on " -#~ "valmis?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Virhe! Käynnistyslataimen asetustiedostoa ei löydy, keskeytetään " -#~ "asetusten teko!" diff --git a/anaconda-addon/po/fr.po b/anaconda-addon/po/fr.po deleted file mode 100644 index 9d38eeb..0000000 --- a/anaconda-addon/po/fr.po +++ /dev/null @@ -1,129 +0,0 @@ -# translation of fr.po to French -# translation of fr.po to -# 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 -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 01:40-0500\n" -"Last-Translator: samfreemanz \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" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 est un mécanisme de capture lors du plantage d'un noyau. Kdump capture " -"les informations de votre système qui peuvent être cruciales pour aider à " -"déterminer la cause de l'échec. Notez que kdump requiert une partie de la " -"mémoire système qui sera indisponible pour d'autres utilisations." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "Mémoire à _réserver (en Mo) :" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "Mémoire totale du système (en Mo) :" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "Mémoire utilisable du système (en Mo) :" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "_Activer kdump ?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Réservation de la mémoire Kdump (en Mo) :" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "_Automatique" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/gu.po b/anaconda-addon/po/gu.po deleted file mode 100644 index 06cf525..0000000 --- a/anaconda-addon/po/gu.po +++ /dev/null @@ -1,120 +0,0 @@ -# translation of gu.po to Gujarati -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# -# Ankit Patel , 2007. -# Sweta Kothari , 2010. -# Ankit Patel , 2013. #zanata -# swkothar , 2013. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2013-11-29 04:47-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" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 એ કર્નલ ક્રેશ ડમ્પીંગ પદ્ધતિ છે. સિસ્ટમ ભંગાણની ઘટનામાં, kdump તમારી સિસ્ટમમાંથી " -"જાણકારી પ્રાપ્ત કરશે કે જે ભંગાણનું કારણ નક્કી કરવા માટે અમૂલ્ય હોઈ શકે. નોંધ લો કે kdump " -"સિસ્ટમ મેમરીના ભાગને આરક્ષિત રાખવા માટે જરૂરી છે કે જે અન્ય વપરાશો માટે ઉપલબ્ધ રહેશે નહિં." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "સુરક્ષિત માપ રાખવા માટે મેમરી (MB):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "કુલ સિસ્ટમ મેમરી (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "ઉપયોગી સિસ્ટમ મેમરી (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "શું kdump સક્રિય કરવું છે (_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump મેમરી આરક્ષણ:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "આપોઆપ (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/he.po b/anaconda-addon/po/he.po deleted file mode 100644 index 915895b..0000000 --- a/anaconda-addon/po/he.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: he\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/hi.po b/anaconda-addon/po/hi.po deleted file mode 100644 index 7b07efd..0000000 --- a/anaconda-addon/po/hi.po +++ /dev/null @@ -1,119 +0,0 @@ -# translation of hi.po to Hindi -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# hi , 2007. -# Rajesh Ranjan , 2007, 2010. -# rajesh , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-13 06:42-0500\n" -"Last-Translator: rajesh \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" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 एक कर्नेल क्रैश डंपिंग यांत्रिकी है. तंत्र क्रैश की स्थिति में, kdump सूचना लेगा आपके तंत्र " -"से जो कि क्रैश निर्धारण में मूल्यवान होगा. नोट करें कि kdump के लिये तंत्र स्मृति का आरक्षित " -"हिस्सा जरूरी है जो कि अन्य प्रयोग के लिये अनुपलब्ध रहेगा." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "स्मृति वापस करने के लिए (_R) (MB):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "कुल तंत्र स्मृति (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "प्रयोज्य तंत्र स्मृति (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdump सक्रिय करें? (_E)" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump स्मृति आरक्षण:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "स्वचालित (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/hr.po b/anaconda-addon/po/hr.po deleted file mode 100644 index ed9139d..0000000 --- a/anaconda-addon/po/hr.po +++ /dev/null @@ -1,121 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-07-02 02:20-0400\n" -"Last-Translator: Renato Pavicic translator-shop.org>\n" -"Language-Team: LANGUAGE \n" -"Language: hr\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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 ispisivanja pada kernela. U slučaju pada sustava, Kdump " -"će snimiti podatke vašeg sustava koji bi mogli biti od neprocjenjive " -"važnosti za određivanje uzroka pada. Napomena: Kdump ne zahtjeva " -"rezerviranje dijela memorije sustava koja bi u tom slučaju bila nedostupna " -"ostalim potrebama." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "Ukupna _memorija sustava (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Upotrebljiva memorija sustava (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "_Omogućiti kdump?" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump memorija (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "Nažalost, vaš sustav ne raspolaže s dovoljno memorije radi omogućavanja " -#~ "rada modula Kdump!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "" -#~ "Nažalost, ia64 Xen kerneli u ovom trenutku ne pružaju podršku za kdump." - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Nažalost, arhitektura %s u ovom trenutku ne pruža podršku za 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 "" -#~ "Promjena postavki modula Kdump potražuje ponovno pokretanje sustava radi " -#~ "odgovarajućeg dodjeljivanja memorije %s \n" -#~ "\n" -#~ "Želite li nastaviti s postojećim postavkama i sustav ponovno pokrenuti " -#~ "nakon što dovršenja postupka firstboot?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Pogreška! Konfiguracijska datoteka pokretača nije pronađena. " -#~ "Konfiguriranje se prekida!" diff --git a/anaconda-addon/po/hu.po b/anaconda-addon/po/hu.po deleted file mode 100644 index efe4d2a..0000000 --- a/anaconda-addon/po/hu.po +++ /dev/null @@ -1,115 +0,0 @@ -# Hungarian translations for firstboot-kdump package. -# Copyright (C) 2006 Red Hat, Inc. -# This file is distributed under the same license as the firstboot-kdump package. -# Automatically generated, 2006. -# Péter Sulyok , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-03-13 04:23-0400\n" -"Last-Translator: Péter Sulyok \n" -"Language-Team: Hungarian \n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Zanata 2.0.2\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 egy kernelösszeomlási lerakó mechanizmus. Renszerösszeomlás esetén " -"kdump információkat gyűjt a rendszerről, ami nagyon értékes lehet az " -"összeomlás okának felderítésekor. Vegye észre, hogy kdump igényli a tár egy " -"részének fenntartását, ami más célra elérhetetlen." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Teljes rendszertár (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Használható rendszertár (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump tár (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "Sajnos, ez a rendszer nem rendelkezik elég memóriával kdump " -#~ "működtetéséhez!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Sajnos, Xen kernelek jelenleg nem támogatják kdumpot!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Sajnos, a %s architektúra jelenleg nem támogatja kdumpot!" - -#, 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 "" -#~ "Kdump beállításának megváltoztatása a rendszer újraindítását igényli a " -#~ "tár megfelelő újrafoglalásához. %s Szeretné folytatni e változtatással, " -#~ "és újraindítani a rendszert, miután firstboot végzett?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "Hiba! Nincs bootloader konfigfájl, konfigurálás abbahagyva!" diff --git a/anaconda-addon/po/hy.po b/anaconda-addon/po/hy.po deleted file mode 100644 index 345c340..0000000 --- a/anaconda-addon/po/hy.po +++ /dev/null @@ -1,78 +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-05-08 15:52+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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/id.po b/anaconda-addon/po/id.po deleted file mode 100644 index 779083d..0000000 --- a/anaconda-addon/po/id.po +++ /dev/null @@ -1,114 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-04-20 04:08-0400\n" -"Last-Translator: Erwien Samantha Y \n" -"Language-Team: LANGUAGE \n" -"Language: id\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=1; plural=0\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 adalah mekasih untuk dumping kernel yang crash. Kejadian dalam sistem " -"yang gagak, kdump akan mengambil informasi yang bisa berguna untuk " -"mendetermasi penyebab dari kegagalan sistem anda. Dengan catatan bahwa kdump " -"memerlukan alokasi memory yang cukup yang menyebabkan kegiatan lain tidak " -"bisa dilakukan dulu." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Total Memory Sistem (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Usable Memory Sistem (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump Memory (MB(:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "Maaf, sistem anda tidak mempunyai cukup memory untuk menjalakan kdump!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Maaf, Kernel Xen tidak didukung Kdump saat ini!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Maaf, Arsitektur %s tidak mendukung kdump saat ini!" - -#, 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 "" -#~ "Perubahan dari konfigurasi Kdump memerlukan boot ulang sistem anda untuk " -#~ "pengalokasian memori secara benar. %s Apa anda ingin melanjutkan dengan " -#~ "konfigurasi yang baru dan boot lagi sustem setelah fisrboot selesai?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "Error! No bootloader config file found, aborting configuration!" diff --git a/anaconda-addon/po/is.po b/anaconda-addon/po/is.po deleted file mode 100644 index e48bd5d..0000000 --- a/anaconda-addon/po/is.po +++ /dev/null @@ -1,115 +0,0 @@ -# Íslensk þýðing kexec-tools -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# Richard Allen , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-04-24 10:50-0400\n" -"Last-Translator: Richard Allen \n" -"Language-Team: is \n" -"Language: is\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=2; plural=(n%10!=1 || n%100==11)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 grípur kjarnahrun. Ef svo illa fer að kjarninn hrynur mun kdump grípa " -"upplýsingar frá vélinni þinni sem geta reynst ómetanlegar til að elta uppi " -"skýringar á hruninu. Athugaðu að kdump þarf að taka frá hluta vinnsluminnis " -"vélarinnar sem verður þá ónothæft fyrir aðra hluti á vélinni." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "Heildar_minni (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Nothæft minni (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump minni (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "Því miður hefur vélin þín ekki nóg minni til að raunhæft sé að nota kdump!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Því miður eru Xen kjarnar ekki studdir af kdump þessa stundina!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Því miður er %s vélbúnaðurinn ekki studdur af kdump þessa stundina!" - -#, 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 "" -#~ "Ef þú breytir stillingum kdump þarftu að endurræsa til að taka frá minni " -#~ "samkvæmt nýju stillingunum. %sViltu halda áfram og breyta þessu og " -#~ "endurræsa svo vélinni þegar firstboot hefur lokið keyrslu?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Villa! Engin stillingaskrá fyrir ræsistjórann fannst. Hætti við " -#~ "stillingar!" diff --git a/anaconda-addon/po/it.po b/anaconda-addon/po/it.po deleted file mode 100644 index bdadb8a..0000000 --- a/anaconda-addon/po/it.po +++ /dev/null @@ -1,125 +0,0 @@ -# translation of it.po to -# translation of it.po to -# translation of it.po to -# translation of it.po to italiano -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# Francesco Tombolini , 2007. -# fvalen , 2013. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2013-12-01 07:00-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" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 è un meccanismo di crash dumping del kernel. In caso di crash del " -"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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "Memoria da _Riservare (MB):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "Memoria del sistema totale (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "Memoria del Sistema Utilizzabile (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "_Abilita kdump?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Prenotazione Memoria di Kdump (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "_Automatico" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/ja.po b/anaconda-addon/po/ja.po deleted file mode 100644 index db898ff..0000000 --- a/anaconda-addon/po/ja.po +++ /dev/null @@ -1,124 +0,0 @@ -# translation of ja.po to Japanese -# translation of ja.po to -# translation of ja.po to -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# -# kiyoto james hashida , 2007. -# Kiyoto Hashida , 2007, 2010. -# noriko , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 09:59-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" -"Plural-Forms: Plural-Forms: nplurals=2; plural=(n!=1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 はカーネルクラッシュダンプのメカニズムです。システムがクラッシュした場" -"合、 Kdump はシステムからそのクラッシュの原因を判定するために重要となる可能性" -"のある情報をキャプチャします。kdump には kdump 以外では使用できない部分をシス" -"テムメモリー内に予約しておく必要があるため注意して下さい。" - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "予約されるメモリー (MB):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "合計システムメモリー (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "使用可能なシステムメモリー (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdump を有効にしますか (_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump メモリー予約:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "自動 (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/ka.po b/anaconda-addon/po/ka.po deleted file mode 100644 index e7f6be6..0000000 --- a/anaconda-addon/po/ka.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: ka\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=1; plural=0\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/kdump-anaconda-addon.pot b/anaconda-addon/po/kdump-anaconda-addon.pot deleted file mode 100644 index 3b9b641..0000000 --- a/anaconda-addon/po/kdump-anaconda-addon.pot +++ /dev/null @@ -1,81 +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-04-09 15:07+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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:138 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:140 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:43 -msgid "_KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:1 tmp/kdump.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 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/fedora.glade.h:3 tmp/kdump.glade.h:7 -msgid "Memory To Be Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/kdump.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/kdump.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/kdump.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/kdump.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/kdump.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/kdump.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/kn.po b/anaconda-addon/po/kn.po deleted file mode 100644 index f837ae6..0000000 --- a/anaconda-addon/po/kn.po +++ /dev/null @@ -1,124 +0,0 @@ -# translation of kn.po to Kannada -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Shankar Prasad , 2007, 2010. -# shanky , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 07:26-0500\n" -"Last-Translator: shanky \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" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 ಎನ್ನುವುದು ಕರ್ನಲ್ಲಿನ ಕುಸಿತವನ್ನು ಬಿಸುಡುವ ಒಂದು ಯಾಂತ್ರಿಕ ವ್ಯವಸ್ಥೆ. ಗಣಕವು " -"ಕುಸಿತಕ್ಕೊಳಗಾದ ಸಂದರ್ಭದಲ್ಲಿ, kdump ಕುಸಿತದ ಕಾರಣವನ್ನು ನಿರ್ಧರಿಸುವ ಅಮೂಲ್ಯ ಮಾಹಿತಿಯನ್ನು " -"ನಿಮ್ಮ ಗಣಕದಿಂದ ಹಿಡಿದಿಟ್ಟುಕೊಳ್ಳುತ್ತದೆ. ಇಲ್ಲಿ ನೆನಪಿನಲ್ಲಿಡಬೇಕಾದ ಅಂಶವೆಂದರೆ, kdump ಗಾಗಿ " -"ಗಣಕದ ಮೆಮೊರಿಯಲ್ಲಿನ ಒಂದಂಶವನ್ನು ಕಾದಿರಿಸುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ ಹಾಗು ಈ ಮೆಮೊರಿಯು " -"ಬೇರಾವುದೇ ಬಳಕೆಗೆ ಬರುವುದಿಲ್ಲ." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "ಕಾದಿರಿಸಬೇಕಿರುವ ಮೆಮೊರಿ (MB) (_R):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "ಗಣಕದ ಒಟ್ಟಾರೆ ಮೆಮೊರಿ (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "ಗಣಕದ ಬಳಸಬಹುದಾದಂತಹ ಮೆಮೊರಿ (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdump ಅನ್ನು ಶಕ್ತಗೊಳಿಸಬೇಕೆ (_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump ಮೆಮೊರಿ ಕಾದಿರಿಸುವಿಕೆ:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "ಸ್ವಯಂಚಾಲಿತ (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/ko.po b/anaconda-addon/po/ko.po deleted file mode 100644 index e940e49..0000000 --- a/anaconda-addon/po/ko.po +++ /dev/null @@ -1,122 +0,0 @@ -# translation of ko.po to Korean -# translation of ko.po to -# translation of ko.po to -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER, 2007. -# -# Eunju Kim , 2007. -# Hyunsok Oh , 2010. -# eukim , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 08:25-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" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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는 커널 충돌 덤프 기술입니다. 시스템 충돌 시, kdump는 충돌의 원인을 파악" -"하는데 유용한 시스템 정보를 캡쳐합니다.kdump는 시스템 메모리의 한 부분을 차지" -"하며, 이 부분은 다른 목적으로 사용할 수 없음을 알려드립니다." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "예약 메모리 (MB) (_R):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "전체 시스템 메모리 (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "사용 가능한 시스템 메모리 (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdump를 활성화하겠습니까?(_E)" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump 메모리 예약:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "자동 (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/ku.po b/anaconda-addon/po/ku.po deleted file mode 100644 index 345c340..0000000 --- a/anaconda-addon/po/ku.po +++ /dev/null @@ -1,78 +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-05-08 15:52+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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/lo.po b/anaconda-addon/po/lo.po deleted file mode 100644 index 345c340..0000000 --- a/anaconda-addon/po/lo.po +++ /dev/null @@ -1,78 +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-05-08 15:52+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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/lv.po b/anaconda-addon/po/lv.po deleted file mode 100644 index 47efd09..0000000 --- a/anaconda-addon/po/lv.po +++ /dev/null @@ -1,79 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: lv\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 != 0 ? 1 : " -"2)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/mk.po b/anaconda-addon/po/mk.po deleted file mode 100644 index 345c340..0000000 --- a/anaconda-addon/po/mk.po +++ /dev/null @@ -1,78 +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-05-08 15:52+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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/ml.po b/anaconda-addon/po/ml.po deleted file mode 100644 index fd121de..0000000 --- a/anaconda-addon/po/ml.po +++ /dev/null @@ -1,119 +0,0 @@ -# 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, 2010. -# anipeter , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-13 03:50-0500\n" -"Last-Translator: anipeter \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" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 . സിസ്റ്റത്തില്‍ ഒരു തകരാറു സംഭവിച്ചാല്‍, അതിനുളള " -"കാരണം എന്തെന്ന് കണ്ടുപിടിക്കുന്നതിനുളള കാര്യവിവരങ്ങള്‍ kdump-നു് ലഭ്യമാകുന്നു. കുറിപ്പ്: മറ്റു് " -"ഉപയോക്താക്കള്‍ക്കു് ലഭ്യമല്ലാത്ത സിസ്റ്റത്തിന്റെ ഒരു ഭാഗം മെമ്മറി kdump-നു് ആവശ്യമുണ്ട്." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "കരുതിവയ്ക്കേണ്ട മെമ്മറി (MB) :" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "സിസ്റ്റത്തിന്റെ പൂര്‍ണ്ണ മെമ്മറി (MB) :" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "സിസ്റ്റത്തില്‍ ഉപയോഗപ്രദമായ മെമ്മറി (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdump പ്രവര്‍ത്തന സജ്ജമാക്കണമോ (_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump മെമ്മറി കരുതല്‍:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "_ഓട്ടോമാറ്റിക്ക്" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/mr.po b/anaconda-addon/po/mr.po deleted file mode 100644 index c2028fc..0000000 --- a/anaconda-addon/po/mr.po +++ /dev/null @@ -1,120 +0,0 @@ -# translation of mr.po to Marathi -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# sandeep shedmake , 2007. -# Sandeep Shedmake , 2010. -# sandeeps , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-10 02:52-0500\n" -"Last-Translator: sandeeps \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" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "केडम्प" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 आपल्या " -"प्रणालीतील अतीमहत्वाची माहिती ज्यामुऴे आणीबाणी चे कारण शोधण्यास मदत मिळते. लक्षात घ्या " -"kdump ला प्रणाली स्मृत्तीचे आरक्षण हवे असते जे इतर वापरकर्त्यांना अनुपलब्ध राहतील." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "आरक्षित करणेजोगी मेमरी (MB) (_R):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "एकूण प्रणालीची मेमरी (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "वापरतायेण्याजोगी प्रणाली मेमरी (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "केडम्प सुरू करा (_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "केडम्प मेमरी आरक्षण (MB) (_K):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "स्वयंचलित (_A)" - -#: tmp/RHEL.glade.h:6 -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 फाइल सापडली नाही, संरचना रद्द करीत आहे!" diff --git a/anaconda-addon/po/ms.po b/anaconda-addon/po/ms.po deleted file mode 100644 index 39b2f84..0000000 --- a/anaconda-addon/po/ms.po +++ /dev/null @@ -1,115 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-04-13 11:22-0400\n" -"Last-Translator: Sharuzzaman Ahmat Raslan \n" -"Language-Team: LANGUAGE \n" -"Language: ms\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=1; plural=0\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 adalah mekanisme longgokan kerosakan kernel. Dalam kejadian kerosakan " -"sistem, kdump akan mendapatkan maklumat dari sistem anda yang mungkin " -"berharga dalam menentukan sebab kerosakan tersebut. Diingatkan bahawa kdump " -"perlu mengkhaskan sebahagian memori sistem yang tidak boleh digunakan untuk " -"kegunaan lain." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "Jumlah Memori Sis_tem (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Memori Sistem Bolehguna (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "Memori _Kdump (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "Maaf, sistem anda tidak mempunyai memori yang cukup untuk kdump menjadi " -#~ "berguna!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Maaf, kernel Xen tidak menyokong kdump pada ketika ini!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Maaf, rekabentuk %s tidak menyokong kdump pada ketika ini!" - -#, 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 "" -#~ "Menukar tetapan Kdump memerlukan ulangboot sistem untuk mengumpukkan " -#~ "semula memori. %s Adakah anda hendak meneruskan dengan perubahan ini dan " -#~ "ulangboot sistem selepas firstboot selesai?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "Ralat! Tiada fail tetapan pemuat but dijumpai, membatalkan tetapan!" diff --git a/anaconda-addon/po/my.po b/anaconda-addon/po/my.po deleted file mode 100644 index 345c340..0000000 --- a/anaconda-addon/po/my.po +++ /dev/null @@ -1,78 +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-05-08 15:52+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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/nb.po b/anaconda-addon/po/nb.po deleted file mode 100644 index 9607113..0000000 --- a/anaconda-addon/po/nb.po +++ /dev/null @@ -1,113 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-04-26 07:42-0400\n" -"Last-Translator: Espen A. Stefansen \n" -"Language-Team: Norwegian/Bokmaal \n" -"Language: nb\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 er en mekanisme for logging av kjernekrasjer. Om et systemkrasj " -"inntreffer, vil kdump samle informasjonen fra ditt system som kan væra " -"verdifullt for å bestemma grunnene til krasjet. Legg merke til at kdump " -"reserverer en del av systemminnet som ikke kan brukes til noe annet." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Totalt systemminne (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Brukbart systemminne (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump-minne (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "Dessverre, ditt system har ikke nok minne for at kdump kan brukes!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Dessverre, Xen-kjerner støtter ikke kdump for øyeblikket!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Dessverre, %s-arkitekturen støtter ikke kdump for øyeblikket!" - -#, 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 "" -#~ "Endringer av Kdump-innstillinger krever omstart av systemet for å " -#~ "omallokere minnet. %sVil du fortsette med denne endringen og starte " -#~ "systemet på nytt etter at firstboot er ferdig?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Feil! Ingen konfigurasjonsfil ble funnet for startprogrammet, avbryter " -#~ "konfigurasjonen!" diff --git a/anaconda-addon/po/nl.po b/anaconda-addon/po/nl.po deleted file mode 100644 index eb0edda..0000000 --- a/anaconda-addon/po/nl.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: nl\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/or.po b/anaconda-addon/po/or.po deleted file mode 100644 index 808b34d..0000000 --- a/anaconda-addon/po/or.po +++ /dev/null @@ -1,122 +0,0 @@ -# translation of or.po to Oriya -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Subhransu Behera , 2007. -# Subhransu Behera , 2007. -# Manoj Kumar Giri , 2010. -# mgiri , 2012. #zanata -# yangrr , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-20 10:06-0500\n" -"Last-Translator: yangrr \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" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 କର୍ଣ୍ଣଲ ଅକାମି ହେବା ସମୟରେ ତଥ୍ଯ ରଖିବାର ଗୋଟିଏ କୌଶଳ ଅଟେ। ଗୋଟିଏ ତନ୍ତ୍ର ଅକାମି ହେବା " -"ସମୟରେ, kdump ଆପଣଙ୍କ ତନ୍ତ୍ରରୁ ସୂଚନା ଗ୍ରହଣ କରିବ ଯାହାକି ଅକାମି ହେବାର କାରଣ ଖୋଜିବାରେ ଅମୂଲ୍ଯ " -"ଅଟେ। ଏହା ମନେ ରଖନ୍ତୁ ଯେ kdump ତନ୍ତ୍ର ସ୍ମୃତିର ଗୋଟିଏ ଅଂଶର ସଂରକ୍ଷଣ ଆବଶ୍ଯକ କରି ନ ଥାଏ ଯାହାକି " -"ଅନ୍ଯାନ୍ଯ ଚାଳକ ମାନଙ୍କ ପାଇଁ ଅନୁପଲବ୍ଧ ହେବ।" - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "ସଂରକ୍ଷଣ କରିବାକୁ ଥିବା ସ୍ମୃତିସ୍ଥାନ (MB) (_R):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "ସମୁଦାୟ ତନ୍ତ୍ର ସ୍ମୃତି (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "ବ୍ଯବହାର ଯୋଗ୍ଯ ତନ୍ତ୍ର ସ୍ମୃତି (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdump କୁ ସକ୍ରିୟ କରାଯିବ କି (_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump ସ୍ମୃତି ସଂରକ୍ଷଣ:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "ସ୍ୱୟଂଚାଳିତ (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/pa.po b/anaconda-addon/po/pa.po deleted file mode 100644 index c71c3de..0000000 --- a/anaconda-addon/po/pa.po +++ /dev/null @@ -1,118 +0,0 @@ -# translation of pa.po to Punjabi -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# A S Alam , 2007. -# Jaswinder Singh , 2007, 2010, 2012. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-13 05:01-0500\n" -"Last-Translator: Jaswinder Singh \n" -"Language-Team: Punjabi/Panjabi \n" -"Language: pa\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=2; plural=(n != 1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "ਕੇ-ਡੰਪ" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "ਰਾਖਵੀਂ ਮੈਮੋਰੀ(_R) (MB):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "ਕੁੱਲ ਸਿਸਟਮ ਮੈਮੋਰੀ (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "ਵਰਤੋਂ-ਯੋਗ ਸਿਸਟਮ ਮੈਮੋਰੀ (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "ਕੇ-ਡੰਪ ਯੋਗ ਕਰੋ(_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "ਕੇ-ਡੰਪ ਮੈਮੋਰੀ (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "ਆਟੋਮੈਟਿਕ(_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/pl.po b/anaconda-addon/po/pl.po deleted file mode 100644 index 75717b9..0000000 --- a/anaconda-addon/po/pl.po +++ /dev/null @@ -1,114 +0,0 @@ -# translation of pl.po to Polish -# Piotr Drąg , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-03-08 09:18-0500\n" -"Last-Translator: Piotr Drąg \n" -"Language-Team: Polish \n" -"Language: pl\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==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 jest mechanizmem zrzucania błędów jądra. W wypadku zawieszenia się " -"systemu, kdump przechwyci informację systemu, która może być bezcenna w " -"ustaleniu powodu zawieszenia. Zauważ, że kdump wymaga zarezerwowania części " -"pamięci systemu, która będzie niedostępna dla innych użytkowników." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "Całkowi_ta pamięć systemu (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Używalna pamięć systemu (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "Pamięć _kdump (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "Przepraszam, system nie posiada wystarczającej ilości pamięci dla kdump!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Przepraszam, jądra Xen nie obsługują teraz kdump!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Przepraszam, architektura %s nie obsługuje teraz 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 "" -#~ "Zmienianie ustawień kdump wymaga ponownego uruchomienia systemu, aby " -#~ "ponownie przydzielić pamięć. %sCzy chcesz kontynuować z tą zmianą i " -#~ "uruchomić ponownie system po zakończeniu pierwszego uruchomienia?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Błąd! Nie znaleziono pliku konfiguracyjnego programu startowego, " -#~ "przerywanie konfiguracji!" diff --git a/anaconda-addon/po/pom.xml b/anaconda-addon/po/pom.xml deleted file mode 100644 index fb230ba..0000000 --- a/anaconda-addon/po/pom.xml +++ /dev/null @@ -1,19 +0,0 @@ - - 4.0.0 - null - null - 0 - - - - - org.zanata - zanata-maven-plugin - 2.0.0 - - . - - - - - diff --git a/anaconda-addon/po/pt.po b/anaconda-addon/po/pt.po deleted file mode 100644 index bd3b3c8..0000000 --- a/anaconda-addon/po/pt.po +++ /dev/null @@ -1,113 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: firstboot_kdump\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-05-09 02:24+0100\n" -"Last-Translator: José Nuno Coelho Pires \n" -"Language-Team: pt \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POFile-SpellExtra: kdump Xen firstboot Kdump kernels\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 "" -"O Kdump é um mecanismo de gravação dos estoiros do 'kernel'. No caso de " -"ocorrer um estoiro do sistema, o 'kdump' irá capturar a informação do seu " -"sistema, valiosa para determinar a causa do estoiro. Lembre-se que o 'kdump' " -"necessita de reservar uma parte da memória do sistema que estará " -"indisponível para outros usos." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "Memória _Total do Sistema (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "Memória Ú_til do Sistema (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "Memória do _Kdump (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ 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 o kdump ser " -#~ "viável!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "" -#~ "Infelizmente, os 'kernels' do Xen não suportam o 'kdump' nesta altura!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Infelizmente, a arquitectura %s não suporta o kdump nesta altura!" - -#, 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 "" -#~ "A alteração da configuração do Kdump necessita de reiniciar o sistema " -#~ "para reservar de novo a memória de forma adequada.%s Deseja continuar com " -#~ "esta alteração e reiniciar o sistema depois de o 'firstboot' terminar?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Erro! Não foi encontrado o ficheiro de configuração do gestor de " -#~ "arranque, a abortar a configuração!" diff --git a/anaconda-addon/po/pt_BR.po b/anaconda-addon/po/pt_BR.po deleted file mode 100644 index ddc6303..0000000 --- a/anaconda-addon/po/pt_BR.po +++ /dev/null @@ -1,129 +0,0 @@ -# translation of pt_BR.po to 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. -# Glaucia Cintra , 2010. -# gcintra , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 07:44-0500\n" -"Last-Translator: gcintra \n" -"Language-Team: Portuguese \n" -"Language: pt-BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"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" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 "" -"O kdump é um mecanismo de despejo de falhas do kernel. Em casos de falhas do " -"sistema, o kdump capturará informações sobre o seu sistema que podem ser " -"muito úteis para determinar a causa da falha. Note que o kdump não requer a " -"alocação exclusiva de uma porção da memória do sistema que estará " -"indisponível para outros usuários." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "Memória a ser_Reservada (MB):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "Memória Total do Sistema (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "Memória Utilizável do Sistema (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "_Habilitar kdump?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Memória do Kdump (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "_Automático" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/ru.po b/anaconda-addon/po/ru.po deleted file mode 100644 index 541c160..0000000 --- a/anaconda-addon/po/ru.po +++ /dev/null @@ -1,122 +0,0 @@ -# translation of ru.po to -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Yulia Poyarkova , 2007. -# Yulia , 2010. -# ypoyarko , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 05:21-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" -"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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 предоставляет новый механизм сбора статистики о сбоях ядра. В случае " -"сбоя kdump осуществляет сбор статистики для последующего определения причины " -"сбоя. Нужно иметь в виду, что kdump требует резервирования части системной " -"памяти, что делает её недоступной для использования." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "Будет зарезервировано (МБ):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "_Общий объем памяти (МБ):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "_Доступно памяти (МБ):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "_Включить Kdump?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Резервирование памяти Kdump:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "_Автоматически" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/si.po b/anaconda-addon/po/si.po deleted file mode 100644 index ad22ccc..0000000 --- a/anaconda-addon/po/si.po +++ /dev/null @@ -1,115 +0,0 @@ -# translation of si.po to Sinhala -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Danishka Navin , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-07-03 05:52-0400\n" -"Last-Translator: Danishka Navin \n" -"Language-Team: Sinhala \n" -"Language: si\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=2; plural=(n != 1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "කේඩම්ප්" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "සම්පූර්‍ණ පද්ධති මතකය (මෙගා බයිට්) (_T):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "භාවිතා කළ හැකි මතකය (මෙගා බයිට්) (_U):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "කේඩම්ප් ක්‍රීය කරන්නද? (_E)" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "කේඩම්ප් මතකය (මෙගා බයිට්) (_K):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "සමාවන්න, කේඩම්ප් ජීව්‍ය වීම සඳහා ඔබගේ පද්ධතිය තුළ ප්‍රමාණවත් මතකයක් නැත!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "සමාවන්න, ia64 xen න්‍යෂ්ඨිය කේඩම්ප් සඳහා මෙම අවස්ථාවේ සහාය නොදක්වයි!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "සමාවන්න, %s ශෛලිය කේඩම්ප් සඳහා මෙම අවස්ථාවේ සහාය නොදක්වයි!" - -#, 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 "" -#~ "කේඩම්ප් සැකසුම් වෙනස් කිරිමෙ ක්‍රියාවලියේදි මතකය නිසියාකාරව යෙදවීම සඳහා පද්ධතිය නැවත ඇරඹුම " -#~ "අවශ්‍යවේ. %s \n" -#~ "\n" -#~ "මෙම වෙනස්කම් සහිතව ඉදිරි කටයුතු කරමින් සහ පළමු ඇරඹුම සම්පූර්ණ වු පසු පද්ධතිය නැවත ඇරඹීමට ඔබ " -#~ "කැමතිද? " - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "දෝෂය!ආරමිභකය සුසර කිරීමේ ගොනුව හමු නොවීය, මානකරණය විනාශ වෙමින්!" diff --git a/anaconda-addon/po/sk.po b/anaconda-addon/po/sk.po deleted file mode 100644 index f955aae..0000000 --- a/anaconda-addon/po/sk.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: sk\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/sl.po b/anaconda-addon/po/sl.po deleted file mode 100644 index 1fbd12a..0000000 --- a/anaconda-addon/po/sl.po +++ /dev/null @@ -1,116 +0,0 @@ -# translation of sl.po to Slovenian -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Rok Papez , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-04-09 01:38-0400\n" -"Last-Translator: Rok Papez \n" -"Language-Team: Slovenian \n" -"Language: sl\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=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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 mehanizem za posmrtne ostanke ob zrušitvi jedra. V primeru zrušitve " -"sistema, kdump shrani informacije o sistemu, ki so lahko zelo uporabne pri " -"iskanju vzroka zrušitve. Kdump za svoje delovanje rezervira kos sistemskega " -"pomnilnika, ki je nedostopen za drugo uporabo." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Skupno sistemskega pomnilnika (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Uporabnega sistemskega pomnilnika (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Pomnilnika Kdump (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "Vaš sistem ne vsebuje dovolj pomnilnika za delovanje kdump!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Jedro Xen še ne podpira kdump!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "%s arhitektura še ne podpira 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 "" -#~ "Spreminjanje nastavitev Kdump zahteva ponovni zagon sistema zaradi " -#~ "prestavljanja pomnilnika. %sŽelite nadaljevati s spremembami in sistem " -#~ "znova zagnati, ko končate z nastavitvami po namestitvi?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Napaka! Ni bilo moč najti nastavitvene datoteke za zagon, spremembe " -#~ "nastavitev so preklicane!" diff --git a/anaconda-addon/po/sq.po b/anaconda-addon/po/sq.po deleted file mode 100644 index 1288948..0000000 --- a/anaconda-addon/po/sq.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: sq\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/sr.po b/anaconda-addon/po/sr.po deleted file mode 100644 index 96f33ed..0000000 --- a/anaconda-addon/po/sr.po +++ /dev/null @@ -1,113 +0,0 @@ -# Serbian 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: kexec-tools\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-03-11 01:02-0000\n" -"Last-Translator: Miloš Komarčević \n" -"Language-Team: Serbian (sr) \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 је механизам за избачај краха језгра. У случају краха система, kdump " -"ће сакупити податке од система који могу бити од непроцењиве помоћи у " -"одређивању узрока краха. Приметите да kdump захтева заузимање дела системске " -"меморије који неће бити доступан за другу употребу." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Укупна меморија система (МБ):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Употребљива меморија система (МБ):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump меморија (МБ):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "Жалим, систем не поседује довољно меморије како би kdump био могућ!" - -#, fuzzy -#~ 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!" - -#, 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 "" -#~ "Измена Kdump подешавања захтева поновно покретање система како би се " -#~ "сходно заузела меморија. %sДа ли желите да наставите са овом изменом и " -#~ "поново покренете систем након што се firstboot заврши?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Грешка! Није пронађена датотека подешавања покретачког програма, " -#~ "обустављам подешавање!" diff --git a/anaconda-addon/po/sr@Latn.po b/anaconda-addon/po/sr@Latn.po deleted file mode 100644 index aa691ca..0000000 --- a/anaconda-addon/po/sr@Latn.po +++ /dev/null @@ -1,116 +0,0 @@ -# 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-05-08 15:52+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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Ukupna memorija sistema (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Upotrebljiva memorija sistema (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump memorija (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ 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/anaconda-addon/po/sv.po b/anaconda-addon/po/sv.po deleted file mode 100644 index 085874b..0000000 --- a/anaconda-addon/po/sv.po +++ /dev/null @@ -1,115 +0,0 @@ -# Svenska translation of kexec-tools. -# Copyright (C) 2006 Free Software Foundation, Inc. -# Magnus Larsson , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-03-09 07:35-0500\n" -"Last-Translator: Magnus Larsson \n" -"Language-Team: Swedish \n" -"Language: sv\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 är en mekanism för loggning av kärnkrascher. Om en " -"systemkraschinträffar, kommer kdump spara information om ditt system som kan " -"vara ovärderligt för att bestämma orsaken till kraschen. Notera att kdump " -"reserverar en del av systemminnet som inte kan användas för annat." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Totalt systemminne (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Totalt användbart systemminne (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "_Kdump-minne (MB):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "Tyvärr har ditt system inte tillräckligt med minne för att kdump ska vara " -#~ "användbart!" - -#, fuzzy -#~ msgid "Sorry, Xen kernels do not support kdump at this time!" -#~ msgstr "Tyvärr stöder inte Xen-kärnor kdump för tillfället!" - -#~ msgid "Sorry, the %s architecture does not support kdump at this time!" -#~ msgstr "Tyvärr stöder inte %s-arkitekturen inte kdump för tillfället!" - -#, 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 "" -#~ "Ändring av inställningar för Kdump kräver omstart av systemet för att " -#~ "omallokera minne. %sVill du fortsätta med denna ändring och starta " -#~ "omsystemet efter firstboot är klar?" - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Fel! Ingen konfigurationsfil för startprogrammet hittades, avbryter " -#~ "konfigurering!" diff --git a/anaconda-addon/po/ta.po b/anaconda-addon/po/ta.po deleted file mode 100644 index 8df3a06..0000000 --- a/anaconda-addon/po/ta.po +++ /dev/null @@ -1,119 +0,0 @@ -# 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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 06:34-0500\n" -"Last-Translator: Shantha kumar \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" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 என்பது ஒரு கர்னல் அழிவு டம்பிங்க்கிங் தொழில்நுட்பம். கணினி சேதமடையும் போது, kdump " -"உங்கள் கணினி சேதமடைய காரணமான மதிப்பில்லாத தகவல்களை எடுக்கிறது.kdumpக்கு வேறு " -"பயன்களுக்கு இல்லாத கணினி நினைவகத்தின் ஒரு பகுதி தேவைப்படும் என்பதை குறித்து கொள்ளவும்." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "ஒதுக்கி வைக்கப்பட வேண்டிய நினைவகம் (MB): (_R)" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "மொத்த கணினி நினைவகம் (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "பயன்படுத்தும் கணினி நினைவகம் (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdumpஐ செயல்படுத்த வேண்டுமா? (_E)" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump நினைவக ஒதுக்கீடு:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "தானியங்கி (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/ta_IN.po b/anaconda-addon/po/ta_IN.po deleted file mode 100644 index fa81d93..0000000 --- a/anaconda-addon/po/ta_IN.po +++ /dev/null @@ -1,113 +0,0 @@ -# Shantha kumar , 2012. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 06:42-0500\n" -"Last-Translator: Shantha kumar \n" -"Language-Team: Tamil <>\n" -"Language: ta-IN\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=2; plural=(n != 1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 என்பது ஒரு கர்னல் அழிவு டம்பிங்க்கிங் தொழில்நுட்பம். கணினி சேதமடையும் போது, kdump " -"உங்கள் கணினி சேதமடைய காரணமான மதிப்பில்லாத தகவல்களை எடுக்கிறது.kdumpக்கு வேறு " -"பயன்களுக்கு இல்லாத கணினி நினைவகத்தின் ஒரு பகுதி தேவைப்படும் என்பதை குறித்து கொள்ளவும்." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "ஒதுக்கி வைக்க வேண்டிய நினைவகம் (MB): (_R)" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "மொத்த கணினி நினைவகம் (MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "பயன்படுத்தும் கணினி நினைவகம் (MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "kdumpஐ செயல்படுத்த வேண்டுமா? (_E)" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump நினைவக ஒதுக்கீடு:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "(_A) தானியங்கி" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/te.po b/anaconda-addon/po/te.po deleted file mode 100644 index 26634ca..0000000 --- a/anaconda-addon/po/te.po +++ /dev/null @@ -1,116 +0,0 @@ -# translation of te.po to Telugu -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Krishna Babu K , 2007, 2010. -# kkrothap , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 09:17-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" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "రిజర్వు చేయవలసిన మెమొరీ (MB) (_R):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "మొత్తం సిస్టమ్ మెమొరి(MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "ఉపయోగకరమైన సిస్టమ్ మెమొరి(MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "కెడంప్ సిద్దపరచు(_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "కెడంప్ మెమొర రిజర్వేషన్:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "స్వయంచాలక (_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/tr.po b/anaconda-addon/po/tr.po deleted file mode 100644 index 0c6d778..0000000 --- a/anaconda-addon/po/tr.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: tr\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=2; plural=(n>1)\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/uk.po b/anaconda-addon/po/uk.po deleted file mode 100644 index d949d59..0000000 --- a/anaconda-addon/po/uk.po +++ /dev/null @@ -1,115 +0,0 @@ -# Ukrainian translation to kexec-tools. -# Copyright (C) Free Software Foundation -# This file is distributed under the same license as the kexec-tools package. -# Maxim Dziumanenko , 2007. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2007-01-23 07:15-0500\n" -"Last-Translator: Maxim Dziumanenko \n" -"Language-Team: Ukrainian \n" -"Language: uk\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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 - це механізм створення дампів ядра. При виникненні системної помилки " -"kdump збирає потрібну інформацію для подальшого визначення причини помилки. " -"Зауважте, що kdump резервує частину пам'яті системи, що робить її " -"недоступною для інших користувачів." - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -#, fuzzy -msgid "Total System Memory (MB):" -msgstr "_Загальний розмір системної пам'яті (МБ):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -#, fuzzy -msgid "Usable System Memory (MB):" -msgstr "_Системна пам'ять, що використовується (МБ):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -#, fuzzy -msgid "Kdump Memory Reservation:" -msgstr "Па'мять _Kdump (MБ):" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" - -#~ msgid "%s" -#~ msgstr "%s" - -#~ msgid "" -#~ "Sorry, your system does not have enough memory for kdump to be viable!" -#~ msgstr "" -#~ "Система не має достатньої кількості пам'яті для нормальної роботи kdump!" - -#, fuzzy -#~ 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!" - -#, 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 "" -#~ "Зміна параметрів Kdump потребує перезавантаження системи для " -#~ "перерозподілу пам'яті. %sПродовжити роботу чи перезавантажити систему? " - -#~ msgid "Error! No bootloader config file found, aborting configuration!" -#~ msgstr "" -#~ "Помилка! Не знайдено конфігураційний файл завантажувача, налаштовування " -#~ "перервано!" diff --git a/anaconda-addon/po/ur.po b/anaconda-addon/po/ur.po deleted file mode 100644 index 345c340..0000000 --- a/anaconda-addon/po/ur.po +++ /dev/null @@ -1,78 +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-05-08 15:52+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:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/vi.po b/anaconda-addon/po/vi.po deleted file mode 100644 index 4e8c548..0000000 --- a/anaconda-addon/po/vi.po +++ /dev/null @@ -1,78 +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. -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: vi\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=1; plural=0\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "" - -#: tmp/RHEL.glade.h:6 -msgid "_Manual" -msgstr "" diff --git a/anaconda-addon/po/zanata.xml b/anaconda-addon/po/zanata.xml deleted file mode 100644 index 59f0439..0000000 --- a/anaconda-addon/po/zanata.xml +++ /dev/null @@ -1,94 +0,0 @@ - - - https://translate.zanata.org/zanata/ - kexec-tools - F18 - gettext - - - ar - as - bg - bn-IN - ca - cs - da - de-CH - de-DE - el - en-GB - es-ES - es-MX - fa - fi - fr - gu - he - hi - hr - hu - id - is - it - ja - kn - ko - lv - ml - mr - ms - nb - nl - or - pl - pt-PT - pt-BR - ru - si - sk - sr-Cyrl - sr-Latn - sv - ta-IN - te - th - tr - uk - zh-Hans-CN - zh-Hant-TW - af - am - az - bn-BD - cy - eo - et - eu - ga - gl - ka - lt - nn - ro - sl - sq - vi - ast - bs - nds - ky - la - mn - tl - xh - pa - mai - es - de - brx - ta - br - kk - - - diff --git a/anaconda-addon/po/zh_CN.po b/anaconda-addon/po/zh_CN.po deleted file mode 100644 index dccc689..0000000 --- a/anaconda-addon/po/zh_CN.po +++ /dev/null @@ -1,120 +0,0 @@ -# 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. -# Leah Liu , 2010. -# leahliu , 2012. #zanata -# yangrr , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-20 10:07-0500\n" -"Last-Translator: yangrr \n" -"Language-Team: Wei Liu\n" -"Language: zh-Hans-CN\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=1; plural=0\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 是一个内核崩溃转储机制。在系统崩溃的时候,kdump 将捕获系统信息,这对于" -"诊断崩溃的原因非常有用。注意,kdump 需要预留一部分系统内存,且这部分内存对于" -"其他用户是不可用的。" - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "要保留的内存(MB):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "总系统内存(MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "可用系统内存(MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "启用 kdump (_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "为 Kdump 保留的内存:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "自动(_A)" - -#: tmp/RHEL.glade.h:6 -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/anaconda-addon/po/zh_TW.po b/anaconda-addon/po/zh_TW.po deleted file mode 100644 index fefb8c4..0000000 --- a/anaconda-addon/po/zh_TW.po +++ /dev/null @@ -1,118 +0,0 @@ -# translation of zh_TW.po to Traditional Chinese -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Chester Cheng , 2007. -# Terry Chuang , 2010. -# snowlet , 2012. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-08 15:52+0800\n" -"PO-Revision-Date: 2012-12-18 01:50-0500\n" -"Last-Translator: snowlet \n" -"Language-Team: Traditional Chinese \n" -"Language: zh-Hant-TW\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=1; plural=0\n" - -#: ../com_redhat_kdump/ks/kdump.py:112 -#, python-format -msgid "Invalid value %s for --reserve-mb" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:56 -msgid "Kdump" -msgstr "Kdump" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:84 -#: ../com_redhat_kdump/gui/spokes/kdump.py:139 -msgid "Kdump is enabled" -msgstr "" - -#: ../com_redhat_kdump/tui/spokes/kdump.py:86 -#: ../com_redhat_kdump/gui/spokes/kdump.py:141 -msgid "Kdump is disabled" -msgstr "" - -#: ../com_redhat_kdump/gui/spokes/kdump.py:44 tmp/fedora.glade.h:1 -#: tmp/RHEL.glade.h:1 -msgid "KDUMP" -msgstr "" - -#: tmp/fedora.glade.h:2 tmp/RHEL.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 是核心當機時的傾印機制。當系統當機時,kdump 會擷取系統資訊,以找出導致" -"當機的原因。請注意,kdump 需要保留部份系統記憶體,其他使用者將無法使用這些記" -"憶體。" - -#: tmp/fedora.glade.h:3 tmp/RHEL.glade.h:7 -msgid "Memory To Be _Reserved (MB):" -msgstr "要保留的記憶體(MB)(_R):" - -#: tmp/fedora.glade.h:4 tmp/RHEL.glade.h:8 -msgid "Total System Memory (MB):" -msgstr "總系統記憶體(MB):" - -#: tmp/fedora.glade.h:5 tmp/RHEL.glade.h:9 -msgid "Usable System Memory (MB):" -msgstr "可用的系統記憶體(MB):" - -#: tmp/fedora.glade.h:6 tmp/RHEL.glade.h:3 -msgid "_Enable kdump?" -msgstr "啟用 kdump(_E)?" - -#: tmp/RHEL.glade.h:4 -msgid "Kdump Memory Reservation:" -msgstr "Kdump 保留記憶體:" - -#: tmp/RHEL.glade.h:5 -msgid "_Automatic" -msgstr "自動 (_A)" - -#: tmp/RHEL.glade.h:6 -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(開機載入程式)的設定檔,放棄設定!"