Compare commits
23 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
666903c385 | ||
|
|
ea6bdc4321 | ||
|
|
14251ce101 | ||
|
|
fed96039e2 | ||
|
|
59a87a4011 | ||
|
|
9c5ac7478d | ||
|
|
b060f9f6b0 | ||
|
|
cc319fa322 | ||
|
|
371d599b0d | ||
|
|
1be02523ad | ||
|
|
2ecbf6a989 | ||
|
|
b703267aa5 | ||
|
|
201fe8c442 | ||
|
|
552d4d51a6 | ||
|
|
ed3e1c1248 | ||
|
|
2f82313fa3 | ||
|
|
55388d1a2a | ||
|
|
35d31cea92 | ||
|
|
b316bfa8e1 | ||
|
|
5b72833fbe | ||
|
|
a4a1ee8267 | ||
|
|
cf2c8da395 | ||
|
|
36c1159249 |
155 changed files with 14058 additions and 3141 deletions
|
|
@ -1,32 +0,0 @@
|
|||
# EditorConfig configuration for kexec-tools
|
||||
# http://EditorConfig.org
|
||||
|
||||
# Top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
# Default code style for kexec-tools scripts
|
||||
[*]
|
||||
end_of_line = lf
|
||||
shell_variant = posix
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
indent_style = tab
|
||||
indent_size = 1
|
||||
switch_case_indent = false
|
||||
function_next_line = true
|
||||
binary_next_line = false
|
||||
space_redirects = true
|
||||
|
||||
# Some scripts will only run with bash
|
||||
[{mkfadumprd,mkdumprd,kdumpctl,kdump-lib.sh}]
|
||||
shell_variant = bash
|
||||
|
||||
# Use dracut code style for *-module-setup.sh
|
||||
[*-module-setup.sh,dracut-early-kdump.sh]
|
||||
shell_variant = bash
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
switch_case_indent = true
|
||||
function_next_line = false
|
||||
binary_next_line = true
|
||||
space_redirects = true
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -21,4 +21,3 @@
|
|||
/kexec-tools-2.0.11.tar.xz
|
||||
/makedumpfile-1.5.9.tar.gz
|
||||
/kexec-tools-2.0.12.tar.xz
|
||||
coverage/
|
||||
|
|
|
|||
36
.packit.yaml
36
.packit.yaml
|
|
@ -1,36 +0,0 @@
|
|||
# See the documentation for more information:
|
||||
# https://packit.dev/docs/configuration/
|
||||
|
||||
upstream_project_url: https://github.com/horms/kexec-tools.git
|
||||
|
||||
specfile_path: kexec-tools.spec
|
||||
|
||||
# add or remove files that should be synced
|
||||
files_to_sync:
|
||||
- kexec-tools.spec
|
||||
- .packit.yaml
|
||||
|
||||
# name in upstream package repository or registry (e.g. in PyPI)
|
||||
upstream_package_name: kexec-tools
|
||||
# downstream (Fedora) RPM package name
|
||||
downstream_package_name: kexec-tools
|
||||
|
||||
upstream_tag_template: v{version}
|
||||
|
||||
jobs:
|
||||
- job: pull_from_upstream
|
||||
trigger: release
|
||||
dist_git_branches:
|
||||
- fedora-all
|
||||
|
||||
- job: koji_build
|
||||
trigger: commit
|
||||
allowed_pr_authors: ["all_committers", "packit"]
|
||||
dist_git_branches:
|
||||
- fedora-all
|
||||
|
||||
- job: bodhi_update
|
||||
trigger: commit
|
||||
allowed_builders: ["all_committers", "packit"]
|
||||
dist_git_branches:
|
||||
- fedora-all
|
||||
4
98-kexec.rules
Normal file
4
98-kexec.rules
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
SUBSYSTEM=="cpu", ACTION=="add", PROGRAM="/bin/systemctl try-restart kdump.service"
|
||||
SUBSYSTEM=="cpu", ACTION=="remove", PROGRAM="/bin/systemctl try-restart kdump.service"
|
||||
SUBSYSTEM=="memory", ACTION=="online", PROGRAM="/bin/systemctl try-restart kdump.service"
|
||||
SUBSYSTEM=="memory", ACTION=="offline", PROGRAM="/bin/systemctl try-restart kdump.service"
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
This repository is maintained by packit.
|
||||
https://packit.dev/
|
||||
The file was generated using packit 1.11.0.post1.dev7+gfdcdf3a32.
|
||||
79
anaconda-addon/Makefile
Normal file
79
anaconda-addon/Makefile
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
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/
|
||||
29
anaconda-addon/README
Normal file
29
anaconda-addon/README
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
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"|<amount>)
|
||||
%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.
|
||||
88
anaconda-addon/com_redhat_kdump/common.py
Normal file
88
anaconda-addon/com_redhat_kdump/common.py
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
# 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 <dshea@redhat.com>
|
||||
#
|
||||
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"
|
||||
23
anaconda-addon/com_redhat_kdump/constants.py
Normal file
23
anaconda-addon/com_redhat_kdump/constants.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# 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 <dshea@redhat.com>
|
||||
#
|
||||
|
||||
# The location of the kdump config file
|
||||
OS_RELEASE = "/etc/os-release"
|
||||
0
anaconda-addon/com_redhat_kdump/gui/__init__.py
Normal file
0
anaconda-addon/com_redhat_kdump/gui/__init__.py
Normal file
274
anaconda-addon/com_redhat_kdump/gui/spokes/RHEL.glade
Normal file
274
anaconda-addon/com_redhat_kdump/gui/spokes/RHEL.glade
Normal file
|
|
@ -0,0 +1,274 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generated with glade 3.16.1 -->
|
||||
<interface domain="kdump-anaconda-addon">
|
||||
<requires lib="gtk+" version="3.6"/>
|
||||
<!-- interface-requires AnacondaWidgets 1.0 -->
|
||||
<object class="AnacondaSpokeWindow" id="KdumpWindow">
|
||||
<property name="startup_id">filler</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="startup_id">filler</property>
|
||||
<property name="window_name" translatable="yes">KDUMP</property>
|
||||
<signal name="button-clicked" handler="on_back_clicked" swapped="no"/>
|
||||
<child internal-child="main_box">
|
||||
<object class="GtkBox" id="AnacondaSpokeWindow-main_box1">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">6</property>
|
||||
<child internal-child="nav_box">
|
||||
<object class="GtkEventBox" id="AnacondaSpokeWindow-nav_box1">
|
||||
<property name="app_paintable">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<child internal-child="nav_area">
|
||||
<object class="GtkGrid" id="AnacondaSpokeWindow-nav_area1">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="margin_left">6</property>
|
||||
<property name="margin_right">6</property>
|
||||
<property name="margin_top">6</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child internal-child="alignment">
|
||||
<object class="GtkAlignment" id="AnacondaSpokeWindow-alignment1">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="yalign">0</property>
|
||||
<child internal-child="action_area">
|
||||
<object class="GtkBox" id="AnacondaSpokeWindow-action_area1">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">6</property>
|
||||
<child>
|
||||
<object class="GtkBox" id="box1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="border_width">10</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">10</property>
|
||||
<child>
|
||||
<object class="GtkLabel" id="summaryLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="label" translatable="yes">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.</property>
|
||||
<property name="wrap">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkGrid" id="grid1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<object class="GtkCheckButton" id="enableKdumpCheck">
|
||||
<property name="label" translatable="yes">_Enable kdump?</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">False</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="yalign">0</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
<signal name="toggled" handler="on_enable_kdump_toggled" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">0</property>
|
||||
<property name="width">3</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="reservationTypeLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="label" translatable="yes">Kdump Memory Reservation:</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">1</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkRadioButton" id="autoButton">
|
||||
<property name="label" translatable="yes">_Automatic</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">False</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="active">True</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
<signal name="toggled" handler="on_reservation_toggled" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="top_attach">1</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkRadioButton" id="manualButton">
|
||||
<property name="label" translatable="yes">_Manual</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">False</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="active">True</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
<property name="group">autoButton</property>
|
||||
<signal name="toggled" handler="on_reservation_toggled" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">2</property>
|
||||
<property name="top_attach">1</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="toBeReservedLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="label" translatable="yes">Memory To Be _Reserved (MB):</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="mnemonic_widget">toBeReservedSpin</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">3</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkSpinButton" id="toBeReservedSpin">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="input_purpose">digits</property>
|
||||
<property name="update_policy">if-valid</property>
|
||||
<signal name="value-changed" handler="on_reserved_value_changed" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="top_attach">3</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="totalMemLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="label" translatable="yes">Total System Memory (MB):</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">4</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="totalMemMB">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="top_attach">4</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="usableMemLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="label" translatable="yes">Usable System Memory (MB):</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">5</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="usableMemMB">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="top_attach">5</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</interface>
|
||||
0
anaconda-addon/com_redhat_kdump/gui/spokes/__init__.py
Normal file
0
anaconda-addon/com_redhat_kdump/gui/spokes/__init__.py
Normal file
218
anaconda-addon/com_redhat_kdump/gui/spokes/fedora.glade
Normal file
218
anaconda-addon/com_redhat_kdump/gui/spokes/fedora.glade
Normal file
|
|
@ -0,0 +1,218 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generated with glade 3.16.1 -->
|
||||
<interface domain="kdump-anaconda-addon">
|
||||
<requires lib="gtk+" version="3.6"/>
|
||||
<!-- interface-requires AnacondaWidgets 1.0 -->
|
||||
<object class="AnacondaSpokeWindow" id="KdumpWindow">
|
||||
<property name="startup_id">filler</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="startup_id">filler</property>
|
||||
<property name="window_name" translatable="yes">KDUMP</property>
|
||||
<signal name="button-clicked" handler="on_back_clicked" swapped="no"/>
|
||||
<child internal-child="main_box">
|
||||
<object class="GtkBox" id="AnacondaSpokeWindow-main_box1">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">6</property>
|
||||
<child internal-child="nav_box">
|
||||
<object class="GtkEventBox" id="AnacondaSpokeWindow-nav_box1">
|
||||
<property name="app_paintable">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<child internal-child="nav_area">
|
||||
<object class="GtkGrid" id="AnacondaSpokeWindow-nav_area1">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="margin_left">6</property>
|
||||
<property name="margin_right">6</property>
|
||||
<property name="margin_top">6</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child internal-child="alignment">
|
||||
<object class="GtkAlignment" id="AnacondaSpokeWindow-alignment1">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="yalign">0</property>
|
||||
<child internal-child="action_area">
|
||||
<object class="GtkBox" id="AnacondaSpokeWindow-action_area1">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">6</property>
|
||||
<child>
|
||||
<object class="GtkBox" id="box1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="border_width">10</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">10</property>
|
||||
<child>
|
||||
<object class="GtkLabel" id="summaryLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="label" translatable="yes">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.</property>
|
||||
<property name="wrap">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkGrid" id="grid1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<object class="GtkLabel" id="toBeReservedLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="label" translatable="yes">Memory To Be _Reserved (MB):</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="mnemonic_widget">toBeReservedSpin</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">3</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkSpinButton" id="toBeReservedSpin">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="input_purpose">digits</property>
|
||||
<property name="update_policy">if-valid</property>
|
||||
<signal name="value-changed" handler="on_reserved_value_changed" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="top_attach">3</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="totalMemLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="label" translatable="yes">Total System Memory (MB):</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">4</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="totalMemMB">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="top_attach">4</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="usableMemLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="label" translatable="yes">Usable System Memory (MB):</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">5</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="usableMemMB">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">0</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="top_attach">5</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkCheckButton" id="enableKdumpCheck">
|
||||
<property name="label" translatable="yes">_Enable kdump?</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">False</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="yalign">0</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
<signal name="toggled" handler="on_enable_kdump_toggled" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="top_attach">0</property>
|
||||
<property name="width">1</property>
|
||||
<property name="height">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</interface>
|
||||
192
anaconda-addon/com_redhat_kdump/gui/spokes/kdump.py
Normal file
192
anaconda-addon/com_redhat_kdump/gui/spokes/kdump.py
Normal file
|
|
@ -0,0 +1,192 @@
|
|||
# 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 <dshea@redhat.com>
|
||||
#
|
||||
|
||||
"""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))
|
||||
27
anaconda-addon/com_redhat_kdump/i18n.py
Normal file
27
anaconda-addon/com_redhat_kdump/i18n.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# 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 <dshea@redhat.com>
|
||||
#
|
||||
|
||||
__all__ = ["_", "N_"]
|
||||
|
||||
import gettext
|
||||
|
||||
_ = lambda x: gettext.ldgettext("kdump-anaconda-addon", x)
|
||||
N_ = lambda x: x
|
||||
0
anaconda-addon/com_redhat_kdump/ks/__init__.py
Normal file
0
anaconda-addon/com_redhat_kdump/ks/__init__.py
Normal file
128
anaconda-addon/com_redhat_kdump/ks/kdump.py
Normal file
128
anaconda-addon/com_redhat_kdump/ks/kdump.py
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
# 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 <dshea@redhat.com>
|
||||
#
|
||||
|
||||
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)
|
||||
0
anaconda-addon/com_redhat_kdump/tui/__init__.py
Normal file
0
anaconda-addon/com_redhat_kdump/tui/__init__.py
Normal file
0
anaconda-addon/com_redhat_kdump/tui/spokes/__init__.py
Normal file
0
anaconda-addon/com_redhat_kdump/tui/spokes/__init__.py
Normal file
87
anaconda-addon/com_redhat_kdump/tui/spokes/kdump.py
Normal file
87
anaconda-addon/com_redhat_kdump/tui/spokes/kdump.py
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
# 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 <dshea@redhat.com>
|
||||
#
|
||||
|
||||
"""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
|
||||
75
anaconda-addon/po/Makefile
Normal file
75
anaconda-addon/po/Makefile
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
#
|
||||
# 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
|
||||
|
||||
79
anaconda-addon/po/ar.po
Normal file
79
anaconda-addon/po/ar.po
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
119
anaconda-addon/po/as.po
Normal file
119
anaconda-addon/po/as.po
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
# 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 <aphukan@redhat.com>, 2007.
|
||||
# ngoswami <ngoswami@fedoraproject.org>, 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 <ngoswami@fedoraproject.org>\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 ""
|
||||
#~ "ত্ৰুটি! বুটল'ডাৰৰ কোনো বিন্যাস ফাইল পোৱা নগ'ল, বিন্যাস কৰা বাতিল কৰা হৈছে!"
|
||||
118
anaconda-addon/po/bg.po
Normal file
118
anaconda-addon/po/bg.po
Normal file
|
|
@ -0,0 +1,118 @@
|
|||
# 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 <gunchev@gmail.com>, 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 <gunchev@gmail.com>\n"
|
||||
"Language-Team: Bulgarian <Bulgarian Translators' Team <dict@fsa-bg.org>>\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 ""
|
||||
#~ "Грешка! Не е намерен конфигурационния файл за начално зареждане, "
|
||||
#~ "конфигурацията няма да продължи!"
|
||||
78
anaconda-addon/po/bn.po
Normal file
78
anaconda-addon/po/bn.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
124
anaconda-addon/po/bn_IN.po
Normal file
124
anaconda-addon/po/bn_IN.po
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
# 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 <runab@redhat.com>, 2007.
|
||||
# translation of bn_IN.po to Bengali INDIA
|
||||
# Runa Bhattacharjee <runab@redhat.com>, 2007, 2010.
|
||||
# sray <sray@redhat.com>, 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 <sray@redhat.com>\n"
|
||||
"Language-Team: Bengali INDIA <anubad@lists.ankur.org.in>\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 কনফিগ ফাইল পাওয়া যায়নি, কনফিগারেশন প্রক্রিয়া পরিত্যাগ করা "
|
||||
#~ "হবে!"
|
||||
79
anaconda-addon/po/bs.po
Normal file
79
anaconda-addon/po/bs.po
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
114
anaconda-addon/po/ca.po
Normal file
114
anaconda-addon/po/ca.po
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
# 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 <josep.puigdemont@gmail.com>, 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 <josep.puigdemont@gmail.com>\n"
|
||||
"Language-Team: Catalan <fedora@softcatala.net>\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ó."
|
||||
114
anaconda-addon/po/cs.po
Normal file
114
anaconda-addon/po/cs.po
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
# Czech translation of kexec-tools.
|
||||
# Copyright (C) 2007 FSF
|
||||
# This file is distributed under the same license as the kexec-tools package.
|
||||
# Milan Kerslager <kerslage@linux.cz>, 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 <kerslage@linux.cz>\n"
|
||||
"Language-Team: Czech <cs@li.org>\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!"
|
||||
79
anaconda-addon/po/cy.po
Normal file
79
anaconda-addon/po/cy.po
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
116
anaconda-addon/po/da.po
Normal file
116
anaconda-addon/po/da.po
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
# translation of da.po to
|
||||
# Copyright (C) 2006, 2007 Free Software Foundation, Inc.
|
||||
# Magnus Larsson <fedoratrans@gmail.com>, 2007.
|
||||
# Keld Simonsen <keld@rap.dk>, 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 <keld@rap.dk>\n"
|
||||
"Language-Team: <da@li.org>\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!"
|
||||
127
anaconda-addon/po/de.po
Normal file
127
anaconda-addon/po/de.po
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
# 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 <ttrinks@redhat.com>, 2007.
|
||||
# hedda <hedda@fedoraproject.org>, 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 <hedda@fedoraproject.org>\n"
|
||||
"Language-Team: <en@li.org>\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!"
|
||||
78
anaconda-addon/po/el.po
Normal file
78
anaconda-addon/po/el.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
78
anaconda-addon/po/en_GB.po
Normal file
78
anaconda-addon/po/en_GB.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
129
anaconda-addon/po/es.po
Normal file
129
anaconda-addon/po/es.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# 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 <EMAIL@ADDRESS>, YEAR.
|
||||
# translation of es.po to Spanish
|
||||
#
|
||||
# Gladys Guerrero <gguerrer@redhat.com>, 2010.
|
||||
# gguerrer <gguerrer@redhat.com>, 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 <gguerrer@redhat.com>\n"
|
||||
"Language-Team: Spanish <en@li.org>\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!"
|
||||
78
anaconda-addon/po/et.po
Normal file
78
anaconda-addon/po/et.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
78
anaconda-addon/po/fa.po
Normal file
78
anaconda-addon/po/fa.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
115
anaconda-addon/po/fi.po
Normal file
115
anaconda-addon/po/fi.po
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
# Finnish translation of firstboot_kdump
|
||||
# This file is distributed under the same license as the firstboot_kdump package.
|
||||
#
|
||||
# Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>, 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 <vpivaini@cs.helsinki.fi>\n"
|
||||
"Language-Team: Finnish <laatu@lokalisointi.org>\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!"
|
||||
129
anaconda-addon/po/fr.po
Normal file
129
anaconda-addon/po/fr.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# 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 <fdecroux@redhat.com>, 2007.
|
||||
# Gauthier Ancelin <gauthier.ancelin@laposte.net>, 2007.
|
||||
# Sam Friedmann <sam.friedmann@redhat.com>, 2010.
|
||||
# samfreemanz <sfriedma@redhat.com>, 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 <sfriedma@redhat.com>\n"
|
||||
"Language-Team: French <French fedora-trans-fr@fedoraproject.org>\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 !"
|
||||
120
anaconda-addon/po/gu.po
Normal file
120
anaconda-addon/po/gu.po
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
# 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 <ankit@redhat.com>, 2007.
|
||||
# Sweta Kothari <swkothar@redhat.com>, 2010.
|
||||
# Ankit Patel <ankit@redhat.com>, 2013. #zanata
|
||||
# swkothar <swkothar@redhat.com>, 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 <swkothar@redhat.com>\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 "ભૂલ! કોઈ બુટલોડર રૂપરેખા ફાઈલ મળી નહિં, અડધેથી રૂપરેખાંકન બંધ કરી રહ્યા છીએ!"
|
||||
78
anaconda-addon/po/he.po
Normal file
78
anaconda-addon/po/he.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
119
anaconda-addon/po/hi.po
Normal file
119
anaconda-addon/po/hi.po
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
# 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 <rranjan@redhat.com>, 2007.
|
||||
# Rajesh Ranjan <rranjan@redhat.com>, 2007, 2010.
|
||||
# rajesh <rajesh@fedoraproject.org>, 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 <rajesh@fedoraproject.org>\n"
|
||||
"Language-Team: Hindi <fedora-trans-hi@redhat.com>\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 "त्रुटि! कोई बूटलोडर विन्यास फाइल नहीं मिला, विन्यास छोड़ रहा है!"
|
||||
121
anaconda-addon/po/hr.po
Normal file
121
anaconda-addon/po/hr.po
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <renato<-at->translator-shop.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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!"
|
||||
115
anaconda-addon/po/hu.po
Normal file
115
anaconda-addon/po/hu.po
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
# 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 <peti@sulyok.hu>, 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 <peti@sulyok.hu>\n"
|
||||
"Language-Team: Hungarian <fedora-trans-hu@redhat.com>\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!"
|
||||
78
anaconda-addon/po/hy.po
Normal file
78
anaconda-addon/po/hy.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
114
anaconda-addon/po/id.po
Normal file
114
anaconda-addon/po/id.po
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <erwiensy@sederhana.or.id>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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!"
|
||||
115
anaconda-addon/po/is.po
Normal file
115
anaconda-addon/po/is.po
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
# Í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 <ra@ra.is>, 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 <ra@ra.is>\n"
|
||||
"Language-Team: is <kde-isl@molar.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!"
|
||||
125
anaconda-addon/po/it.po
Normal file
125
anaconda-addon/po/it.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# 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 <tombo@adamantio.net>, 2007.
|
||||
# fvalen <fvalen@redhat.com>, 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 <fvalen@redhat.com>\n"
|
||||
"Language-Team: <it@li.org>\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!"
|
||||
124
anaconda-addon/po/ja.po
Normal file
124
anaconda-addon/po/ja.po
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
# 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 <khashida@brisbane.redhat.com>, 2007.
|
||||
# Kiyoto Hashida <khashida@redhat.com>, 2007, 2010.
|
||||
# noriko <noriko@fedoraproject.org>, 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 <noriko@fedoraproject.org>\n"
|
||||
"Language-Team: Japanese <jp@li.org>\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 "エラー! ブートローダ設定ファイルが見つかりません。設定を中止します!"
|
||||
78
anaconda-addon/po/ka.po
Normal file
78
anaconda-addon/po/ka.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
81
anaconda-addon/po/kdump-anaconda-addon.pot
Normal file
81
anaconda-addon/po/kdump-anaconda-addon.pot
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
124
anaconda-addon/po/kn.po
Normal file
124
anaconda-addon/po/kn.po
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
# 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 <svenkate@redhat.com>, 2007, 2010.
|
||||
# shanky <shanky@fedoraproject.org>, 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 <shanky@fedoraproject.org>\n"
|
||||
"Language-Team: kn_IN <kde-i18n-doc@kde.org>\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 ಕಡತವು ಕಂಡುಬಂದಿಲ್ಲ, ಸಂರಚನೆಯನ್ನು "
|
||||
#~ "ಸ್ಥಗಿತಗೊಳಿಸಲಾಗುತ್ತಿದೆ!"
|
||||
122
anaconda-addon/po/ko.po
Normal file
122
anaconda-addon/po/ko.po
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
# 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 <eukim@redhat.com>, 2007.
|
||||
# Hyunsok Oh <hoh@redhat.com>, 2010.
|
||||
# eukim <eukim@fedoraproject.org>, 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 <eukim@fedoraproject.org>\n"
|
||||
"Language-Team: Korean <ko@li.org>\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 "오류! 부트로더 구성 파일을 찾을 수 없습니다. 설정을 종료합니다!"
|
||||
78
anaconda-addon/po/ku.po
Normal file
78
anaconda-addon/po/ku.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
78
anaconda-addon/po/lo.po
Normal file
78
anaconda-addon/po/lo.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
79
anaconda-addon/po/lv.po
Normal file
79
anaconda-addon/po/lv.po
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
78
anaconda-addon/po/mk.po
Normal file
78
anaconda-addon/po/mk.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
119
anaconda-addon/po/ml.po
Normal file
119
anaconda-addon/po/ml.po
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
# 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 <apeter@redhat.com>, 2007, 2010.
|
||||
# anipeter <anipeter@fedoraproject.org>, 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 <anipeter@fedoraproject.org>\n"
|
||||
"Language-Team: Malayalam <smc-discuss@googlegorups.com>\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 "പിഴവ്! ബൂട്ട്ലോഡര് ക്രമീകരണ ഫയല് ലഭ്യമായില്ല, ക്രമീകരണം നിര്ത്തുന്നു!"
|
||||
120
anaconda-addon/po/mr.po
Normal file
120
anaconda-addon/po/mr.po
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
# 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 <sandeep.shedmake@gmail.com>, 2007.
|
||||
# Sandeep Shedmake <sshedmak@redhat.com>, 2010.
|
||||
# sandeeps <sandeeps@fedoraproject.org>, 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 <sandeeps@fedoraproject.org>\n"
|
||||
"Language-Team: Marathi <fedora-trans-mr@redhat.com>\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 फाइल सापडली नाही, संरचना रद्द करीत आहे!"
|
||||
115
anaconda-addon/po/ms.po
Normal file
115
anaconda-addon/po/ms.po
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <sharuzzaman@myrealbox.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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!"
|
||||
78
anaconda-addon/po/my.po
Normal file
78
anaconda-addon/po/my.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
113
anaconda-addon/po/nb.po
Normal file
113
anaconda-addon/po/nb.po
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
# 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 <espenas@gmail.com>\n"
|
||||
"Language-Team: Norwegian/Bokmaal <i18n-nb@lister.ping.uio.no>\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!"
|
||||
78
anaconda-addon/po/nl.po
Normal file
78
anaconda-addon/po/nl.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
122
anaconda-addon/po/or.po
Normal file
122
anaconda-addon/po/or.po
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
# 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 <sbehera@redhat.com>, 2007.
|
||||
# Subhransu Behera <arya_subhransu@yahoo.co.in>, 2007.
|
||||
# Manoj Kumar Giri <mgiri@redhat.com>, 2010.
|
||||
# mgiri <mgiri@fedoraproject.org>, 2012. #zanata
|
||||
# yangrr <ruyang@redhat.com>, 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 <ruyang@redhat.com>\n"
|
||||
"Language-Team: Oriya <Translation-team-or@lists.sourceforge.net>\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 ଫାଇଲ ମିଳିଲା ନାହିଁ, ବିନ୍ଯାସ ପ୍ରକ୍ରିୟାକୁ ପରିତ୍ଯାଗ କରୁଅଛି!"
|
||||
118
anaconda-addon/po/pa.po
Normal file
118
anaconda-addon/po/pa.po
Normal file
|
|
@ -0,0 +1,118 @@
|
|||
# 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 <aalam@users.sf.net>, 2007.
|
||||
# Jaswinder Singh <jsingh@redhat.com>, 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 <jsingh@redhat.com>\n"
|
||||
"Language-Team: Punjabi/Panjabi <kde-i18n-doc@kde.org>\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 "ਗਲਤੀ! ਬੂਟ-ਲੋਡਰ ਸੰਰਚਨਾ ਨਹੀਂ ਮਿਲੀ ਹੈ, ਸੰਰਚਨਾ ਅਧੂਰੀ ਛੱਡੀ ਜਾਂਦੀ ਹੈ!"
|
||||
114
anaconda-addon/po/pl.po
Normal file
114
anaconda-addon/po/pl.po
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
# translation of pl.po to Polish
|
||||
# Piotr Drąg <raven@pmail.pl>, 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 <raven@pmail.pl>\n"
|
||||
"Language-Team: Polish <pl@li.org>\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!"
|
||||
19
anaconda-addon/po/pom.xml
Normal file
19
anaconda-addon/po/pom.xml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>null</groupId>
|
||||
<artifactId>null</artifactId>
|
||||
<version>0</version>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.zanata</groupId>
|
||||
<artifactId>zanata-maven-plugin</artifactId>
|
||||
<version>2.0.0</version>
|
||||
<configuration>
|
||||
<srcDir>.</srcDir>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
113
anaconda-addon/po/pt.po
Normal file
113
anaconda-addon/po/pt.po
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
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 <jncp@netcabo.pt>\n"
|
||||
"Language-Team: pt <kde-i18n-pt@kde.org>\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!"
|
||||
129
anaconda-addon/po/pt_BR.po
Normal file
129
anaconda-addon/po/pt_BR.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# 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 <igor@projetofedora.org>, 2007.
|
||||
# Glaucia Cintra <gcintra@redhat.com>, 2010.
|
||||
# gcintra <gcintra@fedoraproject.org>, 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 <gcintra@fedoraproject.org>\n"
|
||||
"Language-Team: Portuguese <en@li.org>\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!"
|
||||
122
anaconda-addon/po/ru.po
Normal file
122
anaconda-addon/po/ru.po
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
# 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 <yulia.poyarkova@redhat.com>, 2007.
|
||||
# Yulia <ypoyarko@redhat.com>, 2010.
|
||||
# ypoyarko <ypoyarko@redhat.com>, 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 <ypoyarko@redhat.com>\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 ""
|
||||
#~ "Ошибка! Не найден конфигурационный файл загрузчика, настройка прервана."
|
||||
115
anaconda-addon/po/si.po
Normal file
115
anaconda-addon/po/si.po
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
# 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 <snavin@redhat.com>, 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 <snavin@redhat.com>\n"
|
||||
"Language-Team: Sinhala <en@li.org>\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 "දෝෂය!ආරමිභකය සුසර කිරීමේ ගොනුව හමු නොවීය, මානකරණය විනාශ වෙමින්!"
|
||||
78
anaconda-addon/po/sk.po
Normal file
78
anaconda-addon/po/sk.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
116
anaconda-addon/po/sl.po
Normal file
116
anaconda-addon/po/sl.po
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
# 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 <rok.papez@lugos.si>, 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 <rok.papez@lugos.si>\n"
|
||||
"Language-Team: Slovenian <sl@li.org>\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!"
|
||||
78
anaconda-addon/po/sq.po
Normal file
78
anaconda-addon/po/sq.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
113
anaconda-addon/po/sr.po
Normal file
113
anaconda-addon/po/sr.po
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
# 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ć <kmilos@gmail.com>, 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ć <kmilos@gmail.com>\n"
|
||||
"Language-Team: Serbian (sr) <fedora@prevod.org>\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 ""
|
||||
#~ "Грешка! Није пронађена датотека подешавања покретачког програма, "
|
||||
#~ "обустављам подешавање!"
|
||||
116
anaconda-addon/po/sr@Latn.po
Normal file
116
anaconda-addon/po/sr@Latn.po
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
# 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ć <kmilos@gmail.com>, 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ć <kmilos@gmail.com>\n"
|
||||
"Language-Team: Serbian (sr) <fedora@prevod.org>\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!"
|
||||
115
anaconda-addon/po/sv.po
Normal file
115
anaconda-addon/po/sv.po
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
# Svenska translation of kexec-tools.
|
||||
# Copyright (C) 2006 Free Software Foundation, Inc.
|
||||
# Magnus Larsson <fedoratrans@gmail.com>, 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 <fedoratrans@gmail.com>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\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!"
|
||||
119
anaconda-addon/po/ta.po
Normal file
119
anaconda-addon/po/ta.po
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
# 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 <ifelix@redhat.com>, 2007.
|
||||
# I Felix <ifelix@redhat.com>, 2010.
|
||||
# Shantha kumar <shkumar@redhat.com>, 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 <shkumar@redhat.com>\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 "பிழை! துவக்க ஏற்றி கட்டமைப்பு கோப்பு இல்லை, கட்டமைப்பை நிறுத்துகிறது!"
|
||||
113
anaconda-addon/po/ta_IN.po
Normal file
113
anaconda-addon/po/ta_IN.po
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
# Shantha kumar <shkumar@redhat.com>, 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 <shkumar@redhat.com>\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 "பிழை! துவக்க ஏற்றி கட்டமைப்பு கோப்பு இல்லை, கட்டமைப்பை நிறுத்துகிறது!"
|
||||
116
anaconda-addon/po/te.po
Normal file
116
anaconda-addon/po/te.po
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
# 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 <kkrothap@redhat.com>, 2007, 2010.
|
||||
# kkrothap <kkrothap@fedoraproject.org>, 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 <kkrothap@fedoraproject.org>\n"
|
||||
"Language-Team: Telugu <en@li.org>\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 "దోషం!బూట్ లోడర్ ఆకృతీకరణ దస్త్రం కనబడలేదు,ఆకృతీకరణ రద్దుచేయబడుతోంది!"
|
||||
78
anaconda-addon/po/tr.po
Normal file
78
anaconda-addon/po/tr.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
115
anaconda-addon/po/uk.po
Normal file
115
anaconda-addon/po/uk.po
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
# 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 <dziumanenko@gmail.com>, 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 <dziumanenko@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <uk@li.org>\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 ""
|
||||
#~ "Помилка! Не знайдено конфігураційний файл завантажувача, налаштовування "
|
||||
#~ "перервано!"
|
||||
78
anaconda-addon/po/ur.po
Normal file
78
anaconda-addon/po/ur.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
78
anaconda-addon/po/vi.po
Normal file
78
anaconda-addon/po/vi.po
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
||||
94
anaconda-addon/po/zanata.xml
Normal file
94
anaconda-addon/po/zanata.xml
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<config xmlns="http://zanata.org/namespace/config/">
|
||||
<url>https://translate.zanata.org/zanata/</url>
|
||||
<project>kexec-tools</project>
|
||||
<project-version>F18</project-version>
|
||||
<project-type>gettext</project-type>
|
||||
|
||||
<locales>
|
||||
<locale>ar</locale>
|
||||
<locale>as</locale>
|
||||
<locale>bg</locale>
|
||||
<locale map-from="bn_IN">bn-IN</locale>
|
||||
<locale>ca</locale>
|
||||
<locale>cs</locale>
|
||||
<locale>da</locale>
|
||||
<locale>de-CH</locale>
|
||||
<locale>de-DE</locale>
|
||||
<locale>el</locale>
|
||||
<locale map-from="en_GB">en-GB</locale>
|
||||
<locale>es-ES</locale>
|
||||
<locale>es-MX</locale>
|
||||
<locale>fa</locale>
|
||||
<locale>fi</locale>
|
||||
<locale>fr</locale>
|
||||
<locale>gu</locale>
|
||||
<locale>he</locale>
|
||||
<locale>hi</locale>
|
||||
<locale>hr</locale>
|
||||
<locale>hu</locale>
|
||||
<locale>id</locale>
|
||||
<locale>is</locale>
|
||||
<locale>it</locale>
|
||||
<locale>ja</locale>
|
||||
<locale>kn</locale>
|
||||
<locale>ko</locale>
|
||||
<locale>lv</locale>
|
||||
<locale>ml</locale>
|
||||
<locale>mr</locale>
|
||||
<locale>ms</locale>
|
||||
<locale>nb</locale>
|
||||
<locale>nl</locale>
|
||||
<locale>or</locale>
|
||||
<locale>pl</locale>
|
||||
<locale>pt-PT</locale>
|
||||
<locale map-from="pt_BR">pt-BR</locale>
|
||||
<locale>ru</locale>
|
||||
<locale>si</locale>
|
||||
<locale>sk</locale>
|
||||
<locale>sr-Cyrl</locale>
|
||||
<locale map-from="sr@Latn">sr-Latn</locale>
|
||||
<locale>sv</locale>
|
||||
<locale>ta-IN</locale>
|
||||
<locale>te</locale>
|
||||
<locale>th</locale>
|
||||
<locale>tr</locale>
|
||||
<locale>uk</locale>
|
||||
<locale map-from="zh_CN">zh-Hans-CN</locale>
|
||||
<locale map-from="zh_TW">zh-Hant-TW</locale>
|
||||
<locale>af</locale>
|
||||
<locale>am</locale>
|
||||
<locale>az</locale>
|
||||
<locale>bn-BD</locale>
|
||||
<locale>cy</locale>
|
||||
<locale>eo</locale>
|
||||
<locale>et</locale>
|
||||
<locale>eu</locale>
|
||||
<locale>ga</locale>
|
||||
<locale>gl</locale>
|
||||
<locale>ka</locale>
|
||||
<locale>lt</locale>
|
||||
<locale>nn</locale>
|
||||
<locale>ro</locale>
|
||||
<locale>sl</locale>
|
||||
<locale>sq</locale>
|
||||
<locale>vi</locale>
|
||||
<locale>ast</locale>
|
||||
<locale>bs</locale>
|
||||
<locale>nds</locale>
|
||||
<locale>ky</locale>
|
||||
<locale>la</locale>
|
||||
<locale>mn</locale>
|
||||
<locale>tl</locale>
|
||||
<locale>xh</locale>
|
||||
<locale>pa</locale>
|
||||
<locale>mai</locale>
|
||||
<locale>es</locale>
|
||||
<locale>de</locale>
|
||||
<locale>brx</locale>
|
||||
<locale>ta</locale>
|
||||
<locale>br</locale>
|
||||
<locale>kk</locale>
|
||||
</locales>
|
||||
|
||||
</config>
|
||||
120
anaconda-addon/po/zh_CN.po
Normal file
120
anaconda-addon/po/zh_CN.po
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
# 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 <xhuang@redhat.com>, 2007.
|
||||
# Leah Liu <lliu@redhat.com>, 2010.
|
||||
# leahliu <lliu@redhat.com>, 2012. #zanata
|
||||
# yangrr <ruyang@redhat.com>, 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 <ruyang@redhat.com>\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 "错误!找不到引导装载程序的配置文件,配置终止!"
|
||||
118
anaconda-addon/po/zh_TW.po
Normal file
118
anaconda-addon/po/zh_TW.po
Normal file
|
|
@ -0,0 +1,118 @@
|
|||
# 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 <ccheng@redhat.com>, 2007.
|
||||
# Terry Chuang <tchuang@redhat.com>, 2010.
|
||||
# snowlet <snowlet@fedoraproject.org>, 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 <snowlet@fedoraproject.org>\n"
|
||||
"Language-Team: Traditional Chinese <zh_TW@li.org>\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(開機載入程式)的設定檔,放棄設定!"
|
||||
30
dracut-kdump-capture.service
Normal file
30
dracut-kdump-capture.service
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# This file is part of systemd.
|
||||
#
|
||||
# systemd is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published by
|
||||
# the Free Software Foundation; either version 2.1 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
[Unit]
|
||||
Description=Kdump Vmcore Save Service
|
||||
After=initrd.target initrd-parse-etc.service sysroot.mount
|
||||
After=dracut-initqueue.service dracut-pre-mount.service dracut-mount.service dracut-pre-pivot.service
|
||||
Before=initrd-cleanup.service
|
||||
ConditionPathExists=/etc/initrd-release
|
||||
OnFailure=emergency.target
|
||||
OnFailureIsolate=yes
|
||||
|
||||
[Service]
|
||||
Environment=DRACUT_SYSTEMD=1
|
||||
Environment=NEWROOT=/sysroot
|
||||
Type=oneshot
|
||||
ExecStart=/bin/kdump.sh
|
||||
StandardInput=null
|
||||
StandardOutput=syslog
|
||||
StandardError=syslog+console
|
||||
KillMode=process
|
||||
RemainAfterExit=yes
|
||||
|
||||
# Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
|
||||
# terminates cleanly.
|
||||
KillSignal=SIGHUP
|
||||
28
dracut-kdump-emergency.service
Normal file
28
dracut-kdump-emergency.service
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# This file is part of systemd.
|
||||
#
|
||||
# systemd is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published by
|
||||
# the Free Software Foundation; either version 2.1 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
# This service will be placed in kdump initramfs and replace both the systemd
|
||||
# emergency service and dracut emergency shell. IOW, any emergency will be
|
||||
# kick this service and in turn isolating to kdump error handler.
|
||||
|
||||
[Unit]
|
||||
Description=Kdump Emergency
|
||||
DefaultDependencies=no
|
||||
IgnoreOnIsolate=yes
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/systemctl --no-block isolate kdump-error-handler.service
|
||||
Type=oneshot
|
||||
StandardInput=tty-force
|
||||
StandardOutput=inherit
|
||||
StandardError=inherit
|
||||
KillMode=process
|
||||
IgnoreSIGPIPE=no
|
||||
|
||||
# Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
|
||||
# terminates cleanly.
|
||||
KillSignal=SIGHUP
|
||||
14
dracut-kdump-emergency.target
Normal file
14
dracut-kdump-emergency.target
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# This file is part of systemd.
|
||||
#
|
||||
# systemd is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published by
|
||||
# the Free Software Foundation; either version 2.1 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
[Unit]
|
||||
Description=Emergency Mode
|
||||
Documentation=man:systemd.special(7)
|
||||
Requires=emergency.service
|
||||
After=emergency.service
|
||||
AllowIsolate=yes
|
||||
IgnoreOnIsolate=yes
|
||||
34
dracut-kdump-error-handler.service
Normal file
34
dracut-kdump-error-handler.service
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# This file is part of systemd.
|
||||
#
|
||||
# systemd is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published by
|
||||
# the Free Software Foundation; either version 2.1 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
# This service will run the real kdump error handler code. Executing the
|
||||
# default action configured in kdump.conf
|
||||
|
||||
[Unit]
|
||||
Description=Kdump Error Handler
|
||||
DefaultDependencies=no
|
||||
After=systemd-vconsole-setup.service
|
||||
Wants=systemd-vconsole-setup.service
|
||||
AllowIsolate=yes
|
||||
|
||||
[Service]
|
||||
Environment=HOME=/
|
||||
Environment=DRACUT_SYSTEMD=1
|
||||
Environment=NEWROOT=/sysroot
|
||||
WorkingDirectory=/
|
||||
ExecStart=/bin/kdump-error-handler.sh
|
||||
ExecStopPost=-/usr/bin/systemctl --fail --no-block default
|
||||
Type=oneshot
|
||||
StandardInput=tty-force
|
||||
StandardOutput=inherit
|
||||
StandardError=inherit
|
||||
KillMode=process
|
||||
IgnoreSIGPIPE=no
|
||||
|
||||
# Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
|
||||
# terminates cleanly.
|
||||
KillSignal=SIGHUP
|
||||
10
dracut-kdump-error-handler.sh
Executable file
10
dracut-kdump-error-handler.sh
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
. /lib/kdump-lib-initramfs.sh
|
||||
|
||||
set -o pipefail
|
||||
export PATH=$PATH:$KDUMP_SCRIPT_DIR
|
||||
|
||||
get_kdump_confs
|
||||
do_default_action
|
||||
do_final_action
|
||||
204
dracut-kdump.sh
Executable file
204
dracut-kdump.sh
Executable file
|
|
@ -0,0 +1,204 @@
|
|||
#!/bin/sh
|
||||
|
||||
# continue here only if we have to save dump.
|
||||
if [ -f /etc/fadump.initramfs ] && [ ! -f /proc/device-tree/rtas/ibm,kernel-dump ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
exec &> /dev/console
|
||||
. /lib/dracut-lib.sh
|
||||
. /lib/kdump-lib-initramfs.sh
|
||||
|
||||
set -o pipefail
|
||||
DUMP_RETVAL=0
|
||||
|
||||
export PATH=$PATH:$KDUMP_SCRIPT_DIR
|
||||
|
||||
do_dump()
|
||||
{
|
||||
local _ret
|
||||
|
||||
eval $DUMP_INSTRUCTION
|
||||
_ret=$?
|
||||
|
||||
if [ $_ret -ne 0 ]; then
|
||||
echo "kdump: saving vmcore failed"
|
||||
fi
|
||||
|
||||
return $_ret
|
||||
}
|
||||
|
||||
do_kdump_pre()
|
||||
{
|
||||
if [ -n "$KDUMP_PRE" ]; then
|
||||
"$KDUMP_PRE"
|
||||
fi
|
||||
}
|
||||
|
||||
do_kdump_post()
|
||||
{
|
||||
if [ -n "$KDUMP_POST" ]; then
|
||||
"$KDUMP_POST" "$1"
|
||||
fi
|
||||
}
|
||||
|
||||
add_dump_code()
|
||||
{
|
||||
DUMP_INSTRUCTION=$1
|
||||
}
|
||||
|
||||
dump_raw()
|
||||
{
|
||||
local _raw=$1
|
||||
|
||||
[ -b "$_raw" ] || return 1
|
||||
|
||||
echo "kdump: saving to raw disk $_raw"
|
||||
|
||||
if ! $(echo -n $CORE_COLLECTOR|grep -q makedumpfile); then
|
||||
_src_size=`ls -l /proc/vmcore | cut -d' ' -f5`
|
||||
_src_size_mb=$(($_src_size / 1048576))
|
||||
monitor_dd_progress $_src_size_mb &
|
||||
fi
|
||||
|
||||
echo "kdump: saving vmcore"
|
||||
$CORE_COLLECTOR /proc/vmcore | dd of=$_raw bs=$DD_BLKSIZE >> /tmp/dd_progress_file 2>&1 || return 1
|
||||
sync
|
||||
|
||||
echo "kdump: saving vmcore complete"
|
||||
return 0
|
||||
}
|
||||
|
||||
dump_ssh()
|
||||
{
|
||||
local _opt="-i $1 -o BatchMode=yes -o StrictHostKeyChecking=yes"
|
||||
local _dir="$KDUMP_PATH/$HOST_IP-$DATEDIR"
|
||||
local _host=$2
|
||||
|
||||
echo "kdump: saving to $_host:$_dir"
|
||||
|
||||
cat /var/lib/random-seed > /dev/urandom
|
||||
ssh -q $_opt $_host mkdir -p $_dir || return 1
|
||||
|
||||
save_vmcore_dmesg_ssh ${DMESG_COLLECTOR} ${_dir} "${_opt}" $_host
|
||||
|
||||
echo "kdump: saving vmcore"
|
||||
|
||||
if [ "${CORE_COLLECTOR%%[[:blank:]]*}" = "scp" ]; then
|
||||
scp -q $_opt /proc/vmcore "$_host:$_dir/vmcore-incomplete" || return 1
|
||||
ssh $_opt $_host "mv $_dir/vmcore-incomplete $_dir/vmcore" || return 1
|
||||
else
|
||||
$CORE_COLLECTOR /proc/vmcore | ssh $_opt $_host "dd bs=512 of=$_dir/vmcore-incomplete" || return 1
|
||||
ssh $_opt $_host "mv $_dir/vmcore-incomplete $_dir/vmcore.flat" || return 1
|
||||
fi
|
||||
|
||||
echo "kdump: saving vmcore complete"
|
||||
return 0
|
||||
}
|
||||
|
||||
save_vmcore_dmesg_ssh() {
|
||||
local _dmesg_collector=$1
|
||||
local _path=$2
|
||||
local _opts="$3"
|
||||
local _location=$4
|
||||
|
||||
echo "kdump: saving vmcore-dmesg.txt"
|
||||
$_dmesg_collector /proc/vmcore | ssh $_opts $_location "dd of=$_path/vmcore-dmesg-incomplete.txt"
|
||||
_exitcode=$?
|
||||
|
||||
if [ $_exitcode -eq 0 ]; then
|
||||
ssh -q $_opts $_location mv $_path/vmcore-dmesg-incomplete.txt $_path/vmcore-dmesg.txt
|
||||
echo "kdump: saving vmcore-dmesg.txt complete"
|
||||
else
|
||||
echo "kdump: saving vmcore-dmesg.txt failed"
|
||||
fi
|
||||
}
|
||||
|
||||
get_host_ip()
|
||||
{
|
||||
local _host
|
||||
if is_nfs_dump_target || is_ssh_dump_target
|
||||
then
|
||||
kdumpnic=$(getarg kdumpnic=)
|
||||
[ -z "$kdumpnic" ] && echo "kdump: failed to get kdumpnic!" && return 1
|
||||
_host=`ip addr show dev $kdumpnic|grep '[ ]*inet'`
|
||||
[ $? -ne 0 ] && echo "kdump: wrong kdumpnic: $kdumpnic" && return 1
|
||||
_host=`echo $_host | head -n 1 | cut -d' ' -f2`
|
||||
_host="${_host%%/*}"
|
||||
[ -z "$_host" ] && echo "kdump: wrong kdumpnic: $kdumpnic" && return 1
|
||||
HOST_IP=$_host
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
read_kdump_conf()
|
||||
{
|
||||
if [ ! -f "$KDUMP_CONF" ]; then
|
||||
echo "kdump: $KDUMP_CONF not found"
|
||||
return
|
||||
fi
|
||||
|
||||
get_kdump_confs
|
||||
|
||||
# rescan for add code for dump target
|
||||
while read config_opt config_val;
|
||||
do
|
||||
# remove inline comments after the end of a directive.
|
||||
config_val=$(strip_comments $config_val)
|
||||
case "$config_opt" in
|
||||
dracut_args)
|
||||
config_val=$(get_dracut_args_target "$config_val")
|
||||
[ -n "$config_val" ] && add_dump_code "dump_fs $config_val"
|
||||
;;
|
||||
ext[234]|xfs|btrfs|minix|nfs)
|
||||
add_dump_code "dump_fs $config_val"
|
||||
;;
|
||||
raw)
|
||||
add_dump_code "dump_raw $config_val"
|
||||
;;
|
||||
ssh)
|
||||
add_dump_code "dump_ssh $SSH_KEY_LOCATION $config_val"
|
||||
;;
|
||||
esac
|
||||
done < $KDUMP_CONF
|
||||
}
|
||||
|
||||
fence_kdump_notify()
|
||||
{
|
||||
if [ -n "$FENCE_KDUMP_NODES" ]; then
|
||||
$FENCE_KDUMP_SEND $FENCE_KDUMP_ARGS $FENCE_KDUMP_NODES &
|
||||
fi
|
||||
}
|
||||
|
||||
read_kdump_conf
|
||||
fence_kdump_notify
|
||||
|
||||
get_host_ip
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "kdump: get_host_ip exited with non-zero status!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$DUMP_INSTRUCTION" ]; then
|
||||
add_dump_code "dump_fs $NEWROOT"
|
||||
fi
|
||||
|
||||
do_kdump_pre
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "kdump: kdump_pre script exited with non-zero status!"
|
||||
do_final_action
|
||||
fi
|
||||
make_trace_mem "kdump saving vmcore" '1:shortmem' '2+:mem' '3+:slab'
|
||||
do_dump
|
||||
DUMP_RETVAL=$?
|
||||
|
||||
do_kdump_post $DUMP_RETVAL
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "kdump: kdump_post script exited with non-zero status!"
|
||||
fi
|
||||
|
||||
if [ $DUMP_RETVAL -ne 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
do_final_action
|
||||
763
dracut-module-setup.sh
Executable file
763
dracut-module-setup.sh
Executable file
|
|
@ -0,0 +1,763 @@
|
|||
#!/bin/bash
|
||||
|
||||
. $dracutfunctions
|
||||
. /lib/kdump/kdump-lib.sh
|
||||
|
||||
if ! [[ -d "${initdir}/tmp" ]]; then
|
||||
mkdir -p "${initdir}/tmp"
|
||||
fi
|
||||
|
||||
check() {
|
||||
[[ $debug ]] && set -x
|
||||
#kdumpctl sets this explicitly
|
||||
if [ -z "$IN_KDUMP" ] || [ ! -f /etc/kdump.conf ]
|
||||
then
|
||||
return 1
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
depends() {
|
||||
local _dep="base shutdown"
|
||||
|
||||
if [ -n "$( find /sys/devices -name drm )" ]; then
|
||||
_dep="$_dep drm"
|
||||
fi
|
||||
|
||||
if is_generic_fence_kdump -o is_pcs_fence_kdump; then
|
||||
_dep="$_dep network"
|
||||
fi
|
||||
|
||||
echo $_dep
|
||||
return 0
|
||||
}
|
||||
|
||||
kdump_get_persistent_dev() {
|
||||
local dev="${1//\"/}"
|
||||
|
||||
case "$dev" in
|
||||
UUID=*)
|
||||
dev=`blkid -U "${dev#UUID=}"`
|
||||
;;
|
||||
LABEL=*)
|
||||
dev=`blkid -L "${dev#LABEL=}"`
|
||||
;;
|
||||
esac
|
||||
echo $(get_persistent_dev "$dev")
|
||||
}
|
||||
|
||||
kdump_is_bridge() {
|
||||
[ -d /sys/class/net/"$1"/bridge ]
|
||||
}
|
||||
|
||||
kdump_is_bond() {
|
||||
[ -d /sys/class/net/"$1"/bonding ]
|
||||
}
|
||||
|
||||
kdump_is_team() {
|
||||
[ -f /usr/bin/teamnl ] && teamnl $1 ports &> /dev/null
|
||||
}
|
||||
|
||||
kdump_is_vlan() {
|
||||
[ -f /proc/net/vlan/"$1" ]
|
||||
}
|
||||
|
||||
# $1: netdev name
|
||||
source_ifcfg_file() {
|
||||
local ifcfg_file
|
||||
|
||||
ifcfg_file=$(get_ifcfg_filename $1)
|
||||
if [ -f "${ifcfg_file}" ]; then
|
||||
. ${ifcfg_file}
|
||||
else
|
||||
dwarning "The ifcfg file of $1 is not found!"
|
||||
fi
|
||||
}
|
||||
|
||||
# $1: netdev name
|
||||
kdump_setup_dns() {
|
||||
local _nameserver _dns
|
||||
local _dnsfile=${initdir}/etc/cmdline.d/42dns.conf
|
||||
|
||||
source_ifcfg_file $1
|
||||
|
||||
[ -n "$DNS1" ] && echo "nameserver=$DNS1" > "$_dnsfile"
|
||||
[ -n "$DNS2" ] && echo "nameserver=$DNS2" >> "$_dnsfile"
|
||||
|
||||
while read content;
|
||||
do
|
||||
_nameserver=$(echo $content | grep ^nameserver)
|
||||
[ -z "$_nameserver" ] && continue
|
||||
|
||||
_dns=$(echo $_nameserver | cut -d' ' -f2)
|
||||
[ -z "$_dns" ] && continue
|
||||
|
||||
if [ ! -f $_dnsfile ] || [ ! $(cat $_dnsfile | grep -q $_dns) ]; then
|
||||
echo "nameserver=$_dns" >> "$_dnsfile"
|
||||
fi
|
||||
done < "/etc/resolv.conf"
|
||||
}
|
||||
|
||||
#$1: netdev name
|
||||
#$2: srcaddr
|
||||
#if it use static ip echo it, or echo null
|
||||
kdump_static_ip() {
|
||||
local _netdev="$1" _srcaddr="$2" _ipv6_flag
|
||||
local _netmask _gateway _ipaddr _target _nexthop
|
||||
|
||||
_ipaddr=$(ip addr show dev $_netdev permanent | awk "/ $_srcaddr\/.* /{print \$2}")
|
||||
|
||||
if is_ipv6_address $_srcaddr; then
|
||||
_ipv6_flag="-6"
|
||||
fi
|
||||
|
||||
if [ -n "$_ipaddr" ]; then
|
||||
_gateway=$(ip $_ipv6_flag route list dev $_netdev | \
|
||||
awk '/^default /{print $3}' | head -n 1)
|
||||
|
||||
if [ "x" != "x"$_ipv6_flag ]; then
|
||||
# _ipaddr="2002::56ff:feb6:56d5/64", _netmask is the number after "/"
|
||||
_netmask=${_ipaddr#*\/}
|
||||
_srcaddr="[$_srcaddr]"
|
||||
_gateway="[$_gateway]"
|
||||
else
|
||||
_netmask=$(ipcalc -m $_ipaddr | cut -d'=' -f2)
|
||||
fi
|
||||
echo -n "${_srcaddr}::${_gateway}:${_netmask}::"
|
||||
fi
|
||||
|
||||
/sbin/ip $_ipv6_flag route show | grep -v default | grep ".*via.* $_netdev " |\
|
||||
while read _route; do
|
||||
_target=`echo $_route | cut -d ' ' -f1`
|
||||
_nexthop=`echo $_route | cut -d ' ' -f3`
|
||||
if [ "x" != "x"$_ipv6_flag ]; then
|
||||
_target="[$_target]"
|
||||
_nexthop="[$_nexthop]"
|
||||
fi
|
||||
echo "rd.route=$_target:$_nexthop:$_netdev"
|
||||
done >> ${initdir}/etc/cmdline.d/45route-static.conf
|
||||
}
|
||||
|
||||
kdump_get_mac_addr() {
|
||||
cat /sys/class/net/$1/address
|
||||
}
|
||||
|
||||
#Bonding or team master modifies the mac address
|
||||
#of its slaves, we should use perm address
|
||||
kdump_get_perm_addr() {
|
||||
local addr=$(ethtool -P $1 | sed -e 's/Permanent address: //')
|
||||
if [ -z "$addr" ] || [ "$addr" = "00:00:00:00:00:00" ]
|
||||
then
|
||||
derror "Can't get the permanent address of $1"
|
||||
else
|
||||
echo "$addr"
|
||||
fi
|
||||
}
|
||||
|
||||
# Prefix kernel assigned names with "kdump-". EX: eth0 -> kdump-eth0
|
||||
# Because kernel assigned names are not persistent between 1st and 2nd
|
||||
# kernel. We could probably end up with eth0 being eth1, eth0 being
|
||||
# eth1, and naming conflict happens.
|
||||
kdump_setup_ifname() {
|
||||
local _ifname
|
||||
|
||||
# If ifname already has 'kdump-' prefix, we must be switching from
|
||||
# fadump to kdump. Skip prefixing 'kdump-' in this case as adding
|
||||
# another prefix may truncate the ifname. Since an ifname with
|
||||
# 'kdump-' is already persistent, this should be fine.
|
||||
if [[ $1 =~ eth* ]] && [[ ! $1 =~ ^kdump-* ]]; then
|
||||
_ifname="kdump-$1"
|
||||
else
|
||||
_ifname="$1"
|
||||
fi
|
||||
|
||||
echo "$_ifname"
|
||||
}
|
||||
|
||||
kdump_setup_bridge() {
|
||||
local _netdev=$1
|
||||
local _brif _dev _mac _kdumpdev
|
||||
for _dev in `ls /sys/class/net/$_netdev/brif/`; do
|
||||
_kdumpdev=$_dev
|
||||
if kdump_is_bond "$_dev"; then
|
||||
kdump_setup_bond "$_dev"
|
||||
elif kdump_is_team "$_dev"; then
|
||||
kdump_setup_team "$_dev"
|
||||
elif kdump_is_vlan "$_dev"; then
|
||||
kdump_setup_vlan "$_dev"
|
||||
else
|
||||
_mac=$(kdump_get_mac_addr $_dev)
|
||||
_kdumpdev=$(kdump_setup_ifname $_dev)
|
||||
echo -n " ifname=$_kdumpdev:$_mac" >> ${initdir}/etc/cmdline.d/41bridge.conf
|
||||
fi
|
||||
_brif+="$_kdumpdev,"
|
||||
done
|
||||
echo " bridge=$_netdev:$(echo $_brif | sed -e 's/,$//')" >> ${initdir}/etc/cmdline.d/41bridge.conf
|
||||
}
|
||||
|
||||
kdump_setup_bond() {
|
||||
local _netdev=$1
|
||||
local _dev _mac _slaves _kdumpdev
|
||||
for _dev in `cat /sys/class/net/$_netdev/bonding/slaves`; do
|
||||
_mac=$(kdump_get_perm_addr $_dev)
|
||||
_kdumpdev=$(kdump_setup_ifname $_dev)
|
||||
echo -n " ifname=$_kdumpdev:$_mac" >> ${initdir}/etc/cmdline.d/42bond.conf
|
||||
_slaves+="$_kdumpdev,"
|
||||
done
|
||||
echo -n " bond=$_netdev:$(echo $_slaves | sed 's/,$//')" >> ${initdir}/etc/cmdline.d/42bond.conf
|
||||
# Get bond options specified in ifcfg
|
||||
|
||||
source_ifcfg_file $_netdev
|
||||
|
||||
bondoptions="$(echo :$BONDING_OPTS | sed 's/\s\+/,/')"
|
||||
echo "$bondoptions" >> ${initdir}/etc/cmdline.d/42bond.conf
|
||||
}
|
||||
|
||||
kdump_setup_team() {
|
||||
local _netdev=$1
|
||||
local _dev _mac _slaves _kdumpdev
|
||||
for _dev in `teamnl $_netdev ports | awk -F':' '{print $2}'`; do
|
||||
_mac=$(kdump_get_perm_addr $_dev)
|
||||
_kdumpdev=$(kdump_setup_ifname $_dev)
|
||||
echo -n " ifname=$_kdumpdev:$_mac" >> ${initdir}/etc/cmdline.d/44team.conf
|
||||
_slaves+="$_kdumpdev,"
|
||||
done
|
||||
echo " team=$_netdev:$(echo $_slaves | sed -e 's/,$//')" >> ${initdir}/etc/cmdline.d/44team.conf
|
||||
#Buggy version teamdctl outputs to stderr!
|
||||
#Try to use the latest version of teamd.
|
||||
teamdctl "$_netdev" config dump > ${initdir}/tmp/$$-$_netdev.conf
|
||||
if [ $? -ne 0 ]
|
||||
then
|
||||
derror "teamdctl failed."
|
||||
exit 1
|
||||
fi
|
||||
inst_dir /etc/teamd
|
||||
inst_simple ${initdir}/tmp/$$-$_netdev.conf "/etc/teamd/$_netdev.conf"
|
||||
rm -f ${initdir}/tmp/$$-$_netdev.conf
|
||||
}
|
||||
|
||||
kdump_setup_vlan() {
|
||||
local _netdev=$1
|
||||
local _phydev="$(awk '/^Device:/{print $2}' /proc/net/vlan/"$_netdev")"
|
||||
local _netmac="$(kdump_get_mac_addr $_phydev)"
|
||||
local _kdumpdev
|
||||
|
||||
#Just support vlan over bond, it is not easy
|
||||
#to support all other complex setup
|
||||
if kdump_is_bridge "$_phydev"; then
|
||||
derror "Vlan over bridge is not supported!"
|
||||
exit 1
|
||||
elif kdump_is_team "$_phydev"; then
|
||||
derror "Vlan over team is not supported!"
|
||||
exit 1
|
||||
elif kdump_is_bond "$_phydev"; then
|
||||
kdump_setup_bond "$_phydev"
|
||||
echo " vlan=$_netdev:$_phydev" > ${initdir}/etc/cmdline.d/43vlan.conf
|
||||
else
|
||||
_kdumpdev="$(kdump_setup_ifname $_phydev)"
|
||||
echo " vlan=$_netdev:$_kdumpdev ifname=$_kdumpdev:$_netmac" > ${initdir}/etc/cmdline.d/43vlan.conf
|
||||
fi
|
||||
}
|
||||
|
||||
# setup s390 znet cmdline
|
||||
# $1: netdev name
|
||||
kdump_setup_znet() {
|
||||
local _options=""
|
||||
|
||||
source_ifcfg_file $1
|
||||
|
||||
for i in $OPTIONS; do
|
||||
_options=${_options},$i
|
||||
done
|
||||
echo rd.znet=${NETTYPE},${SUBCHANNELS}${_options} > ${initdir}/etc/cmdline.d/30znet.conf
|
||||
}
|
||||
|
||||
# Setup dracut to bringup a given network interface
|
||||
kdump_setup_netdev() {
|
||||
local _netdev=$1 _srcaddr=$2
|
||||
local _static _proto _ip_conf _ip_opts _ifname_opts
|
||||
|
||||
if [ "$(uname -m)" = "s390x" ]; then
|
||||
kdump_setup_znet $_netdev
|
||||
fi
|
||||
|
||||
_netmac=$(kdump_get_mac_addr $_netdev)
|
||||
_static=$(kdump_static_ip $_netdev $_srcaddr)
|
||||
if [ -n "$_static" ]; then
|
||||
_proto=none
|
||||
else
|
||||
_proto=dhcp
|
||||
fi
|
||||
|
||||
_ip_conf="${initdir}/etc/cmdline.d/40ip.conf"
|
||||
_ip_opts=" ip=${_static}$(kdump_setup_ifname $_netdev):${_proto}"
|
||||
|
||||
# dracut doesn't allow duplicated configuration for same NIC, even they're exactly the same.
|
||||
# so we have to avoid adding duplicates
|
||||
# We should also check /proc/cmdline for existing ip=xx arg.
|
||||
# For example, iscsi boot will specify ip=xxx arg in cmdline.
|
||||
if [ ! -f $_ip_conf ] || ! grep -q $_ip_opts $_ip_conf &&\
|
||||
! grep -q "ip=[^[:space:]]*$_netdev" /proc/cmdline; then
|
||||
echo "$_ip_opts" >> $_ip_conf
|
||||
fi
|
||||
|
||||
if kdump_is_bridge "$_netdev"; then
|
||||
kdump_setup_bridge "$_netdev"
|
||||
elif kdump_is_bond "$_netdev"; then
|
||||
kdump_setup_bond "$_netdev"
|
||||
elif kdump_is_team "$_netdev"; then
|
||||
kdump_setup_team "$_netdev"
|
||||
elif kdump_is_vlan "$_netdev"; then
|
||||
kdump_setup_vlan "$_netdev"
|
||||
else
|
||||
_ifname_opts=" ifname=$(kdump_setup_ifname $_netdev):$(kdump_get_mac_addr $_netdev)"
|
||||
echo "$_ifname_opts" >> $_ip_conf
|
||||
fi
|
||||
|
||||
kdump_setup_dns "$_netdev"
|
||||
}
|
||||
|
||||
get_ip_route_field()
|
||||
{
|
||||
if `echo $1 | grep -q $2`; then
|
||||
echo ${1##*$2} | cut -d ' ' -f1
|
||||
fi
|
||||
}
|
||||
|
||||
#Function:kdump_install_net
|
||||
#$1: config values of net line in kdump.conf
|
||||
#$2: srcaddr of network device
|
||||
kdump_install_net() {
|
||||
local _server _netdev _srcaddr _route _serv_tmp
|
||||
local config_val="$1"
|
||||
|
||||
_server=$(get_remote_host $config_val)
|
||||
|
||||
if is_hostname $_server; then
|
||||
_serv_tmp=`getent ahosts $_server | grep -v : | head -n 1`
|
||||
if [ -z "$_serv_tmp" ]; then
|
||||
_serv_tmp=`getent ahosts $_server | head -n 1`
|
||||
fi
|
||||
_server=`echo $_serv_tmp | cut -d' ' -f1`
|
||||
fi
|
||||
|
||||
_route=`/sbin/ip -o route get to $_server 2>&1`
|
||||
[ $? != 0 ] && echo "Bad kdump location: $config_val" && exit 1
|
||||
|
||||
#the field in the ip output changes if we go to another subnet
|
||||
_srcaddr=$(get_ip_route_field "$_route" "src")
|
||||
_netdev=$(get_ip_route_field "$_route" "dev")
|
||||
|
||||
kdump_setup_netdev "${_netdev}" "${_srcaddr}"
|
||||
|
||||
#save netdev used for kdump as cmdline
|
||||
# Whoever calling kdump_install_net() is setting up the default gateway,
|
||||
# ie. bootdev/kdumpnic. So don't override the setting if calling
|
||||
# kdump_install_net() for another time. For example, after setting eth0 as
|
||||
# the default gate way for network dump, eth1 in the fence kdump path will
|
||||
# call kdump_install_net again and we don't want eth1 to be the default
|
||||
# gateway.
|
||||
if [ ! -f ${initdir}/etc/cmdline.d/60kdumpnic.conf ] &&
|
||||
[ ! -f ${initdir}/etc/cmdline.d/70bootdev.conf ]; then
|
||||
echo "kdumpnic=$(kdump_setup_ifname $_netdev)" > ${initdir}/etc/cmdline.d/60kdumpnic.conf
|
||||
echo "bootdev=$(kdump_setup_ifname $_netdev)" > ${initdir}/etc/cmdline.d/70bootdev.conf
|
||||
fi
|
||||
}
|
||||
|
||||
default_dump_target_install_conf()
|
||||
{
|
||||
local _target _fstype
|
||||
local _mntpoint _save_path
|
||||
|
||||
is_user_configured_dump_target && return
|
||||
|
||||
_save_path=$(get_option_value "path")
|
||||
[ -z "$_save_path" ] && _save_path=$DEFAULT_PATH
|
||||
|
||||
# strip the duplicated "/"
|
||||
_save_path=$(echo $_save_path | tr -s /)
|
||||
|
||||
_mntpoint=$(get_mntpoint_from_path $_save_path)
|
||||
_target=$(get_target_from_path $_save_path)
|
||||
|
||||
if is_atomic && is_bind_mount $_mntpoint; then
|
||||
_save_path=${_save_path##"$_mntpoint"}
|
||||
# the real dump path in the 2nd kernel, if the mount point is bind mounted.
|
||||
_save_path=$(get_bind_mount_directory $_mntpoint)/$_save_path
|
||||
_mntpoint=$(get_mntpoint_from_target $_target)
|
||||
|
||||
# the absolute path in the 1st kernel
|
||||
_save_path=$_mntpoint/$_save_path
|
||||
fi
|
||||
|
||||
_fstype=$(get_fs_type_from_target $_target)
|
||||
if is_fs_type_nfs $_fstype; then
|
||||
kdump_install_net "$_target"
|
||||
_fstype="nfs"
|
||||
else
|
||||
_target=$(kdump_get_persistent_dev $_target)
|
||||
fi
|
||||
|
||||
echo "$_fstype $_target" >> ${initdir}/tmp/$$-kdump.conf
|
||||
|
||||
# strip the duplicated "/"
|
||||
_save_path=$(echo $_save_path | tr -s /)
|
||||
# don't touch the path under root mount
|
||||
if [ "$_mntpoint" != "/" ]; then
|
||||
_save_path=${_save_path##"$_mntpoint"}
|
||||
fi
|
||||
|
||||
#erase the old path line, then insert the parsed path
|
||||
sed -i "/^path/d" ${initdir}/tmp/$$-kdump.conf
|
||||
echo "path $_save_path" >> ${initdir}/tmp/$$-kdump.conf
|
||||
}
|
||||
|
||||
adjust_bind_mount_path()
|
||||
{
|
||||
local _target=$1
|
||||
local _save_path=$(get_option_value "path")
|
||||
[ -z "$_save_path" ] && _save_path=$DEFAULT_PATH
|
||||
|
||||
# strip the duplicated "/"
|
||||
_save_path=$(echo $_save_path | tr -s /)
|
||||
|
||||
local _absolute_save_path=$(get_mntpoint_from_target $_target)/$_save_path
|
||||
_absolute_save_path=$(echo "$_absolute_save_path" | tr -s /)
|
||||
local _mntpoint=$(get_mntpoint_from_path $_absolute_save_path)
|
||||
|
||||
if is_bind_mount $_mntpoint; then
|
||||
_save_path=${_absolute_save_path##"$_mntpoint"}
|
||||
# the real dump path in the 2nd kernel, if the mount point is bind mounted.
|
||||
_save_path=$(get_bind_mount_directory $_mntpoint)/$_save_path
|
||||
|
||||
#erase the old path line, then insert the parsed path
|
||||
sed -i "/^path/d" ${initdir}/tmp/$$-kdump.conf
|
||||
echo "path $_save_path" >> ${initdir}/tmp/$$-kdump.conf
|
||||
fi
|
||||
}
|
||||
|
||||
#install kdump.conf and what user specifies in kdump.conf
|
||||
kdump_install_conf() {
|
||||
local _opt _val _pdev
|
||||
sed -ne '/^#/!p' /etc/kdump.conf > ${initdir}/tmp/$$-kdump.conf
|
||||
|
||||
while read _opt _val;
|
||||
do
|
||||
# remove inline comments after the end of a directive.
|
||||
_val=$(strip_comments $_val)
|
||||
case "$_opt" in
|
||||
raw)
|
||||
_pdev=$(persistent_policy="by-id" kdump_get_persistent_dev $_val)
|
||||
sed -i -e "s#^$_opt[[:space:]]\+$_val#$_opt $_pdev#" ${initdir}/tmp/$$-kdump.conf
|
||||
;;
|
||||
ext[234]|xfs|btrfs|minix)
|
||||
_pdev=$(kdump_get_persistent_dev $_val)
|
||||
sed -i -e "s#^$_opt[[:space:]]\+$_val#$_opt $_pdev#" ${initdir}/tmp/$$-kdump.conf
|
||||
if is_atomic; then
|
||||
adjust_bind_mount_path "$_val"
|
||||
fi
|
||||
;;
|
||||
ssh|nfs)
|
||||
kdump_install_net "$_val"
|
||||
;;
|
||||
dracut_args)
|
||||
if [[ $(get_dracut_args_fstype "$_val") = nfs* ]] ; then
|
||||
kdump_install_net "$(get_dracut_args_target "$_val")"
|
||||
fi
|
||||
;;
|
||||
kdump_pre|kdump_post|extra_bins)
|
||||
dracut_install $_val
|
||||
;;
|
||||
core_collector)
|
||||
dracut_install "${_val%%[[:blank:]]*}"
|
||||
;;
|
||||
esac
|
||||
done < /etc/kdump.conf
|
||||
|
||||
default_dump_target_install_conf
|
||||
|
||||
kdump_configure_fence_kdump "${initdir}/tmp/$$-kdump.conf"
|
||||
inst "${initdir}/tmp/$$-kdump.conf" "/etc/kdump.conf"
|
||||
rm -f ${initdir}/tmp/$$-kdump.conf
|
||||
}
|
||||
|
||||
# Default sysctl parameters should suffice for kdump kernel.
|
||||
# Remove custom configurations sysctl.conf & sysctl.d/*
|
||||
remove_sysctl_conf() {
|
||||
|
||||
# As custom configurations like vm.min_free_kbytes can lead
|
||||
# to OOM issues in kdump kernel, avoid them
|
||||
rm -f "${initdir}/etc/sysctl.conf"
|
||||
rm -rf "${initdir}/etc/sysctl.d"
|
||||
rm -rf "${initdir}/run/sysctl.d"
|
||||
rm -rf "${initdir}/usr/lib/sysctl.d"
|
||||
}
|
||||
|
||||
kdump_iscsi_get_rec_val() {
|
||||
|
||||
local result
|
||||
|
||||
# The open-iscsi 742 release changed to using flat files in
|
||||
# /var/lib/iscsi.
|
||||
|
||||
result=$(/sbin/iscsiadm --show -m session -r ${1} | grep "^${2} = ")
|
||||
result=${result##* = }
|
||||
echo $result
|
||||
}
|
||||
|
||||
kdump_get_iscsi_initiator() {
|
||||
local _initiator
|
||||
local initiator_conf="/etc/iscsi/initiatorname.iscsi"
|
||||
|
||||
[ -f "$initiator_conf" ] || return 1
|
||||
|
||||
while read _initiator; do
|
||||
[ -z "${_initiator%%#*}" ] && continue # Skip comment lines
|
||||
|
||||
case $_initiator in
|
||||
InitiatorName=*)
|
||||
initiator=${_initiator#InitiatorName=}
|
||||
echo "rd.iscsi.initiator=${initiator}"
|
||||
return 0;;
|
||||
*) ;;
|
||||
esac
|
||||
done < ${initiator_conf}
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
# Figure out iBFT session according to session type
|
||||
is_ibft() {
|
||||
[ "$(kdump_iscsi_get_rec_val $1 "node.discovery_type")" = fw ]
|
||||
}
|
||||
|
||||
kdump_setup_iscsi_device() {
|
||||
local path=$1
|
||||
local tgt_name; local tgt_ipaddr;
|
||||
local username; local password; local userpwd_str;
|
||||
local username_in; local password_in; local userpwd_in_str;
|
||||
local netdev
|
||||
local srcaddr
|
||||
local idev
|
||||
local netroot_str ; local initiator_str;
|
||||
local netroot_conf="${initdir}/etc/cmdline.d/50iscsi.conf"
|
||||
local initiator_conf="/etc/iscsi/initiatorname.iscsi"
|
||||
|
||||
dinfo "Found iscsi component $1"
|
||||
|
||||
# Check once before getting explicit values, so we can bail out early,
|
||||
# e.g. in case of pure-hardware(all-offload) iscsi.
|
||||
if ! /sbin/iscsiadm -m session -r ${path} &>/dev/null ; then
|
||||
return 1
|
||||
fi
|
||||
|
||||
if is_ibft ${path}; then
|
||||
return
|
||||
fi
|
||||
|
||||
tgt_name=$(kdump_iscsi_get_rec_val ${path} "node.name")
|
||||
tgt_ipaddr=$(kdump_iscsi_get_rec_val ${path} "node.conn\[0\].address")
|
||||
|
||||
# get and set username and password details
|
||||
username=$(kdump_iscsi_get_rec_val ${path} "node.session.auth.username")
|
||||
[ "$username" == "<empty>" ] && username=""
|
||||
password=$(kdump_iscsi_get_rec_val ${path} "node.session.auth.password")
|
||||
[ "$password" == "<empty>" ] && password=""
|
||||
username_in=$(kdump_iscsi_get_rec_val ${path} "node.session.auth.username_in")
|
||||
[ -n "$username" ] && userpwd_str="$username:$password"
|
||||
|
||||
# get and set incoming username and password details
|
||||
[ "$username_in" == "<empty>" ] && username_in=""
|
||||
password_in=$(kdump_iscsi_get_rec_val ${path} "node.session.auth.password_in")
|
||||
[ "$password_in" == "<empty>" ] && password_in=""
|
||||
|
||||
[ -n "$username_in" ] && userpwd_in_str=":$username_in:$password_in"
|
||||
|
||||
netdev=$(/sbin/ip route get to ${tgt_ipaddr} | \
|
||||
sed 's|.*dev \(.*\).*|\1|g')
|
||||
srcaddr=$(echo $netdev | awk '{ print $3; exit }')
|
||||
netdev=$(echo $netdev | awk '{ print $1; exit }')
|
||||
|
||||
kdump_setup_netdev $netdev $srcaddr
|
||||
|
||||
# prepare netroot= command line
|
||||
# FIXME: Do we need to parse and set other parameters like protocol, port
|
||||
# iscsi_iface_name, netdev_name, LUN etc.
|
||||
|
||||
if is_ipv6_address $tgt_ipaddr; then
|
||||
tgt_ipaddr="[$tgt_ipaddr]"
|
||||
fi
|
||||
netroot_str="netroot=iscsi:${userpwd_str}${userpwd_in_str}@$tgt_ipaddr::::$tgt_name"
|
||||
|
||||
[[ -f $netroot_conf ]] || touch $netroot_conf
|
||||
|
||||
# If netroot target does not exist already, append.
|
||||
if ! grep -q $netroot_str $netroot_conf; then
|
||||
echo $netroot_str >> $netroot_conf
|
||||
dinfo "Appended $netroot_str to $netroot_conf"
|
||||
fi
|
||||
|
||||
# Setup initator
|
||||
initiator_str=$(kdump_get_iscsi_initiator)
|
||||
[ $? -ne "0" ] && derror "Failed to get initiator name" && return 1
|
||||
|
||||
# If initiator details do not exist already, append.
|
||||
if ! grep -q "$initiator_str" $netroot_conf; then
|
||||
echo "$initiator_str" >> $netroot_conf
|
||||
dinfo "Appended "$initiator_str" to $netroot_conf"
|
||||
fi
|
||||
}
|
||||
|
||||
kdump_check_iscsi_targets () {
|
||||
# If our prerequisites are not met, fail anyways.
|
||||
type -P iscsistart >/dev/null || return 1
|
||||
|
||||
kdump_check_setup_iscsi() (
|
||||
local _dev
|
||||
_dev=$1
|
||||
|
||||
[[ -L /sys/dev/block/$_dev ]] || return
|
||||
cd "$(readlink -f /sys/dev/block/$_dev)"
|
||||
until [[ -d sys || -d iscsi_session ]]; do
|
||||
cd ..
|
||||
done
|
||||
[[ -d iscsi_session ]] && kdump_setup_iscsi_device "$PWD"
|
||||
)
|
||||
|
||||
[[ $hostonly ]] || [[ $mount_needs ]] && {
|
||||
for_each_host_dev_and_slaves_all kdump_check_setup_iscsi
|
||||
}
|
||||
}
|
||||
|
||||
# retrieves fence_kdump nodes from Pacemaker cluster configuration
|
||||
get_pcs_fence_kdump_nodes() {
|
||||
local nodes
|
||||
|
||||
# get cluster nodes from cluster cib, get interface and ip address
|
||||
nodelist=`pcs cluster cib | xmllint --xpath "/cib/status/node_state/@uname" -`
|
||||
|
||||
# nodelist is formed as 'uname="node1" uname="node2" ... uname="nodeX"'
|
||||
# we need to convert each to node1, node2 ... nodeX in each iteration
|
||||
for node in ${nodelist}; do
|
||||
# convert $node from 'uname="nodeX"' to 'nodeX'
|
||||
eval $node
|
||||
nodename=$uname
|
||||
# Skip its own node name
|
||||
if [ "$nodename" = `hostname` -o "$nodename" = `hostname -s` ]; then
|
||||
continue
|
||||
fi
|
||||
nodes="$nodes $nodename"
|
||||
done
|
||||
|
||||
echo $nodes
|
||||
}
|
||||
|
||||
# retrieves fence_kdump args from config file
|
||||
get_pcs_fence_kdump_args() {
|
||||
if [ -f $FENCE_KDUMP_CONFIG_FILE ]; then
|
||||
. $FENCE_KDUMP_CONFIG_FILE
|
||||
echo $FENCE_KDUMP_OPTS
|
||||
fi
|
||||
}
|
||||
|
||||
# setup fence_kdump in cluster
|
||||
# setup proper network and install needed files
|
||||
kdump_configure_fence_kdump () {
|
||||
local kdump_cfg_file=$1
|
||||
local nodes
|
||||
local args
|
||||
|
||||
if is_generic_fence_kdump; then
|
||||
nodes=$(get_option_value "fence_kdump_nodes")
|
||||
|
||||
elif is_pcs_fence_kdump; then
|
||||
nodes=$(get_pcs_fence_kdump_nodes)
|
||||
|
||||
# set appropriate options in kdump.conf
|
||||
echo "fence_kdump_nodes $nodes" >> ${kdump_cfg_file}
|
||||
|
||||
args=$(get_pcs_fence_kdump_args)
|
||||
if [ -n "$args" ]; then
|
||||
echo "fence_kdump_args $args" >> ${kdump_cfg_file}
|
||||
fi
|
||||
|
||||
else
|
||||
# fence_kdump not configured
|
||||
return 1
|
||||
fi
|
||||
|
||||
# setup network for each node
|
||||
for node in ${nodes}; do
|
||||
kdump_install_net $node
|
||||
done
|
||||
|
||||
dracut_install $FENCE_KDUMP_SEND
|
||||
}
|
||||
|
||||
# Install a random seed used to feed /dev/urandom
|
||||
# By the time kdump service starts, /dev/uramdom is already fed by systemd
|
||||
kdump_install_random_seed() {
|
||||
local poolsize=`cat /proc/sys/kernel/random/poolsize`
|
||||
|
||||
if [ ! -d ${initdir}/var/lib/ ]; then
|
||||
mkdir -p ${initdir}/var/lib/
|
||||
fi
|
||||
|
||||
dd if=/dev/urandom of=${initdir}/var/lib/random-seed \
|
||||
bs=$poolsize count=1 2> /dev/null
|
||||
}
|
||||
|
||||
install() {
|
||||
kdump_install_conf
|
||||
remove_sysctl_conf
|
||||
|
||||
if is_ssh_dump_target; then
|
||||
kdump_install_random_seed
|
||||
fi
|
||||
dracut_install -o /etc/adjtime /etc/localtime
|
||||
inst "$moddir/monitor_dd_progress" "/kdumpscripts/monitor_dd_progress"
|
||||
chmod +x ${initdir}/kdumpscripts/monitor_dd_progress
|
||||
inst "/bin/dd" "/bin/dd"
|
||||
inst "/bin/tail" "/bin/tail"
|
||||
inst "/bin/date" "/bin/date"
|
||||
inst "/bin/sync" "/bin/sync"
|
||||
inst "/bin/cut" "/bin/cut"
|
||||
inst "/bin/head" "/bin/head"
|
||||
inst "/sbin/makedumpfile" "/sbin/makedumpfile"
|
||||
inst "/sbin/vmcore-dmesg" "/sbin/vmcore-dmesg"
|
||||
inst "/lib/kdump/kdump-lib.sh" "/lib/kdump-lib.sh"
|
||||
inst "/lib/kdump/kdump-lib-initramfs.sh" "/lib/kdump-lib-initramfs.sh"
|
||||
inst "$moddir/kdump.sh" "/usr/bin/kdump.sh"
|
||||
inst "$moddir/kdump-capture.service" "$systemdsystemunitdir/kdump-capture.service"
|
||||
ln_r "$systemdsystemunitdir/kdump-capture.service" "$systemdsystemunitdir/initrd.target.wants/kdump-capture.service"
|
||||
inst "$moddir/kdump-error-handler.sh" "/usr/bin/kdump-error-handler.sh"
|
||||
inst "$moddir/kdump-error-handler.service" "$systemdsystemunitdir/kdump-error-handler.service"
|
||||
# Replace existing emergency service and emergency target
|
||||
cp "$moddir/kdump-emergency.service" "$initdir/$systemdsystemunitdir/emergency.service"
|
||||
cp "$moddir/kdump-emergency.target" "$initdir/$systemdsystemunitdir/emergency.target"
|
||||
# Also redirect dracut-emergency to kdump error handler
|
||||
ln_r "$systemdsystemunitdir/emergency.service" "$systemdsystemunitdir/dracut-emergency.service"
|
||||
|
||||
# Check for all the devices and if any device is iscsi, bring up iscsi
|
||||
# target. Ideally all this should be pushed into dracut iscsi module
|
||||
# at some point of time.
|
||||
kdump_check_iscsi_targets
|
||||
|
||||
# For the lvm type target under kdump, in /etc/lvm/lvm.conf we can
|
||||
# safely replace "reserved_memory=XXXX"(default value is 8192) with
|
||||
# "reserved_memory=1024" to lower memory pressure under kdump. We do
|
||||
# it unconditionally here, if "/etc/lvm/lvm.conf" doesn't exist, it
|
||||
# actually does nothing.
|
||||
sed -i -e \
|
||||
's/\(^[[:space:]]*reserved_memory[[:space:]]*=\)[[:space:]]*[[:digit:]]*/\1 1024/' \
|
||||
${initdir}/etc/lvm/lvm.conf &>/dev/null
|
||||
|
||||
# Kdump turns out to require longer default systemd mount timeout
|
||||
# than 1st kernel(90s by default), we use default 300s for kdump.
|
||||
grep -r "^[[:space:]]*DefaultTimeoutStartSec=" ${initdir}/etc/systemd/system.conf* &>/dev/null
|
||||
if [ $? -ne 0 ]; then
|
||||
mkdir -p ${initdir}/etc/systemd/system.conf.d
|
||||
echo "[Manager]" > ${initdir}/etc/systemd/system.conf.d/kdump.conf
|
||||
echo "DefaultTimeoutStartSec=300s" >> ${initdir}/etc/systemd/system.conf.d/kdump.conf
|
||||
fi
|
||||
}
|
||||
28
dracut-monitor_dd_progress
Normal file
28
dracut-monitor_dd_progress
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#!/bin/sh
|
||||
|
||||
SRC_FILE_MB=$1
|
||||
|
||||
while true
|
||||
do
|
||||
DD_PID=`pidof dd`
|
||||
if [ -n "$DD_PID" ]; then
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
while true
|
||||
do
|
||||
sleep 5
|
||||
if [ ! -d /proc/$DD_PID ]; then
|
||||
break
|
||||
fi
|
||||
|
||||
kill -s USR1 $DD_PID
|
||||
CURRENT_SIZE=`tail -n 1 /tmp/dd_progress_file | sed "s/[^0-9].*//g"`
|
||||
[ -n "$CURRENT_SIZE" ] && {
|
||||
CURRENT_MB=$(($CURRENT_SIZE / 1048576))
|
||||
echo -e "Copied $CURRENT_MB MB / $SRC_FILE_MB MB\r"
|
||||
}
|
||||
done
|
||||
|
||||
rm -f /tmp/dd_progress_file
|
||||
251
fadump-howto.txt
Normal file
251
fadump-howto.txt
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
Firmware assisted dump (fadump) HOWTO
|
||||
|
||||
Introduction
|
||||
|
||||
Firmware assisted dump is a new feature in the 3.4 mainline kernel supported
|
||||
only on powerpc architecture. The goal of firmware-assisted dump is to enable
|
||||
the dump of a crashed system, and to do so from a fully-reset system, and to
|
||||
minimize the total elapsed time until the system is back in production use. A
|
||||
complete documentation on implementation can be found at
|
||||
Documentation/powerpc/firmware-assisted-dump.txt in upstream linux kernel tree
|
||||
from 3.4 version and above.
|
||||
|
||||
Please note that the firmware-assisted dump feature is only available on Power6
|
||||
and above systems with recent firmware versions.
|
||||
|
||||
Overview
|
||||
|
||||
Fadump
|
||||
|
||||
Fadump is a robust kernel crash dumping mechanism to get reliable kernel crash
|
||||
dump with assistance from firmware. This approach does not use kexec, instead
|
||||
firmware assists in booting the kdump kernel while preserving memory contents.
|
||||
Unlike kdump, the system is fully reset, and loaded with a fresh copy of the
|
||||
kernel. In particular, PCI and I/O devices are reinitialized and are in a
|
||||
clean, consistent state. This second kernel, often called a capture kernel,
|
||||
boots with very little memory and captures the dump image.
|
||||
|
||||
The first kernel registers the sections of memory with the Power firmware for
|
||||
dump preservation during OS initialization. These registered sections of memory
|
||||
are reserved by the first kernel during early boot. When a system crashes, the
|
||||
Power firmware fully resets the system, preserves all the system memory
|
||||
contents, save the low memory (boot memory of size larger of 5% of system
|
||||
RAM or 256MB) of RAM to the previous registered region. It will also save
|
||||
system registers, and hardware PTE's.
|
||||
|
||||
Fadump is supported only on ppc64 platform. The standard kernel and capture
|
||||
kernel are one and the same on ppc64.
|
||||
|
||||
If you're reading this document, you should already have kexec-tools
|
||||
installed. If not, you install it via the following command:
|
||||
|
||||
# yum install kexec-tools
|
||||
|
||||
Fadump Operational Flow:
|
||||
|
||||
Like kdump, fadump also exports the ELF formatted kernel crash dump through
|
||||
/proc/vmcore. Hence existing kdump infrastructure can be used to capture fadump
|
||||
vmcore. The idea is to keep the functionality transparent to end user. From
|
||||
user perspective there is no change in the way kdump init script works.
|
||||
|
||||
However, unlike kdump, fadump does not pre-load kdump kernel and initrd into
|
||||
reserved memory, instead it always uses default OS initrd during second boot
|
||||
after crash. Hence, for fadump, we rebuild the new kdump initrd and replace it
|
||||
with default initrd. Before replacing existing default initrd we take a backup
|
||||
of original default initrd for user's reference. The dracut package has been
|
||||
enhanced to rebuild the default initrd with vmcore capture steps. The initrd
|
||||
image is rebuilt as per the configuration in /etc/kdump.conf file.
|
||||
|
||||
The control flow of fadump works as follows:
|
||||
01. System panics.
|
||||
02. At the crash, kernel informs power firmware that kernel has crashed.
|
||||
03. Firmware takes the control and reboots the entire system preserving
|
||||
only the memory (resets all other devices).
|
||||
04. The reboot follows the normal booting process (non-kexec).
|
||||
05. The boot loader loads the default kernel and initrd from /boot
|
||||
06. The default initrd loads and runs /init
|
||||
07. dracut-kdump.sh script present in fadump aware default initrd checks if
|
||||
'/proc/device-tree/rtas/ibm,kernel-dump' file exists before executing
|
||||
steps to capture vmcore.
|
||||
(This check will help to bypass the vmcore capture steps during normal boot
|
||||
process.)
|
||||
09. Captures dump according to /etc/kdump.conf
|
||||
10. Is dump capture successful (yes goto 12, no goto 11)
|
||||
11. Perfom the default action specified in /etc/kdump.conf (Default action
|
||||
is reboot, if unspecified)
|
||||
12. Reboot
|
||||
|
||||
|
||||
How to configure fadump:
|
||||
|
||||
Again, we assume if you're reading this document, you should already have
|
||||
kexec-tools installed. If not, you install it via the following command:
|
||||
|
||||
# yum install kexec-tools
|
||||
|
||||
To be able to do much of anything interesting in the way of debug analysis,
|
||||
you'll also need to install the kernel-debuginfo package, of the same arch
|
||||
as your running kernel, and the crash utility:
|
||||
|
||||
# yum --enablerepo=\*debuginfo install kernel-debuginfo.$(uname -m) crash
|
||||
|
||||
Next up, we need to modify some boot parameters to enable firmware assisted
|
||||
dump. With the help of grubby, it's very easy to append "fadump=on" to the end
|
||||
of your kernel boot parameters. Optionally, user can also append
|
||||
'fadump_reserve_mem=X' kernel cmdline to specify size of the memory to reserve
|
||||
for boot memory dump preservation.
|
||||
|
||||
# grubby --args="fadump=on" --update-kernel=/boot/vmlinuz-`uname -r`
|
||||
|
||||
The term 'boot memory' means size of the low memory chunk that is required for
|
||||
a kernel to boot successfully when booted with restricted memory. By default,
|
||||
the boot memory size will be the larger of 5% of system RAM or 256MB.
|
||||
Alternatively, user can also specify boot memory size through boot parameter
|
||||
'fadump_reserve_mem=' which will override the default calculated size. Use this
|
||||
option if default boot memory size is not sufficient for second kernel to boot
|
||||
successfully.
|
||||
|
||||
After making said changes, reboot your system, so that the specified memory is
|
||||
reserved and left untouched by the normal system. Take note that the output of
|
||||
'free -m' will show X MB less memory than without this parameter, which is
|
||||
expected. If you see OOM (Out Of Memory) error messages while loading capture
|
||||
kernel, then you should bump up the memory reservation size.
|
||||
|
||||
Now that you've got that reserved memory region set up, you want to turn on
|
||||
the kdump init script:
|
||||
|
||||
# systemctl enable kdump.service
|
||||
|
||||
Then, start up kdump as well:
|
||||
|
||||
# systemctl start kdump.service
|
||||
|
||||
This should turn on the firmware assisted functionality in kernel by
|
||||
echo'ing 1 to /sys/kernel/fadump_registered, leaving the system ready
|
||||
to capture a vmcore upon crashing. To test this out, you can force-crash
|
||||
your system by echo'ing a c into /proc/sysrq-trigger:
|
||||
|
||||
# echo c > /proc/sysrq-trigger
|
||||
|
||||
You should see some panic output, followed by the system reset and booting into
|
||||
fresh copy of kernel. When default initrd loads and runs /init, vmcore should
|
||||
be copied out to disk (by default, in /var/crash/<YYYY.MM.DD-HH:MM:SS>/vmcore),
|
||||
then the system rebooted back into your normal kernel.
|
||||
|
||||
Once back to your normal kernel, you can use the previously installed crash
|
||||
kernel in conjunction with the previously installed kernel-debuginfo to
|
||||
perform postmortem analysis:
|
||||
|
||||
# crash /usr/lib/debug/lib/modules/2.6.17-1.2621.el5/vmlinux
|
||||
/var/crash/2006-08-23-15:34/vmcore
|
||||
|
||||
crash> bt
|
||||
|
||||
and so on...
|
||||
|
||||
Saving vmcore-dmesg.txt
|
||||
----------------------
|
||||
Kernel log bufferes are one of the most important information available
|
||||
in vmcore. Now before saving vmcore, kernel log bufferes are extracted
|
||||
from /proc/vmcore and saved into a file vmcore-dmesg.txt. After
|
||||
vmcore-dmesg.txt, vmcore is saved. Destination disk and directory for
|
||||
vmcore-dmesg.txt is same as vmcore. Note that kernel log buffers will
|
||||
not be available if dump target is raw device.
|
||||
|
||||
Dump Triggering methods:
|
||||
|
||||
This section talks about the various ways, other than a Kernel Panic, in which
|
||||
fadump can be triggered. The following methods assume that fadump is configured
|
||||
on your system, with the scripts enabled as described in the section above.
|
||||
|
||||
1) AltSysRq C
|
||||
|
||||
FAdump can be triggered with the combination of the 'Alt','SysRq' and 'C'
|
||||
keyboard keys. Please refer to the following link for more details:
|
||||
|
||||
https://fedoraproject.org/wiki/QA/Sysrq
|
||||
|
||||
In addition, on PowerPC boxes, fadump can also be triggered via Hardware
|
||||
Management Console(HMC) using 'Ctrl', 'O' and 'C' keyboard keys.
|
||||
|
||||
2) Kernel OOPs
|
||||
|
||||
If we want to generate a dump everytime the Kernel OOPses, we can achieve this
|
||||
by setting the 'Panic On OOPs' option as follows:
|
||||
|
||||
# echo 1 > /proc/sys/kernel/panic_on_oops
|
||||
|
||||
3) PowerPC specific methods:
|
||||
|
||||
On IBM PowerPC machines, issuing a soft reset invokes the XMON debugger(if
|
||||
XMON is configured). To configure XMON one needs to compile the kernel with
|
||||
the CONFIG_XMON and CONFIG_XMON_DEFAULT options, or by compiling with
|
||||
CONFIG_XMON and booting the kernel with xmon=on option.
|
||||
|
||||
Following are the ways to remotely issue a soft reset on PowerPC boxes, which
|
||||
would drop you to XMON. Pressing a 'X' (capital alphabet X) followed by an
|
||||
'Enter' here will trigger the dump.
|
||||
|
||||
3.1) HMC
|
||||
|
||||
Hardware Management Console(HMC) available on Power4 and Power5 machines allow
|
||||
partitions to be reset remotely. This is specially useful in hang situations
|
||||
where the system is not accepting any keyboard inputs.
|
||||
|
||||
Once you have HMC configured, the following steps will enable you to trigger
|
||||
fadump via a soft reset:
|
||||
|
||||
On Power4
|
||||
Using GUI
|
||||
|
||||
* In the right pane, right click on the partition you wish to dump.
|
||||
* Select "Operating System->Reset".
|
||||
* Select "Soft Reset".
|
||||
* Select "Yes".
|
||||
|
||||
Using HMC Commandline
|
||||
|
||||
# reset_partition -m <machine> -p <partition> -t soft
|
||||
|
||||
On Power5
|
||||
Using GUI
|
||||
|
||||
* In the right pane, right click on the partition you wish to dump.
|
||||
* Select "Restart Partition".
|
||||
* Select "Dump".
|
||||
* Select "OK".
|
||||
|
||||
Using HMC Commandline
|
||||
|
||||
# chsysstate -m <managed system name> -n <lpar name> -o dumprestart -r lpar
|
||||
|
||||
3.2) Blade Management Console for Blade Center
|
||||
|
||||
To initiate a dump operation, go to Power/Restart option under "Blade Tasks" in
|
||||
the Blade Management Console. Select the corresponding blade for which you want
|
||||
to initate the dump and then click "Restart blade with NMI". This issues a
|
||||
system reset and invokes xmon debugger.
|
||||
|
||||
|
||||
Advanced Setups & Default action:
|
||||
|
||||
Kdump and fadump exhibit similar behavior in terms of setup & default action.
|
||||
For fadump advanced setup related information see section "Advanced Setups" in
|
||||
"kexec-kdump-howto.txt" document. Refer to "Default action" section in "kexec-
|
||||
kdump-howto.txt" document for fadump default action related information.
|
||||
|
||||
Compression and filtering
|
||||
|
||||
Refer "Compression and filtering" section in "kexec-kdump-howto.txt" document.
|
||||
Compression and filtering are same for kdump & fadump.
|
||||
|
||||
|
||||
Notes on rootfs mount:
|
||||
Dracut is designed to mount rootfs by default. If rootfs mounting fails it
|
||||
will refuse to go on. So fadump leaves rootfs mounting to dracut currently.
|
||||
We make the assumtion that proper root= cmdline is being passed to dracut
|
||||
initramfs for the time being. If you need modify "KDUMP_COMMANDLINE=" in
|
||||
/etc/sysconfig/kdump, you will need to make sure that appropriate root=
|
||||
options are copied from /proc/cmdline. In general it is best to append
|
||||
command line options using "KDUMP_COMMANDLINE_APPEND=" instead of replacing
|
||||
the original command line completely.
|
||||
22
kdump-dep-generator.sh
Normal file
22
kdump-dep-generator.sh
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
# More details about systemd generator:
|
||||
# http://www.freedesktop.org/wiki/Software/systemd/Generators/
|
||||
|
||||
. /usr/lib/kdump/kdump-lib.sh
|
||||
|
||||
# If invokded with no arguments for testing purpose, output to /tmp to
|
||||
# avoid overriding the existing.
|
||||
dest_dir="/tmp"
|
||||
|
||||
if [ -n "$1" ]; then
|
||||
dest_dir=$1
|
||||
fi
|
||||
|
||||
systemd_dir=/usr/lib/systemd/system
|
||||
kdump_wants=$dest_dir/kdump.service.wants
|
||||
|
||||
if is_ssh_dump_target; then
|
||||
mkdir -p $kdump_wants
|
||||
ln -sf $systemd_dir/network-online.target $kdump_wants/
|
||||
fi
|
||||
91
kdump-in-cluster-environment.txt
Normal file
91
kdump-in-cluster-environment.txt
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
Kdump-in-cluster-environment HOWTO
|
||||
|
||||
Introduction
|
||||
|
||||
Kdump is a kexec based crash dumping mechansim for Linux. This docuement
|
||||
illustrate how to configure kdump in cluster environment to allow the kdump
|
||||
crash recovery service complete without being preempted by traditional power
|
||||
fencing methods.
|
||||
|
||||
Overview
|
||||
|
||||
Kexec/Kdump
|
||||
|
||||
Details about Kexec/Kdump are available in Kexec-Kdump-howto file and will not
|
||||
be described here.
|
||||
|
||||
fence_kdump
|
||||
|
||||
fence_kdump is an I/O fencing agent to be used with the kdump crash recovery
|
||||
service. When the fence_kdump agent is invoked, it will listen for a message
|
||||
from the failed node that acknowledges that the failed node is executing the
|
||||
kdump crash kernel. Note that fence_kdump is not a replacement for traditional
|
||||
fencing methods. The fence_kdump agent can only detect that a node has entered
|
||||
the kdump crash recovery service. This allows the kdump crash recovery service
|
||||
complete without being preempted by traditional power fencing methods.
|
||||
|
||||
fence_kdump_send
|
||||
|
||||
fence_kdump_send is a utility used to send messages that acknowledge that the
|
||||
node itself has entered the kdump crash recovery service. The fence_kdump_send
|
||||
utility is typically run in the kdump kernel after a cluster node has
|
||||
encountered a kernel panic. Once the cluster node has entered the kdump crash
|
||||
recovery service, fence_kdump_send will periodically send messages to all
|
||||
cluster nodes. When the fence_kdump agent receives a valid message from the
|
||||
failed nodes, fencing is complete.
|
||||
|
||||
How to configure Pacemaker cluster environment:
|
||||
|
||||
If we want to use kdump in Pacemaker cluster environment, fence-agents-kdump
|
||||
should be installed in every nodes in the cluster. You can achieve this via
|
||||
the following command:
|
||||
|
||||
# yum install -y fence-agents-kdump
|
||||
|
||||
Next is to add kdump_fence to the cluster. Assuming that the cluster consists
|
||||
of three nodes, they are node1, node2 and node3, and use Pacemaker to perform
|
||||
resource management and pcs as cli configuration tool.
|
||||
|
||||
With pcs it is easy to add a stonith resource to the cluster. For example, add
|
||||
a stonith resource named mykdumpfence with fence type of fence_kdump via the
|
||||
following commands:
|
||||
|
||||
# pcs stonith create mykdumpfence fence_kdump \
|
||||
pcmk_host_check=static-list pcmk_host_list="node1 node2 node3"
|
||||
# pcs stonith update mykdumpfence pcmk_monitor_action=metadata --force
|
||||
# pcs stonith update mykdumpfence pcmk_status_action=metadata --force
|
||||
# pcs stonith update mykdumpfence pcmk_reboot_action=off --force
|
||||
|
||||
Then enable stonith
|
||||
# pcs property set stonith-enabled=true
|
||||
|
||||
How to configure kdump:
|
||||
|
||||
Actually there are two ways how to configure fence_kdump support:
|
||||
|
||||
1) Pacemaker based clusters
|
||||
If you have successfully configured fence_kdump in Pacemaker, there is
|
||||
no need to add some special configuration in kdump. So please refer to
|
||||
Kexec-Kdump-howto file for more information.
|
||||
|
||||
2) Generic clusters
|
||||
For other types of clusters there are two configuration options in
|
||||
kdump.conf which enables fence_kdump support:
|
||||
|
||||
fence_kdump_nodes <node(s)>
|
||||
Contains list of cluster node(s) separated by space to send
|
||||
fence_kdump notification to (this option is mandatory to enable
|
||||
fence_kdump)
|
||||
|
||||
fence_kdump_args <arg(s)>
|
||||
Command line arguments for fence_kdump_send (it can contain
|
||||
all valid arguments except hosts to send notification to)
|
||||
|
||||
These options will most probably be configured by your cluster software,
|
||||
so please refer to your cluster documentation how to enable fence_kdump
|
||||
support.
|
||||
|
||||
Please be aware that these two ways cannot be combined and 2) has precedence
|
||||
over 1). It means that if fence_kdump is configured using fence_kdump_nodes
|
||||
and fence_kdump_args options in kdump.conf, Pacemaker configuration is not
|
||||
used even if it exists.
|
||||
165
kdump-lib-initramfs.sh
Executable file
165
kdump-lib-initramfs.sh
Executable file
|
|
@ -0,0 +1,165 @@
|
|||
# These variables and functions are useful in 2nd kernel
|
||||
|
||||
. /lib/kdump-lib.sh
|
||||
|
||||
KDUMP_PATH="/var/crash"
|
||||
CORE_COLLECTOR=""
|
||||
DEFAULT_CORE_COLLECTOR="makedumpfile -l --message-level 1 -d 31"
|
||||
DMESG_COLLECTOR="/sbin/vmcore-dmesg"
|
||||
DEFAULT_ACTION="systemctl reboot -f"
|
||||
DATEDIR=`date +%Y-%m-%d-%T`
|
||||
HOST_IP='127.0.0.1'
|
||||
DUMP_INSTRUCTION=""
|
||||
SSH_KEY_LOCATION="/root/.ssh/kdump_id_rsa"
|
||||
KDUMP_SCRIPT_DIR="/kdumpscripts"
|
||||
DD_BLKSIZE=512
|
||||
FINAL_ACTION="systemctl reboot -f"
|
||||
KDUMP_CONF="/etc/kdump.conf"
|
||||
KDUMP_PRE=""
|
||||
KDUMP_POST=""
|
||||
NEWROOT="/sysroot"
|
||||
|
||||
get_kdump_confs()
|
||||
{
|
||||
local config_opt config_val
|
||||
|
||||
while read config_opt config_val;
|
||||
do
|
||||
# remove inline comments after the end of a directive.
|
||||
config_val=$(strip_comments $config_val)
|
||||
case "$config_opt" in
|
||||
path)
|
||||
KDUMP_PATH="$config_val"
|
||||
;;
|
||||
core_collector)
|
||||
[ -n "$config_val" ] && CORE_COLLECTOR="$config_val"
|
||||
;;
|
||||
sshkey)
|
||||
if [ -f "$config_val" ]; then
|
||||
SSH_KEY_LOCATION=$config_val
|
||||
fi
|
||||
;;
|
||||
kdump_pre)
|
||||
KDUMP_PRE="$config_val"
|
||||
;;
|
||||
kdump_post)
|
||||
KDUMP_POST="$config_val"
|
||||
;;
|
||||
fence_kdump_args)
|
||||
FENCE_KDUMP_ARGS="$config_val"
|
||||
;;
|
||||
fence_kdump_nodes)
|
||||
FENCE_KDUMP_NODES="$config_val"
|
||||
;;
|
||||
default)
|
||||
case $config_val in
|
||||
shell)
|
||||
DEFAULT_ACTION="kdump_emergency_shell"
|
||||
;;
|
||||
reboot)
|
||||
DEFAULT_ACTION="systemctl reboot -f"
|
||||
;;
|
||||
halt)
|
||||
DEFAULT_ACTION="halt"
|
||||
;;
|
||||
poweroff)
|
||||
DEFAULT_ACTION="poweroff"
|
||||
;;
|
||||
dump_to_rootfs)
|
||||
DEFAULT_ACTION="dump_to_rootfs"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
done < $KDUMP_CONF
|
||||
|
||||
if [ -z "$CORE_COLLECTOR" ]; then
|
||||
CORE_COLLECTOR="$DEFAULT_CORE_COLLECTOR"
|
||||
if is_ssh_dump_target || is_raw_dump_target; then
|
||||
CORE_COLLECTOR="$CORE_COLLECTOR -F"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
# dump_fs <mount point| device>
|
||||
dump_fs()
|
||||
{
|
||||
|
||||
local _dev=$(findmnt -k -f -n -r -o SOURCE $1)
|
||||
local _mp=$(findmnt -k -f -n -r -o TARGET $1)
|
||||
|
||||
echo "kdump: dump target is $_dev"
|
||||
|
||||
if [ -z "$_mp" ]; then
|
||||
echo "kdump: error: Dump target $_dev is not mounted."
|
||||
return 1
|
||||
fi
|
||||
|
||||
# Remove -F in makedumpfile case. We don't want a flat format dump here.
|
||||
[[ $CORE_COLLECTOR = *makedumpfile* ]] && CORE_COLLECTOR=`echo $CORE_COLLECTOR | sed -e "s/-F//g"`
|
||||
|
||||
echo "kdump: saving to $_mp/$KDUMP_PATH/$HOST_IP-$DATEDIR/"
|
||||
|
||||
mount -o remount,rw $_mp || return 1
|
||||
mkdir -p $_mp/$KDUMP_PATH/$HOST_IP-$DATEDIR || return 1
|
||||
|
||||
save_vmcore_dmesg_fs ${DMESG_COLLECTOR} "$_mp/$KDUMP_PATH/$HOST_IP-$DATEDIR/"
|
||||
|
||||
echo "kdump: saving vmcore"
|
||||
$CORE_COLLECTOR /proc/vmcore $_mp/$KDUMP_PATH/$HOST_IP-$DATEDIR/vmcore-incomplete || return 1
|
||||
mv $_mp/$KDUMP_PATH/$HOST_IP-$DATEDIR/vmcore-incomplete $_mp/$KDUMP_PATH/$HOST_IP-$DATEDIR/vmcore
|
||||
sync
|
||||
|
||||
echo "kdump: saving vmcore complete"
|
||||
# improper kernel cmdline can cause the failure of echo, we can ignore this kind of failure
|
||||
return 0
|
||||
}
|
||||
|
||||
save_vmcore_dmesg_fs() {
|
||||
local _dmesg_collector=$1
|
||||
local _path=$2
|
||||
|
||||
echo "kdump: saving vmcore-dmesg.txt"
|
||||
$_dmesg_collector /proc/vmcore > ${_path}/vmcore-dmesg-incomplete.txt
|
||||
_exitcode=$?
|
||||
if [ $_exitcode -eq 0 ]; then
|
||||
mv ${_path}/vmcore-dmesg-incomplete.txt ${_path}/vmcore-dmesg.txt
|
||||
|
||||
# Make sure file is on disk. There have been instances where later
|
||||
# saving vmcore failed and system rebooted without sync and there
|
||||
# was no vmcore-dmesg.txt available.
|
||||
sync
|
||||
echo "kdump: saving vmcore-dmesg.txt complete"
|
||||
else
|
||||
echo "kdump: saving vmcore-dmesg.txt failed"
|
||||
fi
|
||||
}
|
||||
|
||||
dump_to_rootfs()
|
||||
{
|
||||
|
||||
echo "Kdump: trying to bring up rootfs device"
|
||||
systemctl start dracut-initqueue
|
||||
echo "Kdump: waiting for rootfs mount, will timeout after 90 seconds"
|
||||
systemctl start sysroot.mount
|
||||
|
||||
dump_fs $NEWROOT
|
||||
}
|
||||
|
||||
kdump_emergency_shell()
|
||||
{
|
||||
echo "PS1=\"kdump:\\\${PWD}# \"" >/etc/profile
|
||||
/bin/dracut-emergency
|
||||
rm -f /etc/profile
|
||||
}
|
||||
|
||||
do_default_action()
|
||||
{
|
||||
echo "Kdump: Executing default action $DEFAULT_ACTION"
|
||||
eval $DEFAULT_ACTION
|
||||
}
|
||||
|
||||
do_final_action()
|
||||
{
|
||||
eval $FINAL_ACTION
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue