summaryrefslogtreecommitdiffstats
path: root/po
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-06-09 11:13:33 -1000
committerDavid Cantrell <dcantrell@redhat.com>2009-06-09 12:26:49 -1000
commit8462702c0bfac6be3d33b17a7ff209be0fb9a7b5 (patch)
treed1640fae5292739cdfeaa43d70f68df50a0a16cf /po
parent7154dd486eaa991408903c6304abb6c349088e03 (diff)
downloadanaconda-8462702c0bfac6be3d33b17a7ff209be0fb9a7b5.tar.gz
anaconda-8462702c0bfac6be3d33b17a7ff209be0fb9a7b5.tar.xz
anaconda-8462702c0bfac6be3d33b17a7ff209be0fb9a7b5.zip
Convert po/ subdirectory to GNU gettext template system.
Maintaining po/ now means maintaining po/LINGUAS, po/POTFILES.in, and po/Makevars. The other files are automatically added by gettextize when we update to a newer minimum version of gettext. The LINGUAS file lists all of the languages we support. The POTFILES.in file lists all of the source files that have strings for translation. The Makevars file sets some control variables and options to xgettext.
Diffstat (limited to 'po')
-rw-r--r--po/LINGUAS2
-rw-r--r--po/Makefile110
-rw-r--r--po/Makefile.in.in429
-rw-r--r--po/Makevars41
-rw-r--r--po/POTFILES.in121
-rw-r--r--po/Rules-quot47
-rw-r--r--po/anaconda.pot5663
-rw-r--r--po/boldquot.sed10
-rw-r--r--po/en@boldquot.header25
-rw-r--r--po/en@quot.header22
-rw-r--r--po/insert-header.sin23
-rw-r--r--po/quot.sed6
-rw-r--r--po/remove-potcdate.sin19
13 files changed, 745 insertions, 5773 deletions
diff --git a/po/LINGUAS b/po/LINGUAS
new file mode 100644
index 000000000..613f35bdc
--- /dev/null
+++ b/po/LINGUAS
@@ -0,0 +1,2 @@
+# Set of available languages.
+af am ar as bal be bg bn bn_IN bs ca cs cy da de de_CH el en@quot en@boldquot en_GB es et eu eu_ES fa fi fr gl gu he hi hr hu hy id ilo is it ja ka kn ko ku lo lt lv mai mk ml mr ms my nb ne nl nn nso or pa pl pt pt_BR ro ru si sk sl sq sr sr@latin sv ta te tg th tr uk ur vi zh_CN zh_TW zu
diff --git a/po/Makefile b/po/Makefile
deleted file mode 100644
index b33aee7f5..000000000
--- a/po/Makefile
+++ /dev/null
@@ -1,110 +0,0 @@
-INSTALL= /usr/bin/install -c
-INSTALL_PROGRAM= ${INSTALL}
-INSTALL_DATA= ${INSTALL} -m 644
-PREFIX=$(DESTDIR)/
-INSTALLNLSDIR=usr/share/locale
-
-MSGMERGE = msgmerge -v
-
-NLSPACKAGE = anaconda
-
-POS = $(wildcard *.po)
-FMTCATALOGS = $(patsubst %.po,%.mo,$(POS))
-
-GLADEFILES = ../ui/*.glade
-DESKTOPFILES = ../liveinst/*.desktop.in
-INTLFILES = $(GLADEFILES) $(DESKTOPFILES)
-
-PYPOTFILES = ../anaconda ../*.py ../iw/*.py ../textw/*.py \
- ../installclasses/*.py ../storage/*.py ../storage/*/*.py
-
-CPOTFILES = ../loader/*.c
-
-POTFILES = $(PYPOTFILES) $(CPOTFILES)
-
-NONPOTFILES = ../lang-table
-
-all: $(FMTCATALOGS)
-
-$(NLSPACKAGE).pot: $(POTFILES) $(NONPOTFILES) intltool-po
- xgettext --from-code=UTF-8 --default-domain=$(NLSPACKAGE) \
- --keyword=_ --keyword=N_ --keyword=P_:1,2 --lang=python $(PYPOTFILES)
- xgettext --from-code=UTF-8 --default-domain=$(NLSPACKAGE) -j \
- --keyword=_ --keyword=N_ --keyword=P_:1,2 --lang=c $(CPOTFILES) tmp/*.h
- cat ../lang-table | cut -f1 | while read line; do echo -e "\n#. generated from lang-table\nmsgid \"$$line\"\nmsgstr \"\""; done >> $(NLSPACKAGE).po
- if cmp -s $(NLSPACKAGE).po $(NLSPACKAGE).pot; then \
- rm -f $(NLSPACKAGE).po; \
- else \
- mv $(NLSPACKAGE).po $(NLSPACKAGE).pot; \
- fi
-
-intltool-po: $(INTLFILES)
- rm -rf tmp/
- for f in $(GLADEFILES); do \
- intltool-extract --type=gettext/glade -l $$f ;\
- done
- for f in $(DESKTOPFILES); do \
- intltool-extract --type=gettext/keys -l $$f ;\
- done
-
-update-po: Makefile $(NLSPACKAGE).pot refresh-po
-
-refresh-po: Makefile
- for cat in $(POS); do \
- lang=`basename $$cat .po`; \
- if $(MSGMERGE) $$lang.po $(NLSPACKAGE).pot > $$lang.pot ; then \
- mv -f $$lang.pot $$lang.po ; \
- echo "$(MSGMERGE) of $$lang succeeded" ; \
- else \
- echo "$(MSGMERGE) of $$lang failed" ; \
- rm -f $$lang.pot ; \
- fi \
- done
-
-report:
- @for cat in $(POS); do \
- echo -n "$$cat: "; \
- msgfmt -v --statistics -o /dev/null $$cat; \
- done
-
-clean:
- rm -f *mo
-
-reallyclean: clean
- rm -f $(NLSPACKAGE).pot
-
-distclean: clean
- rm -f .depend Makefile
-
-depend:
-
-install: $(FMTCARALOGS) all
- mkdir -p $(PREFIX)/$(INSTALLNLSDIR)
- for n in $(FMTCATALOGS); do \
- l=`basename $$n .mo`; \
- $(INSTALL) -m 755 -d $(PREFIX)/$(INSTALLNLSDIR)/$$l; \
- $(INSTALL) -m 755 -d $(PREFIX)/$(INSTALLNLSDIR)/$$l/LC_MESSAGES; \
- $(INSTALL) -m 644 $$n \
- $(PREFIX)/$(INSTALLNLSDIR)/$$l/LC_MESSAGES/$(NLSPACKAGE).mo; \
- done
-
-.PHONY: missing
-
-missing:
- mkdir -p missing; \
- for n in $(FMTCATALOGS); do \
- msghack -w 999999 --missing $$n > missing/$$n-; \
- msghack -w 999999 --empty missing/$$n- | grep -v "^#," > missing/$$n; \
- rm missing/$$n-; \
- done
-
-missing-mixed:
- mkdir -p missing-mixed; \
- for n in $(FMTCATALOGS); do \
- msghack -w 999999 --missing $$n > missing-mixed/$$n; \
- done
-
-%.mo: %.po
- msgfmt --check -o $@ $<
-
-depend:
diff --git a/po/Makefile.in.in b/po/Makefile.in.in
new file mode 100644
index 000000000..fecf500f3
--- /dev/null
+++ b/po/Makefile.in.in
@@ -0,0 +1,429 @@
+# Makefile for PO directory in any package using GNU gettext.
+# Copyright (C) 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
+#
+# This file can be copied and used freely without restrictions. It can
+# be used in projects which are not available under the GNU General Public
+# License but which still want to provide support for the GNU gettext
+# functionality.
+# Please note that the actual code of GNU gettext is covered by the GNU
+# General Public License and is *not* in the public domain.
+#
+# Origin: gettext-0.17
+GETTEXT_MACRO_VERSION = 0.17
+
+PACKAGE = @PACKAGE@
+VERSION = @VERSION@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+
+SHELL = /bin/sh
+@SET_MAKE@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+datarootdir = @datarootdir@
+datadir = @datadir@
+localedir = @localedir@
+gettextsrcdir = $(datadir)/gettext/po
+
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+
+# We use $(mkdir_p).
+# In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as
+# "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions,
+# @install_sh@ does not start with $(SHELL), so we add it.
+# In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined
+# either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake
+# versions, $(mkinstalldirs) and $(install_sh) are unused.
+mkinstalldirs = $(SHELL) @install_sh@ -d
+install_sh = $(SHELL) @install_sh@
+MKDIR_P = @MKDIR_P@
+mkdir_p = @mkdir_p@
+
+GMSGFMT_ = @GMSGFMT@
+GMSGFMT_no = @GMSGFMT@
+GMSGFMT_yes = @GMSGFMT_015@
+GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT))
+MSGFMT_ = @MSGFMT@
+MSGFMT_no = @MSGFMT@
+MSGFMT_yes = @MSGFMT_015@
+MSGFMT = $(MSGFMT_$(USE_MSGCTXT))
+XGETTEXT_ = @XGETTEXT@
+XGETTEXT_no = @XGETTEXT@
+XGETTEXT_yes = @XGETTEXT_015@
+XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT))
+MSGMERGE = msgmerge
+MSGMERGE_UPDATE = @MSGMERGE@ --update
+MSGINIT = msginit
+MSGCONV = msgconv
+MSGFILTER = msgfilter
+
+POFILES = @POFILES@
+GMOFILES = @GMOFILES@
+UPDATEPOFILES = @UPDATEPOFILES@
+DUMMYPOFILES = @DUMMYPOFILES@
+DISTFILES.common = Makefile.in.in remove-potcdate.sin \
+$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)
+DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \
+$(POFILES) $(GMOFILES) \
+$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)
+
+POTFILES = \
+
+CATALOGS = @CATALOGS@
+
+# Makevars gets inserted here. (Don't remove this line!)
+
+.SUFFIXES:
+.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update
+
+.po.mo:
+ @echo "$(MSGFMT) -c -o $@ $<"; \
+ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@
+
+.po.gmo:
+ @lang=`echo $* | sed -e 's,.*/,,'`; \
+ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
+ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \
+ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo
+
+.sin.sed:
+ sed -e '/^#/d' $< > t-$@
+ mv t-$@ $@
+
+
+all: check-macro-version all-@USE_NLS@
+
+all-yes: stamp-po
+all-no:
+
+# Ensure that the gettext macros and this Makefile.in.in are in sync.
+check-macro-version:
+ @test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \
+ || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \
+ exit 1; \
+ }
+
+# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no
+# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because
+# we don't want to bother translators with empty POT files). We assume that
+# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty.
+# In this case, stamp-po is a nop (i.e. a phony target).
+
+# stamp-po is a timestamp denoting the last time at which the CATALOGS have
+# been loosely updated. Its purpose is that when a developer or translator
+# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS,
+# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent
+# invocations of "make" will do nothing. This timestamp would not be necessary
+# if updating the $(CATALOGS) would always touch them; however, the rule for
+# $(POFILES) has been designed to not touch files that don't need to be
+# changed.
+stamp-po: $(srcdir)/$(DOMAIN).pot
+ test ! -f $(srcdir)/$(DOMAIN).pot || \
+ test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES)
+ @test ! -f $(srcdir)/$(DOMAIN).pot || { \
+ echo "touch stamp-po" && \
+ echo timestamp > stamp-poT && \
+ mv stamp-poT stamp-po; \
+ }
+
+# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',
+# otherwise packages like GCC can not be built if only parts of the source
+# have been downloaded.
+
+# This target rebuilds $(DOMAIN).pot; it is an expensive operation.
+# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.
+$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed
+ if LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null | grep -v 'libtool:' >/dev/null; then \
+ package_gnu='GNU '; \
+ else \
+ package_gnu=''; \
+ fi; \
+ if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \
+ msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \
+ else \
+ msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \
+ fi; \
+ case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
+ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \
+ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
+ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \
+ --files-from=$(srcdir)/POTFILES.in \
+ --copyright-holder='$(COPYRIGHT_HOLDER)' \
+ --msgid-bugs-address="$$msgid_bugs_address" \
+ ;; \
+ *) \
+ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
+ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \
+ --files-from=$(srcdir)/POTFILES.in \
+ --copyright-holder='$(COPYRIGHT_HOLDER)' \
+ --package-name="$${package_gnu}@PACKAGE@" \
+ --package-version='@VERSION@' \
+ --msgid-bugs-address="$$msgid_bugs_address" \
+ ;; \
+ esac
+ test ! -f $(DOMAIN).po || { \
+ if test -f $(srcdir)/$(DOMAIN).pot; then \
+ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
+ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \
+ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \
+ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \
+ else \
+ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \
+ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
+ fi; \
+ else \
+ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
+ fi; \
+ }
+
+# This rule has no dependencies: we don't need to update $(DOMAIN).pot at
+# every "make" invocation, only create it when it is missing.
+# Only "make $(DOMAIN).pot-update" or "make dist" will force an update.
+$(srcdir)/$(DOMAIN).pot:
+ $(MAKE) $(DOMAIN).pot-update
+
+# This target rebuilds a PO file if $(DOMAIN).pot has changed.
+# Note that a PO file is not touched if it doesn't need to be changed.
+$(POFILES): $(srcdir)/$(DOMAIN).pot
+ @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \
+ if test -f "$(srcdir)/$${lang}.po"; then \
+ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
+ echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \
+ cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \
+ else \
+ $(MAKE) $${lang}.po-create; \
+ fi
+
+
+install: install-exec install-data
+install-exec:
+install-data: install-data-@USE_NLS@
+ if test "$(PACKAGE)" = "gettext-tools"; then \
+ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \
+ for file in $(DISTFILES.common) Makevars.template; do \
+ $(INSTALL_DATA) $(srcdir)/$$file \
+ $(DESTDIR)$(gettextsrcdir)/$$file; \
+ done; \
+ for file in Makevars; do \
+ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
+ done; \
+ else \
+ : ; \
+ fi
+install-data-no: all
+install-data-yes: all
+ $(mkdir_p) $(DESTDIR)$(datadir)
+ @catalogs='$(CATALOGS)'; \
+ for cat in $$catalogs; do \
+ cat=`basename $$cat`; \
+ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
+ dir=$(localedir)/$$lang/LC_MESSAGES; \
+ $(mkdir_p) $(DESTDIR)$$dir; \
+ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \
+ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \
+ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \
+ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
+ if test -n "$$lc"; then \
+ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
+ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
+ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
+ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
+ for file in *; do \
+ if test -f $$file; then \
+ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
+ fi; \
+ done); \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
+ else \
+ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
+ :; \
+ else \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ fi; \
+ fi; \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
+ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
+ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
+ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
+ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \
+ fi; \
+ done; \
+ done
+
+install-strip: install
+
+installdirs: installdirs-exec installdirs-data
+installdirs-exec:
+installdirs-data: installdirs-data-@USE_NLS@
+ if test "$(PACKAGE)" = "gettext-tools"; then \
+ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \
+ else \
+ : ; \
+ fi
+installdirs-data-no:
+installdirs-data-yes:
+ $(mkdir_p) $(DESTDIR)$(datadir)
+ @catalogs='$(CATALOGS)'; \
+ for cat in $$catalogs; do \
+ cat=`basename $$cat`; \
+ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
+ dir=$(localedir)/$$lang/LC_MESSAGES; \
+ $(mkdir_p) $(DESTDIR)$$dir; \
+ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
+ if test -n "$$lc"; then \
+ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
+ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
+ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
+ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
+ for file in *; do \
+ if test -f $$file; then \
+ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
+ fi; \
+ done); \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
+ else \
+ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
+ :; \
+ else \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ fi; \
+ fi; \
+ fi; \
+ done; \
+ done
+
+# Define this as empty until I found a useful application.
+installcheck:
+
+uninstall: uninstall-exec uninstall-data
+uninstall-exec:
+uninstall-data: uninstall-data-@USE_NLS@
+ if test "$(PACKAGE)" = "gettext-tools"; then \
+ for file in $(DISTFILES.common) Makevars.template; do \
+ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
+ done; \
+ else \
+ : ; \
+ fi
+uninstall-data-no:
+uninstall-data-yes:
+ catalogs='$(CATALOGS)'; \
+ for cat in $$catalogs; do \
+ cat=`basename $$cat`; \
+ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
+ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
+ done; \
+ done
+
+check: all
+
+info dvi ps pdf html tags TAGS ctags CTAGS ID:
+
+mostlyclean:
+ rm -f remove-potcdate.sed
+ rm -f stamp-poT
+ rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po
+ rm -fr *.o
+
+clean: mostlyclean
+
+distclean: clean
+ rm -f Makefile Makefile.in POTFILES *.mo
+
+maintainer-clean: distclean
+ @echo "This command is intended for maintainers to use;"
+ @echo "it deletes files that may require special tools to rebuild."
+ rm -f stamp-po $(GMOFILES)
+
+distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
+dist distdir:
+ $(MAKE) update-po
+ @$(MAKE) dist2
+# This is a separate target because 'update-po' must be executed before.
+dist2: stamp-po $(DISTFILES)
+ dists="$(DISTFILES)"; \
+ if test "$(PACKAGE)" = "gettext-tools"; then \
+ dists="$$dists Makevars.template"; \
+ fi; \
+ if test -f $(srcdir)/$(DOMAIN).pot; then \
+ dists="$$dists $(DOMAIN).pot stamp-po"; \
+ fi; \
+ if test -f $(srcdir)/ChangeLog; then \
+ dists="$$dists ChangeLog"; \
+ fi; \
+ for i in 0 1 2 3 4 5 6 7 8 9; do \
+ if test -f $(srcdir)/ChangeLog.$$i; then \
+ dists="$$dists ChangeLog.$$i"; \
+ fi; \
+ done; \
+ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \
+ for file in $$dists; do \
+ if test -f $$file; then \
+ cp -p $$file $(distdir) || exit 1; \
+ else \
+ cp -p $(srcdir)/$$file $(distdir) || exit 1; \
+ fi; \
+ done
+
+update-po: Makefile
+ $(MAKE) $(DOMAIN).pot-update
+ test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES)
+ $(MAKE) update-gmo
+
+# General rule for creating PO files.
+
+.nop.po-create:
+ @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \
+ echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \
+ exit 1
+
+# General rule for updating PO files.
+
+.nop.po-update:
+ @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \
+ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \
+ tmpdir=`pwd`; \
+ echo "$$lang:"; \
+ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
+ echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \
+ cd $(srcdir); \
+ if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \
+ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
+ rm -f $$tmpdir/$$lang.new.po; \
+ else \
+ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
+ :; \
+ else \
+ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
+ exit 1; \
+ fi; \
+ fi; \
+ else \
+ echo "msgmerge for $$lang.po failed!" 1>&2; \
+ rm -f $$tmpdir/$$lang.new.po; \
+ fi
+
+$(DUMMYPOFILES):
+
+update-gmo: Makefile $(GMOFILES)
+ @:
+
+Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@
+ cd $(top_builddir) \
+ && $(SHELL) ./config.status $(subdir)/$@.in po-directories
+
+force:
+
+# Tell versions [3.59,3.63) of GNU make not to export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/po/Makevars b/po/Makevars
new file mode 100644
index 000000000..f9796543a
--- /dev/null
+++ b/po/Makevars
@@ -0,0 +1,41 @@
+# Makefile variables for PO directory in any package using GNU gettext.
+
+# Usually the message domain is the same as the package name.
+DOMAIN = $(PACKAGE)
+
+# These two variables depend on the location of this directory.
+subdir = po
+top_builddir = ..
+
+# These options get passed to xgettext.
+XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8
+
+# This is the copyright holder that gets inserted into the header of the
+# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
+# package. (Note that the msgstr strings, extracted from the package's
+# sources, belong to the copyright holder of the package.) Translators are
+# expected to transfer the copyright for their translations to this person
+# or entity, or to disclaim their copyright. The empty string stands for
+# the public domain; in this case the translators are expected to disclaim
+# their copyright.
+COPYRIGHT_HOLDER = Red Hat, Inc.
+
+# This is the email address or URL to which the translators shall report
+# bugs in the untranslated strings:
+# - Strings which are not entire sentences, see the maintainer guidelines
+# in the GNU gettext documentation, section 'Preparing Strings'.
+# - Strings which use unclear terms or require additional context to be
+# understood.
+# - Strings which make invalid assumptions about notation of date, time or
+# money.
+# - Pluralisation problems.
+# - Incorrect English spelling.
+# - Incorrect formatting.
+# It can be your email address, or a mailing list address where translators
+# can write to without being subscribed, or the URL of a web page through
+# which the translators can contact you.
+MSGID_BUGS_ADDRESS = anaconda-devel-list@redhat.com
+
+# This is the list of locale categories, beyond LC_MESSAGES, for which the
+# message catalogs shall be used. It is usually empty.
+EXTRA_LOCALE_CATEGORIES =
diff --git a/po/POTFILES.in b/po/POTFILES.in
new file mode 100644
index 000000000..c458733c2
--- /dev/null
+++ b/po/POTFILES.in
@@ -0,0 +1,121 @@
+# List of source files which contain translatable strings.
+# Copyright (C) 2009 Red Hat, Inc.
+
+# Main anaconda source files
+anaconda
+backend.py
+bootloader.py
+cmdline.py
+constants.py
+exception.py
+gui.py
+image.py
+installclass.py
+iutil.py
+kickstart.py
+livecd.py
+network.py
+packages.py
+partIntfHelpers.py
+platform.py
+rescue.py
+text.py
+upgrade.py
+vnc.py
+yuminstall.py
+
+# Install class definitions
+installclasses/fedora.py
+installclasses/rhel.py
+
+# Graphical user interface source files
+iw/GroupSelector.py
+iw/account_gui.py
+iw/autopart_type.py
+iw/blpasswidget.py
+iw/bootloader_main_gui.py
+iw/congrats_gui.py
+iw/examine_gui.py
+iw/language_gui.py
+iw/lvm_dialog_gui.py
+iw/netconfig_dialog.py
+iw/network_gui.py
+iw/osbootwidget.py
+iw/partition_dialog_gui.py
+iw/partition_gui.py
+iw/partition_ui_helpers_gui.py
+iw/progress_gui.py
+iw/raid_dialog_gui.py
+iw/task_gui.py
+iw/timezone_gui.py
+iw/upgrade_bootloader_gui.py
+iw/upgrade_migratefs_gui.py
+iw/upgrade_swap_gui.py
+iw/welcome_gui.py
+iw/zipl_gui.py
+
+# Loader source files
+loader/cdinstall.c
+loader/copy.c
+loader/dirbrowser.c
+loader/driverdisk.c
+loader/driverselect.c
+loader/hdinstall.c
+loader/kbd.c
+loader/kickstart.c
+loader/lang.c
+loader/loader.c
+loader/mediacheck.c
+loader/method.c
+loader/modules.c
+loader/net.c
+loader/nfsinstall.c
+loader/telnetd.c
+loader/urlinstall.c
+loader/urls.c
+loader/windows.c
+
+# Storage module source files
+storage/__init__.py
+storage/devicelibs/lvm.py
+storage/devices.py
+storage/devicetree.py
+storage/formats/fs.py
+storage/iscsi.py
+storage/partitioning.py
+storage/zfcp.py
+
+# Text mode user interface source files
+textw/complete_text.py
+textw/constants_text.py
+textw/keyboard_text.py
+textw/netconfig_text.py
+textw/partition_text.py
+textw/progress_text.py
+textw/timezone_text.py
+textw/upgrade_bootloader_text.py
+textw/upgrade_text.py
+textw/userauth_text.py
+textw/welcome_text.py
+textw/zipl_text.py
+
+# liveinst source files
+liveinst/liveinst.desktop.in
+
+# Glade definition files
+ui/GroupSelector.glade
+ui/account.glade
+ui/adddrive.glade
+ui/addrepo.glade
+ui/anaconda.glade
+ui/autopart.glade
+ui/blwhere.glade
+ui/detailed-dialog.glade
+ui/exnSave.glade
+ui/instkey.glade
+ui/iscsi-config.glade
+ui/lukspassphrase.glade
+ui/netconfig.glade
+ui/network.glade
+ui/tasksel.glade
+ui/zfcp-config.glade
diff --git a/po/Rules-quot b/po/Rules-quot
new file mode 100644
index 000000000..9c2a995e3
--- /dev/null
+++ b/po/Rules-quot
@@ -0,0 +1,47 @@
+# Special Makefile rules for English message catalogs with quotation marks.
+
+DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot
+
+.SUFFIXES: .insert-header .po-update-en
+
+en@quot.po-create:
+ $(MAKE) en@quot.po-update
+en@boldquot.po-create:
+ $(MAKE) en@boldquot.po-update
+
+en@quot.po-update: en@quot.po-update-en
+en@boldquot.po-update: en@boldquot.po-update-en
+
+.insert-header.po-update-en:
+ @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
+ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \
+ tmpdir=`pwd`; \
+ echo "$$lang:"; \
+ ll=`echo $$lang | sed -e 's/@.*//'`; \
+ LC_ALL=C; export LC_ALL; \
+ cd $(srcdir); \
+ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \
+ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
+ rm -f $$tmpdir/$$lang.new.po; \
+ else \
+ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
+ :; \
+ else \
+ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
+ exit 1; \
+ fi; \
+ fi; \
+ else \
+ echo "creation of $$lang.po failed!" 1>&2; \
+ rm -f $$tmpdir/$$lang.new.po; \
+ fi
+
+en@quot.insert-header: insert-header.sin
+ sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
+
+en@boldquot.insert-header: insert-header.sin
+ sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header
+
+mostlyclean: mostlyclean-quot
+mostlyclean-quot:
+ rm -f *.insert-header
diff --git a/po/anaconda.pot b/po/anaconda.pot
deleted file mode 100644
index f214889c1..000000000
--- a/po/anaconda.pot
+++ /dev/null
@@ -1,5663 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-03-27 15:38-0400\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../anaconda:266 ../anaconda:312
-#, python-format
-msgid "Error processing %%ksappend lines: %s"
-msgstr ""
-
-#: ../anaconda:269 ../anaconda:315
-#, python-format
-msgid "Unknown error processing %%ksappend lines: %s"
-msgstr ""
-
-#: ../anaconda:283 ../anaconda:327 ../cmdline.py:86 ../gui.py:1251
-#: ../text.py:543
-#, python-format
-msgid ""
-"The following error was found while parsing your kickstart configuration:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../anaconda:449
-msgid "Press <enter> for a shell"
-msgstr ""
-
-#: ../anaconda:458
-msgid "Fatal Error"
-msgstr ""
-
-#: ../anaconda:459
-#, python-format
-msgid ""
-"You do not have enough RAM to install %s on this machine.\n"
-"\n"
-"Press <return> to reboot your system.\n"
-msgstr ""
-
-#: ../anaconda:464 ../rescue.py:285 ../rescue.py:311 ../rescue.py:324
-#: ../rescue.py:397 ../rescue.py:406 ../text.py:694
-#: ../textw/constants_text.py:44 ../loader/cdinstall.c:228
-#: ../loader/cdinstall.c:232 ../loader/cdinstall.c:248
-#: ../loader/cdinstall.c:251 ../loader/cdinstall.c:445
-#: ../loader/cdinstall.c:452 ../loader/cdinstall.c:517
-#: ../loader/dirbrowser.c:145 ../loader/driverdisk.c:98
-#: ../loader/driverdisk.c:243 ../loader/driverdisk.c:274
-#: ../loader/driverdisk.c:305 ../loader/driverdisk.c:340
-#: ../loader/driverdisk.c:359 ../loader/driverdisk.c:371
-#: ../loader/driverdisk.c:379 ../loader/driverdisk.c:539
-#: ../loader/driverdisk.c:576 ../loader/driverselect.c:81
-#: ../loader/driverselect.c:205 ../loader/hdinstall.c:143
-#: ../loader/hdinstall.c:289 ../loader/hdinstall.c:352
-#: ../loader/hdinstall.c:384 ../loader/hdinstall.c:454
-#: ../loader/hdinstall.c:497 ../loader/hdinstall.c:510 ../loader/kbd.c:138
-#: ../loader/kickstart.c:132 ../loader/kickstart.c:142
-#: ../loader/kickstart.c:185 ../loader/kickstart.c:284
-#: ../loader/kickstart.c:375 ../loader/kickstart.c:553 ../loader/lang.c:115
-#: ../loader/lang.c:378 ../loader/loader.c:402 ../loader/loader.c:438
-#: ../loader/loader.c:481 ../loader/loader.c:502 ../loader/loader.c:519
-#: ../loader/loader.c:556 ../loader/loader.c:1203 ../loader/loader.c:1378
-#: ../loader/mediacheck.c:46 ../loader/mediacheck.c:85
-#: ../loader/mediacheck.c:92 ../loader/mediacheck.c:101 ../loader/method.c:279
-#: ../loader/method.c:353 ../loader/modules.c:335 ../loader/modules.c:347
-#: ../loader/net.c:564 ../loader/net.c:937 ../loader/net.c:1541
-#: ../loader/net.c:1564 ../loader/net.c:1808 ../loader/net.c:1830
-#: ../loader/net.c:1842 ../loader/nfsinstall.c:91 ../loader/nfsinstall.c:248
-#: ../loader/nfsinstall.c:267 ../loader/nfsinstall.c:335
-#: ../loader/telnetd.c:92 ../loader/urlinstall.c:83 ../loader/urlinstall.c:107
-#: ../loader/urlinstall.c:175 ../loader/urlinstall.c:418
-#: ../loader/urlinstall.c:427 ../loader/urlinstall.c:436 ../loader/urls.c:292
-#: ../loader/urls.c:328 ../loader/urls.c:334 ../loader/urls.c:346
-msgid "OK"
-msgstr ""
-
-#: ../anaconda:471
-msgid ""
-"You do not have enough RAM to use the graphical installer. Starting text "
-"mode."
-msgstr ""
-
-#: ../anaconda:534
-msgid "Starting graphical installation..."
-msgstr ""
-
-#: ../anaconda:823
-msgid "Would you like to use VNC?"
-msgstr ""
-
-#: ../anaconda:824
-msgid ""
-"Text mode provides a limited set of installation options. It does not allow "
-"you to specify your own partitioning layout or package selections. Would "
-"you like to use VNC mode instead?"
-msgstr ""
-
-#: ../anaconda:852
-msgid "Install class forcing text mode installation"
-msgstr ""
-
-#: ../anaconda:871
-msgid "Graphical installation not available... Starting text mode."
-msgstr ""
-
-#: ../anaconda:879
-msgid "DISPLAY variable not set. Starting text mode!"
-msgstr ""
-
-#: ../anaconda:1047
-msgid "reipl configuration successful => reboot"
-msgstr ""
-
-#: ../anaconda:1050
-msgid "reipl configuration failed => halt"
-msgstr ""
-
-#: ../backend.py:144
-#, python-format
-msgid "Upgrading %s\n"
-msgstr ""
-
-#: ../backend.py:146
-#, python-format
-msgid "Installing %s\n"
-msgstr ""
-
-#: ../backend.py:166
-msgid "Copying File"
-msgstr ""
-
-#: ../backend.py:167
-msgid "Transferring install image to hard drive..."
-msgstr ""
-
-#: ../backend.py:177
-msgid ""
-"An error occurred transferring the install image to your hard drive. This "
-"is probably due to bad media."
-msgstr ""
-
-#: ../backend.py:181
-msgid ""
-"An error occurred transferring the install image to your hard drive. You are "
-"probably out of disk space."
-msgstr ""
-
-#: ../backend.py:185 ../image.py:285 ../livecd.py:189 ../livecd.py:382
-#: ../partIntfHelpers.py:202 ../text.py:460 ../text.py:464
-#: ../yuminstall.py:371 ../yuminstall.py:664 ../yuminstall.py:779
-#: ../yuminstall.py:1056 ../yuminstall.py:1124 ../yuminstall.py:1312
-#: ../yuminstall.py:1337 ../iw/autopart_type.py:100 ../iw/autopart_type.py:199
-#: ../iw/autopart_type.py:328 ../iw/autopart_type.py:331
-#: ../iw/autopart_type.py:360 ../iw/osbootwidget.py:209
-#: ../iw/osbootwidget.py:218 ../iw/raid_dialog_gui.py:700
-#: ../iw/raid_dialog_gui.py:739 ../iw/task_gui.py:63 ../iw/task_gui.py:161
-#: ../iw/task_gui.py:292 ../iw/task_gui.py:414 ../textw/netconfig_text.py:271
-#: ../textw/partition_text.py:178 ../textw/partition_text.py:184
-#: ../textw/partition_text.py:206 ../textw/upgrade_text.py:175
-#: ../textw/upgrade_text.py:182 ../storage/__init__.py:268
-#: ../storage/__init__.py:1423 ../storage/__init__.py:1439
-#: ../loader/cdinstall.c:228 ../loader/cdinstall.c:517
-#: ../loader/driverdisk.c:98 ../loader/driverdisk.c:305
-#: ../loader/driverdisk.c:340 ../loader/driverdisk.c:371
-#: ../loader/driverdisk.c:379 ../loader/driverdisk.c:443
-#: ../loader/hdinstall.c:143 ../loader/hdinstall.c:352
-#: ../loader/hdinstall.c:454 ../loader/hdinstall.c:497
-#: ../loader/hdinstall.c:510 ../loader/kickstart.c:284 ../loader/lang.c:115
-#: ../loader/loader.c:402 ../loader/loader.c:519 ../loader/loader.c:1203
-#: ../loader/mediacheck.c:46 ../loader/mediacheck.c:85
-#: ../loader/mediacheck.c:92 ../loader/method.c:279 ../loader/method.c:353
-#: ../loader/nfsinstall.c:248 ../loader/nfsinstall.c:267
-#: ../loader/telnetd.c:92 ../loader/urlinstall.c:83 ../loader/urlinstall.c:107
-#: ../loader/urlinstall.c:175 ../loader/urls.c:328 ../loader/urls.c:334
-msgid "Error"
-msgstr ""
-
-#: ../bootloader.py:43 ../bootloader.py:198 ../image.py:82
-#: ../partedUtils.py:169 ../partedUtils.py:199 ../partedUtils.py:835
-#: ../partedUtils.py:985 ../upgrade.py:298 ../yuminstall.py:1510
-#: ../yuminstall.py:1539 ../iw/autopart_type.py:209 ../iw/blpasswidget.py:151
-#: ../iw/upgrade_swap_gui.py:192 ../iw/upgrade_swap_gui.py:200
-#: ../iw/upgrade_swap_gui.py:207 ../textw/upgrade_text.py:187
-#: ../storage/devicetree.py:125 ../storage/devicetree.py:150
-msgid "Warning"
-msgstr ""
-
-#: ../bootloader.py:44
-msgid ""
-"Your filesystems have already been activated. You cannot go back past this "
-"point.\n"
-"\n"
-"Would you like to continue with the installation?"
-msgstr ""
-
-#: ../bootloader.py:48 ../exception.py:468 ../exception.py:485
-#: ../exception.py:508 ../exception.py:523 ../exception.py:548 ../gui.py:1256
-#: ../gui.py:1384 ../gui.py:1461 ../image.py:91 ../livecd.py:196
-#: ../livecd.py:389 ../packages.py:127 ../packages.py:135 ../packages.py:143
-#: ../packages.py:151 ../packages.py:163 ../packages.py:172 ../packages.py:180
-#: ../packages.py:189 ../upgrade.py:100 ../upgrade.py:120 ../upgrade.py:253
-#: ../yuminstall.py:783 ../yuminstall.py:863 ../yuminstall.py:869
-#: ../yuminstall.py:1027 ../yuminstall.py:1052 ../yuminstall.py:1112
-#: ../yuminstall.py:1307 ../yuminstall.py:1344 ../storage/__init__.py:85
-#: ../storage/__init__.py:1508
-msgid "_Exit installer"
-msgstr ""
-
-#: ../bootloader.py:48 ../image.py:92 ../image.py:248 ../kickstart.py:1214
-#: ../kickstart.py:1253 ../partedUtils.py:988 ../upgrade.py:100
-#: ../upgrade.py:120 ../yuminstall.py:1117 ../iw/partition_gui.py:1036
-#: ../storage/__init__.py:1509
-msgid "_Continue"
-msgstr ""
-
-#: ../bootloader.py:105 ../platform.py:90 ../platform.py:253
-#: ../platform.py:297 ../platform.py:358
-msgid "RAID Device"
-msgstr ""
-
-#: ../bootloader.py:134
-msgid "Bootloader"
-msgstr ""
-
-#: ../bootloader.py:134
-msgid "Installing bootloader..."
-msgstr ""
-
-#: ../bootloader.py:199
-msgid ""
-"No kernel packages were installed on your system. Your boot loader "
-"configuration will not be changed."
-msgstr ""
-
-#: ../cmdline.py:55
-msgid "Completed"
-msgstr ""
-
-#: ../cmdline.py:63
-msgid "In progress... "
-msgstr ""
-
-#: ../cmdline.py:98
-msgid "Can't have a question in command line mode!"
-msgstr ""
-
-#: ../constants.py:74
-msgid ""
-"An unhandled exception has occurred. This is most likely a bug. Please "
-"save a copy of the detailed exception and file a bug report"
-msgstr ""
-
-#: ../constants.py:80
-msgid " with the provider of this software."
-msgstr ""
-
-#: ../constants.py:84
-#, python-format
-msgid " against anaconda at %s"
-msgstr ""
-
-#: ../exception.py:391
-#, python-format
-msgid ""
-"Your bug could not be filed due to the following error when communicating "
-"with bugzilla:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../exception.py:394
-#, python-format
-msgid ""
-"Your bug could not be filed due to bad information in the bug fields. This "
-"is most likely an error in anaconda:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../exception.py:398
-msgid "Unable To File Bug"
-msgstr ""
-
-#: ../exception.py:404
-msgid "Bug Filing Not Supported"
-msgstr ""
-
-#: ../exception.py:405
-msgid ""
-"Your distribution does not provide a supported bug filing system, so you "
-"cannot save your exception this way."
-msgstr ""
-
-#: ../exception.py:411
-msgid "Invalid Bug Information"
-msgstr ""
-
-#: ../exception.py:412
-msgid "Please provide a valid username, password, and short bug description."
-msgstr ""
-
-#: ../exception.py:424
-msgid "Unable To Login"
-msgstr ""
-
-#: ../exception.py:425
-#, python-format
-msgid ""
-"There was an error logging into %s using the provided username and password."
-msgstr ""
-
-#: ../exception.py:462
-msgid "Bug Created"
-msgstr ""
-
-#: ../exception.py:463
-#, python-format
-msgid ""
-"A new bug has been created with your traceback attached. Please add "
-"additional information such as what you were doing when you encountered the "
-"bug, screenshots, and whatever else is appropriate to the following bug:\n"
-"\n"
-"%s/%s"
-msgstr ""
-
-#: ../exception.py:479
-msgid "Bug Updated"
-msgstr ""
-
-#: ../exception.py:480
-#, python-format
-msgid ""
-"A bug with your information already exists. Your account has been added to "
-"the CC list and your traceback added as a comment. Please add additional "
-"descriptive information to the following bug:\n"
-"\n"
-"%s/%s"
-msgstr ""
-
-#: ../exception.py:504 ../exception.py:519 ../exception.py:544
-msgid "Dump Written"
-msgstr ""
-
-#: ../exception.py:505 ../exception.py:520
-msgid ""
-"Your system's state has been successfully written to the disk. The installer "
-"will now exit."
-msgstr ""
-
-#: ../exception.py:511 ../exception.py:528 ../exception.py:551
-msgid "Dump Not Written"
-msgstr ""
-
-#: ../exception.py:512 ../exception.py:529
-msgid "There was a problem writing the system state to the disk."
-msgstr ""
-
-#: ../exception.py:535 ../exception.py:558 ../rescue.py:201
-#: ../yuminstall.py:1022
-msgid "No Network Available"
-msgstr ""
-
-#: ../exception.py:536 ../exception.py:559
-msgid ""
-"Cannot save a bug report since there is no active networking device "
-"available."
-msgstr ""
-
-#: ../exception.py:545
-msgid ""
-"Your system's state has been successfully written to the remote host. The "
-"installer will now exit."
-msgstr ""
-
-#: ../exception.py:552
-msgid "There was a problem writing the system state to the remote host."
-msgstr ""
-
-#: ../gui.py:106
-msgid "An error occurred copying the screenshots over."
-msgstr ""
-
-#: ../gui.py:117
-msgid "Screenshots Copied"
-msgstr ""
-
-#: ../gui.py:118
-msgid ""
-"The screenshots have been saved into the directory:\n"
-"\n"
-"\t/root/anaconda-screenshots/\n"
-"\n"
-"You can access these when you reboot and login as root."
-msgstr ""
-
-#: ../gui.py:161
-msgid "Saving Screenshot"
-msgstr ""
-
-#: ../gui.py:162
-#, python-format
-msgid "A screenshot named '%s' has been saved."
-msgstr ""
-
-#: ../gui.py:165
-msgid "Error Saving Screenshot"
-msgstr ""
-
-#: ../gui.py:166
-msgid ""
-"An error occurred while saving the screenshot. If this occurred during "
-"package installation, you may need to try several times for it to succeed."
-msgstr ""
-
-#: ../gui.py:546 ../text.py:500
-msgid "Installation Key"
-msgstr ""
-
-#: ../gui.py:617 ../text.py:308
-msgid ""
-"Choose a passphrase for your encrypted devices. You will be prompted for the "
-"passphrase during system boot."
-msgstr ""
-
-#: ../gui.py:636 ../gui.py:644 ../text.py:346 ../text.py:356
-msgid "Error with passphrase"
-msgstr ""
-
-#: ../gui.py:637 ../text.py:347
-msgid "The passphrases you entered were different. Please try again."
-msgstr ""
-
-#: ../gui.py:645
-msgid "The passphrase must be at least eight characters long."
-msgstr ""
-
-#: ../gui.py:679 ../text.py:380
-#, python-format
-msgid ""
-"Device %s is encrypted. In order to access the device's contents during "
-"installation you must enter the device's passphrase below."
-msgstr ""
-
-#: ../gui.py:736
-#, python-format
-msgid "Bugzilla (%s)"
-msgstr ""
-
-#: ../gui.py:766
-msgid "No devices found"
-msgstr ""
-
-#: ../gui.py:873 ../gui.py:1461 ../partIntfHelpers.py:149
-#: ../partIntfHelpers.py:304 ../text.py:98 ../text.py:99
-#: ../textw/constants_text.py:48 ../loader/dirbrowser.c:145
-#: ../loader/driverdisk.c:244 ../loader/kickstart.c:375 ../loader/loader.c:438
-#: ../loader/loader.c:556
-msgid "Cancel"
-msgstr ""
-
-#: ../gui.py:885 ../gui.py:886 ../gui.py:998 ../gui.py:999
-#: tmp/anaconda.glade.h:2
-msgid "_Debug"
-msgstr ""
-
-#: ../gui.py:1049 ../gui.py:1051 ../gui.py:1458 ../livecd.py:113
-msgid "Exit installer"
-msgstr ""
-
-#: ../gui.py:1051 ../text.py:283 ../text.py:291
-msgid "Debug"
-msgstr ""
-
-#: ../gui.py:1053 ../text.py:287
-msgid "Exception Occurred"
-msgstr ""
-
-#: ../gui.py:1253 ../text.py:545
-msgid "Error Parsing Kickstart Config"
-msgstr ""
-
-#: ../gui.py:1293
-msgid "default:LTR"
-msgstr ""
-
-#: ../gui.py:1373 ../text.py:659
-msgid "Error!"
-msgstr ""
-
-#: ../gui.py:1374 ../text.py:660
-#, python-format
-msgid ""
-"An error occurred when attempting to load an installer interface component.\n"
-"\n"
-"className = %s"
-msgstr ""
-
-#: ../gui.py:1379 ../image.py:164 ../image.py:194 ../packages.py:428
-#: ../packages.py:433
-msgid "_Exit"
-msgstr ""
-
-#: ../gui.py:1380 ../image.py:164 ../image.py:194 ../livecd.py:196
-#: ../yuminstall.py:656 ../yuminstall.py:1052 ../yuminstall.py:1112
-#: ../yuminstall.py:1307
-msgid "_Retry"
-msgstr ""
-
-#: ../gui.py:1383 ../packages.py:432
-msgid "The installer will now exit..."
-msgstr ""
-
-#: ../gui.py:1386 ../packages.py:435
-msgid "Your system will now be rebooted..."
-msgstr ""
-
-#: ../gui.py:1387 ../image.py:248 ../packages.py:436 ../partedUtils.py:987
-#: ../yuminstall.py:1360
-msgid "_Reboot"
-msgstr ""
-
-#: ../gui.py:1389
-msgid "Exiting"
-msgstr ""
-
-#: ../gui.py:1459
-msgid "Are you sure you wish to exit the installation?"
-msgstr ""
-
-#: ../gui.py:1468
-#, python-format
-msgid "%s Installer"
-msgstr ""
-
-#: ../gui.py:1475
-msgid "Unable to load title bar"
-msgstr ""
-
-#: ../gui.py:1531
-msgid "Install Window"
-msgstr ""
-
-#: ../image.py:83
-#, python-format
-msgid ""
-"The ISO image %s has a size which is not a multiple of 2048 bytes. This may "
-"mean it was corrupted on transfer to this computer.\n"
-"\n"
-"It is recommended that you exit and abort your installation, but you can "
-"choose to continue if you think this is in error."
-msgstr ""
-
-#: ../image.py:156
-msgid "Couldn't Mount ISO Source"
-msgstr ""
-
-#: ../image.py:157
-#, python-format
-msgid ""
-"An error occurred mounting the source device %s. This may happen if your "
-"ISO images are located on an advanced storage device like LVM or RAID, or if "
-"there was a problem mounting a partition. Click exit to abort the "
-"installation."
-msgstr ""
-
-#: ../image.py:185
-msgid "Missing ISO 9660 Image"
-msgstr ""
-
-#: ../image.py:186
-#, python-format
-msgid ""
-"The installer has tried to mount image #%s, but cannot find it on the hard "
-"drive.\n"
-"\n"
-"Please copy this image to the drive and click Retry. Click Exit to abort "
-"the installation."
-msgstr ""
-
-#: ../image.py:241
-msgid "Required Install Media"
-msgstr ""
-
-#: ../image.py:242
-#, python-format
-msgid ""
-"The software you have selected to install will require the following %s %s "
-"discs:\n"
-"\n"
-"%s\n"
-"Please have these ready before proceeding with the installation. If you "
-"need to abort the installation and exit please select \"Reboot\"."
-msgstr ""
-
-#: ../image.py:248 ../livecd.py:388 ../packages.py:382 ../packages.py:433
-#: ../packages.py:436 ../upgrade.py:252 ../yuminstall.py:783
-#: ../yuminstall.py:869 ../yuminstall.py:1344 ../yuminstall.py:1360
-msgid "_Back"
-msgstr ""
-
-#: ../image.py:286
-#, python-format
-msgid ""
-"An error occurred unmounting the disc. Please make sure you're not "
-"accessing %s from the shell on tty2 and then click OK to retry."
-msgstr ""
-
-#: ../installclass.py:71
-msgid "Install on System"
-msgstr ""
-
-#: ../iutil.py:740
-#, python-format
-msgid "Error: On open, cannot set reIPL method to %s (%s: %s)"
-msgstr ""
-
-#: ../iutil.py:748
-#, python-format
-msgid "Error: On write, cannot set reIPL method to %s (%s: %s)"
-msgstr ""
-
-#: ../iutil.py:755
-#, python-format
-msgid "Error: On close, cannot set reIPL method to %s (%s: %s)"
-msgstr ""
-
-#: ../iutil.py:765 ../iutil.py:817
-#, python-format
-msgid "Error: %s splits into %s but not like we expect"
-msgstr ""
-
-#: ../iutil.py:778
-#, python-format
-msgid "Error: Could not set %s as reIPL device (%s)"
-msgstr ""
-
-#: ../iutil.py:787
-#, python-format
-msgid "Error: Could not reset loadparm (%s)"
-msgstr ""
-
-#: ../iutil.py:796
-#, python-format
-msgid "Warning: Could not reset parm (%s)"
-msgstr ""
-
-#: ../iutil.py:806
-#, python-format
-msgid ""
-"After shutdown, please perform a manual IPL from DASD device %s to continue "
-"installation"
-msgstr ""
-
-#: ../iutil.py:834
-#, python-format
-msgid "Error: reading FCP property %s for reIPL (%s)"
-msgstr ""
-
-#: ../iutil.py:847
-#, python-format
-msgid "Error: writing FCP property %s for reIPL (%s)"
-msgstr ""
-
-#: ../iutil.py:860
-#, python-format
-msgid "Error: writing default FCP property %s for reIPL (%s)"
-msgstr ""
-
-#: ../iutil.py:870
-#, python-format
-msgid ""
-"After shutdown, please perform a manual IPL from FCP %(device)s with WWPN %"
-"(wwpn)s and LUN %(lun)s to continue installation"
-msgstr ""
-
-#: ../iutil.py:877
-msgid ""
-"After shutdown, please perform a manual IPL from the device now containing /"
-"boot to continue installation"
-msgstr ""
-
-#: ../iutil.py:887
-msgid "Could not get information for mount point /boot or /"
-msgstr ""
-
-#: ../iutil.py:897
-msgid "Error determining mount point type"
-msgstr ""
-
-#: ../iutil.py:901
-msgid "The mount point /boot or / is on a disk that we are not familiar with"
-msgstr ""
-
-#: ../kickstart.py:96
-#, python-format
-msgid ""
-"There was an error running the kickstart script at line %s. You may examine "
-"the output in %s. This is a fatal error and your install will be aborted. "
-"Press the OK button to exit the installer."
-msgstr ""
-
-#: ../kickstart.py:111 ../kickstart.py:113
-msgid "Scriptlet Failure"
-msgstr ""
-
-#: ../kickstart.py:1155 ../kickstart.py:1172
-msgid "Running..."
-msgstr ""
-
-#: ../kickstart.py:1156
-msgid "Running post-install scripts"
-msgstr ""
-
-#: ../kickstart.py:1173
-msgid "Running pre-install scripts"
-msgstr ""
-
-#: ../kickstart.py:1205
-msgid "Missing Package"
-msgstr ""
-
-#: ../kickstart.py:1206
-#, python-format
-msgid ""
-"You have specified that the package '%s' should be installed. This package "
-"does not exist. Would you like to continue or abort your installation?"
-msgstr ""
-
-#: ../kickstart.py:1212 ../kickstart.py:1251
-msgid "_Abort"
-msgstr ""
-
-#: ../kickstart.py:1213 ../kickstart.py:1252
-msgid "_Ignore All"
-msgstr ""
-
-#: ../kickstart.py:1243
-msgid "Missing Group"
-msgstr ""
-
-#: ../kickstart.py:1244
-#, python-format
-msgid ""
-"You have specified that the group '%s' should be installed. This group does "
-"not exist. Would you like to continue or abort your installation?"
-msgstr ""
-
-#: ../kickstart.py:1350
-#, python-format
-msgid ""
-"Your kickstart file is missing required information that anaconda cannot "
-"prompt for. Please add the following sections and try again:\n"
-"%s"
-msgstr ""
-
-#: ../livecd.py:108
-msgid "Unable to find image"
-msgstr ""
-
-#: ../livecd.py:109
-#, python-format
-msgid ""
-"The given location isn't a valid %s live CD to use as an installation source."
-msgstr ""
-
-#: ../livecd.py:171
-msgid "Copying live image to hard drive."
-msgstr ""
-
-#: ../livecd.py:190
-msgid ""
-"There was an error installing the live image to your hard drive. This could "
-"be due to bad media. Please verify your installation media.\n"
-"\n"
-"If you exit, your system will be left in an inconsistent state that will "
-"require reinstallation."
-msgstr ""
-
-#: ../livecd.py:220
-msgid "Doing post-installation"
-msgstr ""
-
-#: ../livecd.py:221
-msgid ""
-"Performing post-installation filesystem changes. This may take several "
-"minutes..."
-msgstr ""
-
-#: ../livecd.py:383
-#, python-format
-msgid ""
-"The root filesystem you created is not large enough for this live image "
-"(%.2f MB required)."
-msgstr ""
-
-#: ../network.py:58
-msgid "Hostname must be 255 or fewer characters in length."
-msgstr ""
-
-#: ../network.py:64
-msgid ""
-"Hostname must start with a valid character in the ranges 'a-z', 'A-Z', or '0-"
-"9'"
-msgstr ""
-
-#: ../network.py:69
-msgid ""
-"Hostnames can only contain the characters 'a-z', 'A-Z', '0-9', '-', or '.'"
-msgstr ""
-
-#: ../network.py:178
-msgid "IP address is missing."
-msgstr ""
-
-#: ../network.py:182
-msgid ""
-"IPv4 addresses must contain four numbers between 0 and 255, separated by "
-"periods."
-msgstr ""
-
-#: ../network.py:185
-#, python-format
-msgid "'%s' is not a valid IPv6 address."
-msgstr ""
-
-#: ../network.py:187
-#, python-format
-msgid "'%s' is an invalid IP address."
-msgstr ""
-
-#: ../packages.py:122
-msgid "Device Resize Failed"
-msgstr ""
-
-#: ../packages.py:123
-#, python-format
-msgid "An error was encountered while resizing device %s."
-msgstr ""
-
-#: ../packages.py:130
-msgid "Device Creation Failed"
-msgstr ""
-
-#: ../packages.py:131
-#, python-format
-msgid "An error was encountered while creating device %s."
-msgstr ""
-
-#: ../packages.py:138
-msgid "Device Removal Failed"
-msgstr ""
-
-#: ../packages.py:139
-#, python-format
-msgid "An error was encountered while removing device %s."
-msgstr ""
-
-#: ../packages.py:146
-msgid "Device Setup Failed"
-msgstr ""
-
-#: ../packages.py:147
-#, python-format
-msgid "An error was encountered while setting up device %s."
-msgstr ""
-
-#: ../packages.py:158
-msgid "Resizing Failed"
-msgstr ""
-
-#: ../packages.py:159
-#, python-format
-msgid "There was an error encountered while resizing the device %s."
-msgstr ""
-
-#: ../packages.py:166
-msgid "Migration Failed"
-msgstr ""
-
-#: ../packages.py:167
-#, python-format
-msgid "An error was encountered while migrating filesystem on device %s."
-msgstr ""
-
-#: ../packages.py:175
-msgid "Formatting Failed"
-msgstr ""
-
-#: ../packages.py:176
-#, python-format
-msgid "An error was encountered while formatting device %s."
-msgstr ""
-
-#: ../packages.py:184
-msgid "Storage Activation Failed"
-msgstr ""
-
-#: ../packages.py:185
-msgid "An error was encountered while activating your storage configuration."
-msgstr ""
-
-#: ../packages.py:353
-msgid "Invalid Key"
-msgstr ""
-
-#: ../packages.py:354
-msgid "The key you entered is invalid."
-msgstr ""
-
-#: ../packages.py:379 ../rescue.py:248 ../rescue.py:250
-#: ../textw/upgrade_text.py:133 ../loader/cdinstall.c:248
-#: ../loader/cdinstall.c:251 ../loader/method.c:326
-msgid "Skip"
-msgstr ""
-
-#: ../packages.py:382
-msgid "_Skip"
-msgstr ""
-
-#: ../packages.py:414 ../packages.py:437
-msgid "Warning! This is pre-release software!"
-msgstr ""
-
-#: ../packages.py:415
-#, python-format
-msgid ""
-"Thank you for downloading this pre-release of %s.\n"
-"\n"
-"This is not a final release and is not intended for use on production "
-"systems. The purpose of this release is to collect feedback from testers, "
-"and it is not suitable for day to day usage.\n"
-"\n"
-"To report feedback, please visit:\n"
-"\n"
-" %s\n"
-"\n"
-"and file a report against '%s'.\n"
-msgstr ""
-
-#: ../packages.py:428
-msgid "_Install anyway"
-msgstr ""
-
-#: ../partIntfHelpers.py:41
-msgid "Please enter a volume group name."
-msgstr ""
-
-#: ../partIntfHelpers.py:45
-msgid "Volume Group Names must be less than 128 characters"
-msgstr ""
-
-#: ../partIntfHelpers.py:48
-#, python-format
-msgid "Error - the volume group name %s is not valid."
-msgstr ""
-
-#: ../partIntfHelpers.py:53
-msgid ""
-"Error - the volume group name contains illegal characters or spaces. "
-"Acceptable characters are letters, digits, '.' or '_'."
-msgstr ""
-
-#: ../partIntfHelpers.py:63
-msgid "Please enter a logical volume name."
-msgstr ""
-
-#: ../partIntfHelpers.py:67
-msgid "Logical Volume Names must be less than 128 characters"
-msgstr ""
-
-#: ../partIntfHelpers.py:71
-#, python-format
-msgid "Error - the logical volume name %s is not valid."
-msgstr ""
-
-#: ../partIntfHelpers.py:77
-msgid ""
-"Error - the logical volume name contains illegal characters or spaces. "
-"Acceptable characters are letters, digits, '.' or '_'."
-msgstr ""
-
-#: ../partIntfHelpers.py:101
-#, python-format
-msgid ""
-"The mount point %s is invalid. Mount points must start with '/' and cannot "
-"end with '/', and must contain printable characters and no spaces."
-msgstr ""
-
-#: ../partIntfHelpers.py:108
-msgid "Please specify a mount point for this partition."
-msgstr ""
-
-#: ../partIntfHelpers.py:121 ../partIntfHelpers.py:128
-msgid "Unable To Delete"
-msgstr ""
-
-#: ../partIntfHelpers.py:122
-msgid "You must first select a partition to delete."
-msgstr ""
-
-#: ../partIntfHelpers.py:145 ../partIntfHelpers.py:303
-#: ../iw/lvm_dialog_gui.py:747
-msgid "Confirm Delete"
-msgstr ""
-
-#: ../partIntfHelpers.py:146
-#, python-format
-msgid "You are about to delete all partitions on the device '%s'."
-msgstr ""
-
-#: ../partIntfHelpers.py:149 ../partIntfHelpers.py:304
-#: ../iw/lvm_dialog_gui.py:750 ../iw/lvm_dialog_gui.py:1261
-#: ../iw/osbootwidget.py:102 ../iw/partition_gui.py:1333
-msgid "_Delete"
-msgstr ""
-
-#: ../partIntfHelpers.py:169
-msgid "Notice"
-msgstr ""
-
-#: ../partIntfHelpers.py:170
-#, python-format
-msgid ""
-"The following partitions were not deleted because they are in use:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../partIntfHelpers.py:185
-msgid "Format as Swap?"
-msgstr ""
-
-#: ../partIntfHelpers.py:186
-#, python-format
-msgid ""
-"%s has a partition type of 0x82 (Linux swap) but does not appear to be "
-"formatted as a Linux swap partition.\n"
-"\n"
-"Would you like to format this partition as a swap partition?"
-msgstr ""
-
-#: ../partIntfHelpers.py:201
-#, python-format
-msgid "You need to select at least one hard drive to install %s."
-msgstr ""
-
-#: ../partIntfHelpers.py:206
-msgid ""
-"You have chosen to use a pre-existing partition for this installation "
-"without formatting it. We recommend that you format this partition to make "
-"sure files from a previous operating system installation do not cause "
-"problems with this installation of Linux. However, if this partition "
-"contains files that you need to keep, such as home directories, then "
-"continue without formatting this partition."
-msgstr ""
-
-#: ../partIntfHelpers.py:214
-msgid "Format?"
-msgstr ""
-
-#: ../partIntfHelpers.py:214 ../iw/partition_gui.py:1034
-msgid "_Modify Partition"
-msgstr ""
-
-#: ../partIntfHelpers.py:214
-msgid "Do _Not Format"
-msgstr ""
-
-#: ../partIntfHelpers.py:222
-msgid "Error with Partitioning"
-msgstr ""
-
-#: ../partIntfHelpers.py:223
-#, python-format
-msgid ""
-"The following critical errors exist with your requested partitioning scheme. "
-"These errors must be corrected prior to continuing with your install of %s.\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../partIntfHelpers.py:237
-msgid "Partitioning Warning"
-msgstr ""
-
-#: ../partIntfHelpers.py:238
-#, python-format
-msgid ""
-"The following warnings exist with your requested partition scheme.\n"
-"\n"
-"%s\n"
-"\n"
-"Would you like to continue with your requested partitioning scheme?"
-msgstr ""
-
-#: ../partIntfHelpers.py:252 ../iw/partition_gui.py:643
-msgid ""
-"The following pre-existing partitions have been selected to be formatted, "
-"destroying all data."
-msgstr ""
-
-#: ../partIntfHelpers.py:255
-msgid ""
-"Select 'Yes' to continue and format these partitions, or 'No' to go back and "
-"change these settings."
-msgstr ""
-
-#: ../partIntfHelpers.py:261
-msgid "Format Warning"
-msgstr ""
-
-#: ../partIntfHelpers.py:287
-#, python-format
-msgid ""
-"You are about to delete the volume group \"%s\".\n"
-"\n"
-"ALL logical volumes in this volume group will be lost!"
-msgstr ""
-
-#: ../partIntfHelpers.py:291
-#, python-format
-msgid "You are about to delete the logical volume \"%s\"."
-msgstr ""
-
-#: ../partIntfHelpers.py:294
-msgid "You are about to delete a RAID device."
-msgstr ""
-
-#: ../partIntfHelpers.py:296
-#, python-format
-msgid "You are about to delete the %s partition."
-msgstr ""
-
-#: ../partIntfHelpers.py:300
-#, python-format
-msgid "You are about to delete the %s %s"
-msgstr ""
-
-#: ../partIntfHelpers.py:311
-msgid "Confirm Reset"
-msgstr ""
-
-#: ../partIntfHelpers.py:312
-msgid ""
-"Are you sure you want to reset the partition table to its original state?"
-msgstr ""
-
-#: ../partedUtils.py:108 ../iw/partition_gui.py:779 ../iw/partition_gui.py:927
-msgid "None"
-msgstr ""
-
-#: ../partedUtils.py:170
-#, python-format
-msgid ""
-"The device %s is LDL formatted instead of CDL formatted. LDL formatted "
-"DASDs are not supported for usage during an install of %s. If you wish to "
-"use this disk for installation, it must be re-initialized causing the loss "
-"of ALL DATA on this drive.\n"
-"\n"
-"Would you like to reformat this DASD using CDL format?"
-msgstr ""
-
-#: ../partedUtils.py:200
-#, python-format
-msgid ""
-"/dev/%s currently has a %s partition layout. To use this drive for the "
-"installation of %s, it must be re-initialized, causing the loss of ALL DATA "
-"on this drive.\n"
-"\n"
-"Would you like to re-initialize this drive?"
-msgstr ""
-
-#: ../partedUtils.py:209 ../storage/devicetree.py:130
-msgid "_Ignore drive"
-msgstr ""
-
-#: ../partedUtils.py:210 ../storage/devicetree.py:131
-msgid "_Re-initialize drive"
-msgstr ""
-
-#: ../partedUtils.py:740
-msgid "Initializing"
-msgstr ""
-
-#: ../partedUtils.py:741
-#, python-format
-msgid "Please wait while formatting drive %s...\n"
-msgstr ""
-
-#: ../partedUtils.py:826
-#, python-format
-msgid ""
-"The partition table on device %s (%s %-0.f MB) was unreadable.\n"
-"\n"
-"To create new partitions it must be initialized, causing the loss of ALL "
-"DATA on this drive.\n"
-"\n"
-"This operation will override any previous installation choices about which "
-"drives to ignore.\n"
-"\n"
-"Would you like to initialize this drive, erasing ALL DATA?"
-msgstr ""
-
-#: ../partedUtils.py:978
-#, python-format
-msgid ""
-"The drive /dev/%s has more than 15 partitions on it. The SCSI subsystem in "
-"the Linux kernel does not allow for more than 15 partitons at this time. "
-"You will not be able to make changes to the partitioning of this disk or use "
-"any partitions beyond /dev/%s15 in %s"
-msgstr ""
-
-#: ../partedUtils.py:1058 ../storage/__init__.py:851
-msgid "No Drives Found"
-msgstr ""
-
-#: ../partedUtils.py:1059 ../storage/__init__.py:852
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"file systems. Please check your hardware for the cause of this problem."
-msgstr ""
-
-#: ../platform.py:91 ../platform.py:94 ../platform.py:254 ../platform.py:298
-#: ../platform.py:359 ../platform.py:362
-msgid "Master Boot Record (MBR)"
-msgstr ""
-
-#: ../platform.py:93 ../platform.py:361
-msgid "First sector of boot partition"
-msgstr ""
-
-#: ../platform.py:165
-msgid "EFI System Partition"
-msgstr ""
-
-#: ../platform.py:256
-msgid "PPC PReP Boot"
-msgstr ""
-
-#: ../platform.py:300 ../platform.py:303
-msgid "Apple Bootstrap"
-msgstr ""
-
-#: ../rescue.py:167
-msgid "When finished please exit from the shell and your system will reboot."
-msgstr ""
-
-#: ../rescue.py:174
-msgid "Unable to find /bin/sh to execute! Not starting shell"
-msgstr ""
-
-#: ../rescue.py:193
-msgid "Setup Networking"
-msgstr ""
-
-#: ../rescue.py:194
-msgid "Do you want to start the network interfaces on this system?"
-msgstr ""
-
-#: ../rescue.py:195 ../textw/constants_text.py:56 ../loader/driverdisk.c:483
-#: ../loader/driverdisk.c:493 ../loader/hdinstall.c:231
-msgid "Yes"
-msgstr ""
-
-#: ../rescue.py:195 ../rescue.py:197 ../textw/constants_text.py:60
-#: ../loader/driverdisk.c:483 ../loader/driverdisk.c:493
-msgid "No"
-msgstr ""
-
-#: ../rescue.py:202
-msgid ""
-"Unable to activate a networking device. Networking will not be available in "
-"rescue mode."
-msgstr ""
-
-#: ../rescue.py:237 ../rescue.py:306 ../rescue.py:317 ../rescue.py:392
-msgid "Rescue"
-msgstr ""
-
-#: ../rescue.py:238
-#, python-format
-msgid ""
-"The rescue environment will now attempt to find your Linux installation and "
-"mount it under the directory %s. You can then make any changes required to "
-"your system. If you want to proceed with this step choose 'Continue'. You "
-"can also choose to mount your file systems read-only instead of read-write "
-"by choosing 'Read-Only'.\n"
-"\n"
-"If for some reason this process fails you can choose 'Skip' and this step "
-"will be skipped and you will go directly to a command shell.\n"
-"\n"
-msgstr ""
-
-#: ../rescue.py:248 ../iw/partition_gui.py:547 ../storage/__init__.py:135
-#: ../storage/devicetree.py:78 ../loader/cdinstall.c:206
-#: ../loader/cdinstall.c:214 ../loader/driverdisk.c:444
-msgid "Continue"
-msgstr ""
-
-#: ../rescue.py:248 ../rescue.py:253
-msgid "Read-Only"
-msgstr ""
-
-#: ../rescue.py:282
-msgid "System to Rescue"
-msgstr ""
-
-#: ../rescue.py:283
-msgid "Which device holds the root partition of your installation?"
-msgstr ""
-
-#: ../rescue.py:285 ../rescue.py:289 ../text.py:664 ../text.py:666
-msgid "Exit"
-msgstr ""
-
-#: ../rescue.py:307
-msgid ""
-"Your system had dirty file systems which you chose not to mount. Press "
-"return to get a shell from which you can fsck and mount your partitions. "
-"The system will reboot automatically when you exit from the shell."
-msgstr ""
-
-#: ../rescue.py:318
-#, python-format
-msgid ""
-"Your system has been mounted under %s.\n"
-"\n"
-"Press <return> to get a shell. If you would like to make your system the "
-"root environment, run the command:\n"
-"\n"
-"\tchroot %s\n"
-"\n"
-"The system will reboot automatically when you exit from the shell."
-msgstr ""
-
-#: ../rescue.py:393
-#, python-format
-msgid ""
-"An error occurred trying to mount some or all of your system. Some of it may "
-"be mounted under %s.\n"
-"\n"
-"Press <return> to get a shell. The system will reboot automatically when you "
-"exit from the shell."
-msgstr ""
-
-#: ../rescue.py:402
-msgid "Rescue Mode"
-msgstr ""
-
-#: ../rescue.py:403
-msgid ""
-"You don't have any Linux partitions. Press return to get a shell. The system "
-"will reboot automatically when you exit from the shell."
-msgstr ""
-
-#: ../rescue.py:416
-#, python-format
-msgid "Your system is mounted under the %s directory."
-msgstr ""
-
-#: ../text.py:196 ../text.py:280 ../text.py:293 tmp/exnSave.glade.h:7
-msgid "Save"
-msgstr ""
-
-#: ../text.py:199
-msgid "Save to local disk"
-msgstr ""
-
-#: ../text.py:200
-#, python-format
-msgid "Send to bugzilla (%s)"
-msgstr ""
-
-#: ../text.py:201
-msgid "Send to remote server (scp)"
-msgstr ""
-
-#: ../text.py:215 ../text.py:228
-msgid "User name"
-msgstr ""
-
-#: ../text.py:217 ../text.py:230
-msgid "Password"
-msgstr ""
-
-#: ../text.py:219
-msgid "Bug Description"
-msgstr ""
-
-#: ../text.py:232
-msgid "Host (host:port)"
-msgstr ""
-
-#: ../text.py:234
-msgid "Destination file"
-msgstr ""
-
-#: ../text.py:313
-msgid "Passphrase for encrypted device"
-msgstr ""
-
-#: ../text.py:326
-msgid "Also add this passphrase to all existing encrypted devices"
-msgstr ""
-
-#: ../text.py:357
-#, python-format
-msgid "The passphrase must be at least %d characters long."
-msgstr ""
-
-#: ../text.py:387 tmp/lukspassphrase.glade.h:6
-msgid "Passphrase"
-msgstr ""
-
-#: ../text.py:395 tmp/lukspassphrase.glade.h:7
-msgid "This is a global passphrase"
-msgstr ""
-
-#: ../text.py:461 ../text.py:465
-msgid "Repository editing is not available in text mode."
-msgstr ""
-
-#: ../text.py:505
-#, python-format
-msgid "Please enter your %(instkey)s"
-msgstr ""
-
-#: ../text.py:522 tmp/instkey.glade.h:6
-#, no-c-format, python-format
-msgid "Skip entering %(instkey)s"
-msgstr ""
-
-#: ../text.py:570 ../loader/lang.c:63 ../loader/loader.c:215
-#, c-format, python-format
-msgid "Welcome to %s for %s"
-msgstr ""
-
-#: ../text.py:572
-#, python-format
-msgid "Welcome to %s"
-msgstr ""
-
-#: ../text.py:574
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-
-#: ../text.py:664 ../loader/net.c:111 ../loader/net.c:454 ../loader/net.c:510
-#: ../loader/net.c:655 ../loader/net.c:663 ../loader/net.c:1086
-#: ../loader/net.c:1093
-msgid "Retry"
-msgstr ""
-
-#: ../text.py:690
-msgid "Cancelled"
-msgstr ""
-
-#: ../text.py:691
-msgid "I can't go to the previous step from here. You will have to try again."
-msgstr ""
-
-#: ../upgrade.py:92 ../upgrade.py:113
-msgid "Proceed with upgrade?"
-msgstr ""
-
-#: ../upgrade.py:93
-#, python-format
-msgid ""
-"You have choosen the upgrade for %s architecture, but the installed system "
-"is for %s architecture. \n"
-"\n"
-msgstr ""
-
-#: ../upgrade.py:97
-#, python-format
-msgid "Would you like to upgrade the installed system to the %s architecture?"
-msgstr ""
-
-#: ../upgrade.py:114
-msgid ""
-"The file systems of the Linux installation you have chosen to upgrade have "
-"already been mounted. You cannot go back past this point. \n"
-"\n"
-msgstr ""
-
-#: ../upgrade.py:118
-msgid "Would you like to continue with the upgrade?"
-msgstr ""
-
-#: ../upgrade.py:239
-msgid "Mount failed"
-msgstr ""
-
-#: ../upgrade.py:240
-#, python-format
-msgid ""
-"The following error occurred when mounting the file systems listed in /etc/"
-"fstab. Please fix this problem and try to upgrade again.\n"
-"%s"
-msgstr ""
-
-#: ../upgrade.py:247
-msgid "Upgrade root not found"
-msgstr ""
-
-#: ../upgrade.py:248
-msgid ""
-"The root for the previously installed system was not found. You can exit "
-"installer or backtrack to choose installation instead of upgrade."
-msgstr ""
-
-#: ../upgrade.py:271
-msgid ""
-"The following files are absolute symbolic links, which we do not support "
-"during an upgrade. Please change them to relative symbolic links and restart "
-"the upgrade.\n"
-"\n"
-msgstr ""
-
-#: ../upgrade.py:277
-msgid "Absolute Symlinks"
-msgstr ""
-
-#: ../upgrade.py:288
-msgid ""
-"The following are directories which should instead be symbolic links, which "
-"will cause problems with the upgrade. Please return them to their original "
-"state as symbolic links and restart the upgrade.\n"
-"\n"
-msgstr ""
-
-#: ../upgrade.py:294
-msgid "Invalid Directories"
-msgstr ""
-
-#: ../upgrade.py:299
-#, python-format
-msgid "%s not found"
-msgstr ""
-
-#: ../vnc.py:136
-#, python-format
-msgid "%s %s installation on host %s"
-msgstr ""
-
-#: ../vnc.py:138
-#, python-format
-msgid "%s %s installation"
-msgstr ""
-
-#: ../vnc.py:165
-#, python-format
-msgid "Attempting to connect to vnc client on host %s..."
-msgstr ""
-
-#: ../vnc.py:179
-msgid "Connected!"
-msgstr ""
-
-#: ../vnc.py:182
-msgid "Will try to connect again in 15 seconds..."
-msgstr ""
-
-#: ../vnc.py:188
-#, python-format
-msgid "Giving up attempting to connect after %d tries!\n"
-msgstr ""
-
-#: ../vnc.py:197
-#, python-format
-msgid "Please manually connect your vnc client to %s to begin the install."
-msgstr ""
-
-#: ../vnc.py:199
-msgid "Please manually connect your vnc client to begin the install."
-msgstr ""
-
-#: ../vnc.py:202
-msgid "Starting VNC..."
-msgstr ""
-
-#: ../vnc.py:227
-msgid "The VNC server is now running."
-msgstr ""
-
-#: ../vnc.py:240
-msgid ""
-"\n"
-"\n"
-"You chose to connect to a listening vncviewer. \n"
-"This does not require a password to be set. If you \n"
-"set a password, it will be used in case the connection \n"
-"to the vncviewer is unsuccessful\n"
-"\n"
-msgstr ""
-
-#: ../vnc.py:245
-msgid ""
-"\n"
-"\n"
-"WARNING!!! VNC server running with NO PASSWORD!\n"
-"You can use the vncpassword=<password> boot option\n"
-"if you would like to secure the server.\n"
-"\n"
-msgstr ""
-
-#: ../vnc.py:249
-msgid ""
-"\n"
-"\n"
-"You chose to execute vnc with a password. \n"
-"\n"
-msgstr ""
-
-#: ../vnc.py:251
-msgid ""
-"\n"
-"\n"
-"Unknown Error. Aborting. \n"
-"\n"
-msgstr ""
-
-#: ../vnc.py:273 ../vnc.py:366
-msgid "VNC Configuration"
-msgstr ""
-
-#: ../vnc.py:276 ../vnc.py:370
-msgid "No password"
-msgstr ""
-
-#: ../vnc.py:278 ../vnc.py:373
-msgid ""
-"A password will prevent unauthorized listeners connecting and monitoring "
-"your installation progress. Please enter a password to be used for the "
-"installation"
-msgstr ""
-
-#: ../vnc.py:286 ../vnc.py:381 ../textw/userauth_text.py:47
-msgid "Password:"
-msgstr ""
-
-#: ../vnc.py:287 ../vnc.py:382 ../textw/userauth_text.py:49
-msgid "Password (confirm):"
-msgstr ""
-
-#: ../vnc.py:305 ../vnc.py:404 ../textw/userauth_text.py:70
-msgid "Password Mismatch"
-msgstr ""
-
-#: ../vnc.py:306 ../vnc.py:405 ../textw/userauth_text.py:71
-msgid "The passwords you entered were different. Please try again."
-msgstr ""
-
-#: ../vnc.py:311 ../vnc.py:410 ../textw/userauth_text.py:66
-msgid "Password Length"
-msgstr ""
-
-#: ../vnc.py:312 ../vnc.py:411
-msgid "The password must be at least six characters long."
-msgstr ""
-
-#: ../vnc.py:334
-msgid "Unable to Start X"
-msgstr ""
-
-#: ../vnc.py:336
-msgid ""
-"X was unable to start on your machine. Would you like to start VNC to "
-"connect to this computer from another computer and perform a graphical "
-"install or continue with a text mode install?"
-msgstr ""
-
-#: ../vnc.py:355
-msgid "Start VNC"
-msgstr ""
-
-#: ../vnc.py:356 ../vnc.py:358
-msgid "Use text mode"
-msgstr ""
-
-#: ../yuminstall.py:79
-#, python-format
-msgid "%s MB"
-msgstr ""
-
-#: ../yuminstall.py:82
-#, python-format
-msgid "%s KB"
-msgstr ""
-
-#: ../yuminstall.py:85
-#, python-format
-msgid "%s Byte"
-msgstr ""
-
-#: ../yuminstall.py:87
-#, python-format
-msgid "%s Bytes"
-msgstr ""
-
-#: ../yuminstall.py:131
-msgid "Processing"
-msgstr ""
-
-#: ../yuminstall.py:132
-msgid "Preparing transaction from installation source..."
-msgstr ""
-
-#: ../yuminstall.py:163
-#, python-format
-msgid "<b>Installing %s</b> (%s)\n"
-msgstr ""
-
-#: ../yuminstall.py:212
-#, python-format
-msgid "%s of %s packages completed"
-msgstr ""
-
-#: ../yuminstall.py:222
-msgid "Finishing upgrade"
-msgstr ""
-
-#: ../yuminstall.py:223
-msgid "Finishing upgrade process. This may take a little while..."
-msgstr ""
-
-#: ../yuminstall.py:293 ../iw/task_gui.py:301
-msgid "Error Setting Up Repository"
-msgstr ""
-
-#: ../yuminstall.py:294 ../iw/task_gui.py:302
-#, python-format
-msgid ""
-"The following error occurred while setting up the installation repository:\n"
-"\n"
-"%s\n"
-"\n"
-"Please provide the correct information for installing %s."
-msgstr ""
-
-#: ../yuminstall.py:353
-msgid "Change Disc"
-msgstr ""
-
-#: ../yuminstall.py:354
-#, python-format
-msgid "Please insert %s disc %d to continue."
-msgstr ""
-
-#: ../yuminstall.py:364
-msgid "Wrong Disc"
-msgstr ""
-
-#: ../yuminstall.py:365
-#, python-format
-msgid "That's not the correct %s disc."
-msgstr ""
-
-#: ../yuminstall.py:372
-msgid "Unable to access the disc."
-msgstr ""
-
-#: ../yuminstall.py:530
-#, python-format
-msgid "Repository %r is missing name in configuration, using id"
-msgstr ""
-
-#: ../yuminstall.py:654 ../yuminstall.py:656
-msgid "Re_boot"
-msgstr ""
-
-#: ../yuminstall.py:654
-msgid "_Eject"
-msgstr ""
-
-#: ../yuminstall.py:665
-#, python-format
-msgid ""
-"The file %s cannot be opened. This is due to a missing file, a corrupt "
-"package or corrupt media. Please verify your installation source.\n"
-"\n"
-"If you exit, your system will be left in an inconsistent state that will "
-"likely require reinstallation.\n"
-"\n"
-msgstr ""
-
-#: ../yuminstall.py:708
-msgid "Retrying"
-msgstr ""
-
-#: ../yuminstall.py:708
-msgid "Retrying download..."
-msgstr ""
-
-#: ../yuminstall.py:780
-#, python-format
-msgid ""
-"There was an error running your transaction for the following reason: %s\n"
-msgstr ""
-
-#: ../yuminstall.py:815 ../yuminstall.py:816
-msgid "file conflicts"
-msgstr ""
-
-#: ../yuminstall.py:817
-msgid "older package(s)"
-msgstr ""
-
-#: ../yuminstall.py:818
-msgid "insufficient disk space"
-msgstr ""
-
-#: ../yuminstall.py:819
-msgid "insufficient disk inodes"
-msgstr ""
-
-#: ../yuminstall.py:820
-msgid "package conflicts"
-msgstr ""
-
-#: ../yuminstall.py:821
-msgid "package already installed"
-msgstr ""
-
-#: ../yuminstall.py:822
-msgid "required package"
-msgstr ""
-
-#: ../yuminstall.py:823
-msgid "package for incorrect arch"
-msgstr ""
-
-#: ../yuminstall.py:824
-msgid "package for incorrect os"
-msgstr ""
-
-#: ../yuminstall.py:838
-msgid "You need more space on the following file systems:\n"
-msgstr ""
-
-#: ../yuminstall.py:851
-#, python-format
-msgid ""
-"There were file conflicts when checking the packages to be installed:\n"
-"%s\n"
-msgstr ""
-
-#: ../yuminstall.py:854
-#, python-format
-msgid ""
-"There was an error running your transaction for the following reason(s): %"
-"s.\n"
-msgstr ""
-
-#: ../yuminstall.py:861 ../yuminstall.py:866
-msgid "Error Running Transaction"
-msgstr ""
-
-#: ../yuminstall.py:1023
-msgid ""
-"Some of your software repositories require networking, but there was an "
-"error enabling the network on your system."
-msgstr ""
-
-#: ../yuminstall.py:1057
-msgid ""
-"Unable to read group information from repositories. This is a problem with "
-"the generation of your install tree."
-msgstr ""
-
-#: ../yuminstall.py:1095
-msgid "Retrieving installation information..."
-msgstr ""
-
-#: ../yuminstall.py:1097
-#, python-format
-msgid "Retrieving installation information for %s..."
-msgstr ""
-
-#: ../yuminstall.py:1099
-msgid "Installation Progress"
-msgstr ""
-
-#: ../yuminstall.py:1112 ../textw/constants_text.py:64
-msgid "Edit"
-msgstr ""
-
-#: ../yuminstall.py:1125 ../yuminstall.py:1313
-#, python-format
-msgid ""
-"Unable to read package metadata. This may be due to a missing repodata "
-"directory. Please ensure that your install tree has been correctly "
-"generated.\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../yuminstall.py:1176 ../iw/GroupSelector.py:485
-msgid "Uncategorized"
-msgstr ""
-
-#: ../yuminstall.py:1338
-#, python-format
-msgid ""
-"Your selected packages require %d MB of free space for installation, but you "
-"do not have enough available. You can change your selections or exit the "
-"installer."
-msgstr ""
-
-#: ../yuminstall.py:1357
-msgid "Reboot?"
-msgstr ""
-
-#: ../yuminstall.py:1358
-msgid "The system will be rebooted now."
-msgstr ""
-
-#: ../yuminstall.py:1511
-#, python-format
-msgid ""
-"You appear to be upgrading from a system which is too old to upgrade to this "
-"version of %s. Are you sure you wish to continue the upgrade process?"
-msgstr ""
-
-#: ../yuminstall.py:1540
-#, python-format
-msgid ""
-"The arch of the release of %s you are upgrading to appears to be %s which "
-"does not match your previously installed arch of %s. This is likely to not "
-"succeed. Are you sure you wish to continue the upgrade process?"
-msgstr ""
-
-#: ../yuminstall.py:1591
-msgid "Post Upgrade"
-msgstr ""
-
-#: ../yuminstall.py:1592
-msgid "Performing post upgrade configuration..."
-msgstr ""
-
-#: ../yuminstall.py:1594
-msgid "Post Install"
-msgstr ""
-
-#: ../yuminstall.py:1595
-msgid "Performing post install configuration..."
-msgstr ""
-
-#: ../yuminstall.py:1820
-msgid "Install Starting"
-msgstr ""
-
-#: ../yuminstall.py:1821
-msgid "Starting install process. This may take several minutes..."
-msgstr ""
-
-#: ../yuminstall.py:1859
-msgid "Dependency Check"
-msgstr ""
-
-#: ../yuminstall.py:1860
-msgid "Checking dependencies in packages selected for installation..."
-msgstr ""
-
-#: ../iw/GroupSelector.py:147
-#, python-format
-msgid "Packages in %s"
-msgstr ""
-
-#: ../iw/GroupSelector.py:424
-#, python-format
-msgid "Optional packages selected: %d of %d"
-msgstr ""
-
-#: ../iw/GroupSelector.py:425
-#, python-format
-msgid "<i>%s</i>"
-msgstr ""
-
-#: ../iw/account_gui.py:52
-msgid "Root _Password:"
-msgstr ""
-
-#: ../iw/account_gui.py:54
-msgid "_Confirm:"
-msgstr ""
-
-#: ../iw/account_gui.py:97
-msgid "Caps Lock is on."
-msgstr ""
-
-#: ../iw/account_gui.py:107 ../iw/account_gui.py:115 ../iw/account_gui.py:122
-#: ../iw/account_gui.py:144 ../textw/userauth_text.py:74
-msgid "Error with Password"
-msgstr ""
-
-#: ../iw/account_gui.py:108
-msgid ""
-"You must enter your root password and confirm it by typing it a second time "
-"to continue."
-msgstr ""
-
-#: ../iw/account_gui.py:116
-msgid "The passwords you entered were different. Please try again."
-msgstr ""
-
-#: ../iw/account_gui.py:123
-msgid "The root password must be at least six characters long."
-msgstr ""
-
-#: ../iw/account_gui.py:132 ../textw/userauth_text.py:83
-msgid "Weak Password"
-msgstr ""
-
-#: ../iw/account_gui.py:133 ../textw/userauth_text.py:84
-#, python-format
-msgid ""
-"Weak password provided: %s\n"
-"\n"
-"Would you like to continue with this password?"
-msgstr ""
-
-#: ../iw/account_gui.py:145 ../textw/userauth_text.py:75
-msgid ""
-"Requested password contains non-ASCII characters, which are not allowed."
-msgstr ""
-
-#: ../iw/autopart_type.py:101
-msgid ""
-"No partitions are available to resize. Only physical partitions with "
-"specific filesystems can be resized."
-msgstr ""
-
-#: ../iw/autopart_type.py:124
-msgid "Resize FileSystem Error"
-msgstr ""
-
-#: ../iw/autopart_type.py:125 ../iw/autopart_type.py:134
-#, python-format
-msgid "%s: %s"
-msgstr ""
-
-#: ../iw/autopart_type.py:133
-msgid "Resize Device Error"
-msgstr ""
-
-#: ../iw/autopart_type.py:208
-msgid ""
-"Do you really want to boot from a disk which is not used for installation?"
-msgstr ""
-
-#: ../iw/autopart_type.py:285
-msgid "Invalid Initiator Name"
-msgstr ""
-
-#: ../iw/autopart_type.py:286
-msgid "You must provide an initiator name."
-msgstr ""
-
-#: ../iw/autopart_type.py:321
-msgid "Error with Data"
-msgstr ""
-
-#: ../iw/autopart_type.py:398 ../iw/autopart_type.py:399
-msgid "Rescanning disks"
-msgstr ""
-
-#: ../iw/autopart_type.py:452 ../textw/partition_text.py:63
-msgid "Use entire drive"
-msgstr ""
-
-#: ../iw/autopart_type.py:453 ../textw/partition_text.py:64
-msgid "Replace existing Linux system"
-msgstr ""
-
-#: ../iw/autopart_type.py:454
-msgid "Shrink current system"
-msgstr ""
-
-#: ../iw/autopart_type.py:455 ../textw/partition_text.py:65
-msgid "Use free space"
-msgstr ""
-
-#: ../iw/autopart_type.py:456
-msgid "Create custom layout"
-msgstr ""
-
-#: ../iw/blpasswidget.py:47
-msgid "_Use a boot loader password"
-msgstr ""
-
-#: ../iw/blpasswidget.py:48
-msgid ""
-"A boot loader password prevents users from changing kernel options, "
-"increasing security."
-msgstr ""
-
-#: ../iw/blpasswidget.py:79
-msgid "Change _password"
-msgstr ""
-
-#: ../iw/blpasswidget.py:102
-msgid "Enter Boot Loader Password"
-msgstr ""
-
-#: ../iw/blpasswidget.py:108
-msgid ""
-"Enter a boot loader password and then confirm it. (Note that your BIOS "
-"keymap may be different than the actual keymap you are used to.)"
-msgstr ""
-
-#: ../iw/blpasswidget.py:115
-msgid "_Password:"
-msgstr ""
-
-#: ../iw/blpasswidget.py:121
-msgid "Con_firm:"
-msgstr ""
-
-#: ../iw/blpasswidget.py:142
-msgid "Passwords don't match"
-msgstr ""
-
-#: ../iw/blpasswidget.py:143
-msgid "Passwords do not match"
-msgstr ""
-
-#: ../iw/blpasswidget.py:152
-msgid ""
-"Your boot loader password is shorter than six characters. We recommend a "
-"longer boot loader password.\n"
-"\n"
-"Would you like to continue with this password?"
-msgstr ""
-
-#: ../iw/bootloader_main_gui.py:36
-msgid "Boot Loader Configuration"
-msgstr ""
-
-#: ../iw/bootloader_main_gui.py:179 ../iw/bootloader_main_gui.py:184
-#: ../iw/bootloader_main_gui.py:221
-#, python-format
-msgid "_Install boot loader on /dev/%s."
-msgstr ""
-
-#: ../iw/bootloader_main_gui.py:227
-msgid "_Change device"
-msgstr ""
-
-#: ../iw/congrats_gui.py:33
-msgid "Congratulations"
-msgstr ""
-
-#: ../iw/congrats_gui.py:74 ../textw/complete_text.py:39
-#, python-format
-msgid ""
-"Congratulations, your %s installation is complete.\n"
-"\n"
-msgstr ""
-
-#: ../iw/congrats_gui.py:77 ../textw/complete_text.py:42
-msgid "Shutdown"
-msgstr ""
-
-#: ../iw/congrats_gui.py:79 ../textw/complete_text.py:44
-msgid "Please shutdown to use the installed system.\n"
-msgstr ""
-
-#: ../iw/congrats_gui.py:81 ../textw/complete_text.py:46
-msgid "Please reboot to use the installed system.\n"
-msgstr ""
-
-#: ../iw/congrats_gui.py:86 ../textw/complete_text.py:51
-msgid ""
-"Note that updates may be available to ensure the proper functioning of your "
-"system and installation of these updates is recommended after the reboot."
-msgstr ""
-
-#: ../iw/congrats_gui.py:90 ../textw/complete_text.py:55
-#, python-format
-msgid ""
-"Congratulations, your %s installation is complete.\n"
-"\n"
-"Please reboot to use the installed system. Note that updates may be "
-"available to ensure the proper functioning of your system and installation "
-"of these updates is recommended after the reboot."
-msgstr ""
-
-#: ../iw/examine_gui.py:37
-msgid "Upgrade Examine"
-msgstr ""
-
-#: ../iw/examine_gui.py:59
-#, python-format
-msgid "_Install %s"
-msgstr ""
-
-#: ../iw/examine_gui.py:61
-msgid ""
-"Choose this option to freshly install your system. Existing software and "
-"data may be overwritten depending on your configuration choices."
-msgstr ""
-
-#: ../iw/examine_gui.py:65
-msgid "_Upgrade an existing installation"
-msgstr ""
-
-#: ../iw/examine_gui.py:67
-#, python-format
-msgid ""
-"Choose this option if you would like to upgrade your existing %s system. "
-"This option preserves the existing data on your drives."
-msgstr ""
-
-#: ../iw/examine_gui.py:116
-msgid "The following installed system will be upgraded:"
-msgstr ""
-
-#: ../iw/examine_gui.py:129
-msgid "Unknown Linux system"
-msgstr ""
-
-#: ../iw/language_gui.py:33 ../textw/language_text.py:46
-msgid "Language Selection"
-msgstr ""
-
-#: ../iw/language_gui.py:81 ../textw/language_text.py:47 ../loader/lang.c:376
-msgid "What language would you like to use during the installation process?"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:120 ../iw/lvm_dialog_gui.py:166
-#: ../iw/lvm_dialog_gui.py:178 ../iw/lvm_dialog_gui.py:217
-#: ../iw/lvm_dialog_gui.py:293 ../iw/lvm_dialog_gui.py:613
-msgid "Not enough space"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:121
-msgid ""
-"The physical extent size cannot be changed because otherwise the space "
-"required by the currently defined logical volumes will be increased to more "
-"than the available space."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:130
-msgid "Confirm Physical Extent Change"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:131
-msgid ""
-"This change in the value of the physical extent will require the sizes of "
-"the current logical volume requests to be rounded up in size to an integer "
-"multiple of the physical extent.\n"
-"\n"
-"This change will take effect immediately."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:140 ../iw/lvm_dialog_gui.py:200
-msgid "C_ontinue"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:167
-#, python-format
-msgid ""
-"The physical extent size cannot be changed because the value selected (%"
-"10.2f MB) is larger than the smallest physical volume (%10.2f MB) in the "
-"volume group."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:179
-#, python-format
-msgid ""
-"The physical extent size cannot be changed because the value selected (%"
-"10.2f MB) is too large compared to the size of the smallest physical volume "
-"(%10.2f MB) in the volume group."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:193
-msgid "Too small"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:194
-msgid ""
-"This change in the value of the physical extent will waste substantial space "
-"on one or more of the physical volumes in the volume group."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:218
-#, python-format
-msgid ""
-"The physical extent size cannot be changed because the resulting maximum "
-"logical volume size (%10.2f MB) is smaller than one or more of the currently "
-"defined logical volumes."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:294
-msgid ""
-"You cannot remove this physical volume because otherwise the volume group "
-"will be too small to hold the currently defined logical volumes."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:371
-msgid "Make Logical Volume"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:373
-#, python-format
-msgid "Edit Logical Volume: %s"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:407 ../iw/partition_dialog_gui.py:306
-#: ../iw/raid_dialog_gui.py:364
-msgid "_Mount Point:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:415 ../iw/raid_dialog_gui.py:373
-msgid "_File System Type:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:425 ../iw/raid_dialog_gui.py:383
-msgid "Original File System Type:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:430 ../iw/raid_dialog_gui.py:388
-msgid "Unknown"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:436 ../iw/partition_dialog_gui.py:351
-#: ../iw/raid_dialog_gui.py:394
-msgid "Original File System Label:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:444
-msgid "_Logical Volume Name:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:452
-msgid "Logical Volume Name:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:460 ../iw/partition_dialog_gui.py:361
-msgid "_Size (MB):"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:465
-msgid "Size (MB):"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:474
-#, python-format
-msgid "(Max size is %s MB)"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:495 ../iw/partition_dialog_gui.py:413
-#: ../iw/partition_ui_helpers_gui.py:322 ../iw/raid_dialog_gui.py:345
-msgid "_Encrypt"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:540
-msgid "Illegal Logical Volume Name"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:555
-msgid "Illegal logical volume name"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:556
-#, python-format
-msgid "The logical volume name \"%s\" is already in use. Please pick another."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:584
-msgid "Mount point in use"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:585
-#, python-format
-msgid "The mount point \"%s\" is in use. Please pick another."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:600
-msgid "Illegal size"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:601
-msgid "The requested size as entered is not a valid number greater than 0."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:614
-#, python-format
-msgid ""
-"The current requested size (%10.2f MB) is larger than the maximum logical "
-"volume size (%10.2f MB). To increase this limit you can create more Physical "
-"Volumes from unpartitioned disk space and add them to this Volume Group."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:708
-msgid "No free slots"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:709
-#, python-format
-msgid "You cannot create more than %s logical volumes per volume group."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:715
-msgid "No free space"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:716
-msgid ""
-"There is no room left in the volume group to create new logical volumes. To "
-"add a logical volume you must reduce the size of one or more of the "
-"currently existing logical volumes"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:748
-#, python-format
-msgid "Are you sure you want to delete the logical volume \"%s\"?"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:861
-msgid "Invalid Volume Group Name"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:870
-msgid "Name in use"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:871
-#, python-format
-msgid "The volume group name \"%s\" is already in use. Please pick another."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1095
-msgid "Not enough physical volumes"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1096
-msgid ""
-"At least one unused physical volume partition is needed to create an LVM "
-"Volume Group.\n"
-"\n"
-"Create a partition or RAID array of type \"physical volume (LVM)\" and then "
-"select the \"LVM\" option again."
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1107
-msgid "Make LVM Volume Group"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1110
-#, python-format
-msgid "Edit LVM Volume Group: %s"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1112
-msgid "Edit LVM Volume Group"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1128
-msgid "_Volume Group Name:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1136
-msgid "Volume Group Name:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1144
-msgid "_Physical Extent:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1159
-msgid "Physical Volumes to _Use:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1165
-msgid "Used Space:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1182
-msgid "Free Space:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1200
-msgid "Total Space:"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1235
-msgid "Logical Volume Name"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1238 ../iw/partition_gui.py:366
-#: ../iw/upgrade_swap_gui.py:140 ../textw/upgrade_text.py:118
-msgid "Mount Point"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1241 ../iw/partition_gui.py:371
-msgid "Size (MB)"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1255 ../iw/osbootwidget.py:94
-msgid "_Add"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1258 ../iw/osbootwidget.py:98
-#: ../iw/partition_gui.py:1332
-msgid "_Edit"
-msgstr ""
-
-#: ../iw/lvm_dialog_gui.py:1273
-msgid "_Logical Volumes"
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:193 ../textw/netconfig_text.py:36
-#, python-format
-msgid ""
-"An error occurred converting the value entered for \"%s\":\n"
-"%s"
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:195 ../iw/netconfig_dialog.py:204
-#: ../textw/netconfig_text.py:35 ../textw/netconfig_text.py:40
-msgid "Error With Data"
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:203
-#, python-format
-msgid "A value is required for the field %s."
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:213
-#, python-format
-msgid "An error occurred trying to bring up the %s network interface."
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:215
-msgid "Error Configuring Network"
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:237
-msgid "Dynamic IP"
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:238
-#, python-format
-msgid "Sending request for IP information for %s..."
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:253 ../iw/netconfig_dialog.py:256
-#: ../textw/netconfig_text.py:214 ../textw/netconfig_text.py:217
-msgid "IP Address"
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:263 ../textw/netconfig_text.py:224
-msgid "IPv4 CIDR prefix must be between 0 and 32."
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:264 ../iw/netconfig_dialog.py:270
-#: ../iw/netconfig_dialog.py:278 ../iw/netconfig_dialog.py:281
-#: ../textw/netconfig_text.py:225 ../textw/netconfig_text.py:231
-#: ../textw/netconfig_text.py:239
-msgid "IPv4 Network Mask"
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:291 ../textw/netconfig_text.py:252
-msgid "Gateway"
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:301 ../textw/netconfig_text.py:262
-msgid "Nameserver"
-msgstr ""
-
-#: ../iw/netconfig_dialog.py:310
-msgid "Error configuring network device:"
-msgstr ""
-
-#: ../iw/network_gui.py:60 ../iw/network_gui.py:66
-msgid "Error with Hostname"
-msgstr ""
-
-#: ../iw/network_gui.py:61
-msgid "You must enter a valid hostname for this computer."
-msgstr ""
-
-#: ../iw/network_gui.py:67
-#, python-format
-msgid ""
-"The hostname \"%s\" is not valid for the following reason:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../iw/osbootwidget.py:49
-msgid "Boot loader operating system list"
-msgstr ""
-
-#: ../iw/osbootwidget.py:65
-msgid "Default"
-msgstr ""
-
-#: ../iw/osbootwidget.py:65 ../iw/partition_gui.py:365
-msgid "Label"
-msgstr ""
-
-#: ../iw/osbootwidget.py:65 ../iw/partition_gui.py:364
-msgid "Device"
-msgstr ""
-
-#: ../iw/osbootwidget.py:128
-msgid "Image"
-msgstr ""
-
-#: ../iw/osbootwidget.py:135
-msgid ""
-"Enter a label for the boot loader menu to display. The device (or hard drive "
-"and partition number) is the device from which it boots."
-msgstr ""
-
-#: ../iw/osbootwidget.py:143
-msgid "_Label"
-msgstr ""
-
-#: ../iw/osbootwidget.py:151
-msgid "_Device"
-msgstr ""
-
-#: ../iw/osbootwidget.py:181
-msgid "Default Boot _Target"
-msgstr ""
-
-#: ../iw/osbootwidget.py:210
-msgid "You must specify a label for the entry"
-msgstr ""
-
-#: ../iw/osbootwidget.py:219
-msgid "Boot label contains illegal characters"
-msgstr ""
-
-#: ../iw/osbootwidget.py:243
-msgid "Duplicate Label"
-msgstr ""
-
-#: ../iw/osbootwidget.py:244
-msgid "This label is already in use for another boot entry."
-msgstr ""
-
-#: ../iw/osbootwidget.py:257
-msgid "Duplicate Device"
-msgstr ""
-
-#: ../iw/osbootwidget.py:258
-msgid "This device is already being used for another boot entry."
-msgstr ""
-
-#: ../iw/osbootwidget.py:322
-msgid "Cannot Delete"
-msgstr ""
-
-#: ../iw/osbootwidget.py:323
-#, python-format
-msgid ""
-"This boot target cannot be deleted because it is for the %s system you are "
-"about to install."
-msgstr ""
-
-#: ../iw/partition_dialog_gui.py:57
-msgid "Additional Size Options"
-msgstr ""
-
-#: ../iw/partition_dialog_gui.py:62
-msgid "_Fixed size"
-msgstr ""
-
-#: ../iw/partition_dialog_gui.py:64
-msgid "Fill all space _up to (MB):"
-msgstr ""
-
-#: ../iw/partition_dialog_gui.py:74
-msgid "Fill to maximum _allowable size"
-msgstr ""
-
-#: ../iw/partition_dialog_gui.py:276
-msgid "Add Partition"
-msgstr ""
-
-#: ../iw/partition_dialog_gui.py:278
-#, python-format
-msgid "Edit Partition: %s"
-msgstr ""
-
-#: ../iw/partition_dialog_gui.py:315
-msgid "File System _Type:"
-msgstr ""
-
-#: ../iw/partition_dialog_gui.py:331
-msgid "Allowable _Drives:"
-msgstr ""
-
-#: ../iw/partition_dialog_gui.py:400
-msgid "Force to be a _primary partition"
-msgstr ""
-
-#: ../iw/partition_gui.py:317
-#, python-format
-msgid "Drive %s (Geom: %s/%s/%s) (Model: %s)"
-msgstr ""
-
-#: ../iw/partition_gui.py:322
-#, python-format
-msgid "Drive %s (%-0.f MB) (Model: %s)"
-msgstr ""
-
-#: ../iw/partition_gui.py:367
-msgid "Type"
-msgstr ""
-
-#: ../iw/partition_gui.py:370
-msgid "Format"
-msgstr ""
-
-#: ../iw/partition_gui.py:408
-msgid ""
-"Mount Point/\n"
-"RAID/Volume"
-msgstr ""
-
-#: ../iw/partition_gui.py:410
-msgid ""
-"Size\n"
-"(MB)"
-msgstr ""
-
-#: ../iw/partition_gui.py:522
-msgid "Partitioning"
-msgstr ""
-
-#: ../iw/partition_gui.py:612
-msgid ""
-"The partitioning scheme you requested caused the following critical errors."
-msgstr ""
-
-#: ../iw/partition_gui.py:614
-#, python-format
-msgid ""
-"You must correct these errors before you continue your installation of %s."
-msgstr ""
-
-#: ../iw/partition_gui.py:620
-msgid "Partitioning Errors"
-msgstr ""
-
-#: ../iw/partition_gui.py:627
-msgid "The partitioning scheme you requested generated the following warnings."
-msgstr ""
-
-#: ../iw/partition_gui.py:629
-msgid "Would you like to continue with your requested partitioning scheme?"
-msgstr ""
-
-#: ../iw/partition_gui.py:634
-msgid "Partitioning Warnings"
-msgstr ""
-
-#: ../iw/partition_gui.py:655
-msgid "Format Warnings"
-msgstr ""
-
-#: ../iw/partition_gui.py:660
-msgid "_Format"
-msgstr ""
-
-#: ../iw/partition_gui.py:686
-msgid "LVM Volume Groups"
-msgstr ""
-
-#: ../iw/partition_gui.py:733
-msgid "RAID Devices"
-msgstr ""
-
-#: ../iw/partition_gui.py:800 ../loader/hdinstall.c:231
-msgid "Hard Drives"
-msgstr ""
-
-#: ../iw/partition_gui.py:895
-msgid "Extended"
-msgstr ""
-
-#: ../iw/partition_gui.py:897
-msgid "software RAID"
-msgstr ""
-
-#: ../iw/partition_gui.py:929
-msgid "Free"
-msgstr ""
-
-#: ../iw/partition_gui.py:1022 ../storage/partitioning.py:174
-#: ../storage/partitioning.py:207
-msgid "Error Partitioning"
-msgstr ""
-
-#: ../iw/partition_gui.py:1023
-#, python-format
-msgid "Could not allocate requested partitions: %s."
-msgstr ""
-
-#: ../iw/partition_gui.py:1032
-#, python-format
-msgid "Warning: %s."
-msgstr ""
-
-#: ../iw/partition_gui.py:1062 ../iw/partition_gui.py:1069
-msgid "Unable To Edit"
-msgstr ""
-
-#: ../iw/partition_gui.py:1063
-msgid "You must select a device to edit"
-msgstr ""
-
-#: ../iw/partition_gui.py:1070
-#, python-format
-msgid ""
-"You cannot edit this device:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../iw/partition_gui.py:1177 ../iw/partition_gui.py:1189
-msgid "Not supported"
-msgstr ""
-
-#: ../iw/partition_gui.py:1178
-msgid "LVM is NOT supported on this platform."
-msgstr ""
-
-#: ../iw/partition_gui.py:1190
-msgid "Software RAID is NOT supported on this platform."
-msgstr ""
-
-#: ../iw/partition_gui.py:1197
-msgid "No RAID minor device numbers available"
-msgstr ""
-
-#: ../iw/partition_gui.py:1198
-msgid ""
-"A software RAID device cannot be created because all of the available RAID "
-"minor device numbers have been used."
-msgstr ""
-
-#: ../iw/partition_gui.py:1210
-msgid "RAID Options"
-msgstr ""
-
-#: ../iw/partition_gui.py:1221
-#, python-format
-msgid ""
-"Software RAID allows you to combine several disks into a larger RAID "
-"device. A RAID device can be configured to provide additional speed and "
-"reliability compared to using an individual drive. For more information on "
-"using RAID devices please consult the %s documentation.\n"
-"\n"
-"You currently have %s software RAID partition(s) free to use.\n"
-"\n"
-msgstr ""
-
-#: ../iw/partition_gui.py:1232
-msgid ""
-"To use RAID you must first create at least two partitions of type 'software "
-"RAID'. Then you can create a RAID device that can be formatted and "
-"mounted.\n"
-"\n"
-msgstr ""
-
-#: ../iw/partition_gui.py:1238
-msgid "What do you want to do now?"
-msgstr ""
-
-#: ../iw/partition_gui.py:1247
-msgid "Create a software RAID _partition."
-msgstr ""
-
-#: ../iw/partition_gui.py:1250
-#, python-format
-msgid "Create a RAID _device [default=/dev/md%s]."
-msgstr ""
-
-#: ../iw/partition_gui.py:1254
-#, python-format
-msgid "Clone a _drive to create a RAID device [default=/dev/md%s]."
-msgstr ""
-
-#: ../iw/partition_gui.py:1296
-msgid "Couldn't Create Drive Clone Editor"
-msgstr ""
-
-#: ../iw/partition_gui.py:1297
-msgid "The drive clone editor could not be created for some reason."
-msgstr ""
-
-#: ../iw/partition_gui.py:1331
-msgid "Ne_w"
-msgstr ""
-
-#: ../iw/partition_gui.py:1334
-msgid "Re_set"
-msgstr ""
-
-#: ../iw/partition_gui.py:1335
-msgid "R_AID"
-msgstr ""
-
-#: ../iw/partition_gui.py:1336
-msgid "_LVM"
-msgstr ""
-
-#: ../iw/partition_gui.py:1377
-msgid "Hide RAID device/LVM Volume _Group members"
-msgstr ""
-
-#: ../iw/partition_ui_helpers_gui.py:106 ../iw/partition_ui_helpers_gui.py:128
-#: ../iw/partition_ui_helpers_gui.py:130
-msgid "<Not Applicable>"
-msgstr ""
-
-#: ../iw/partition_ui_helpers_gui.py:306
-msgid "_Format as:"
-msgstr ""
-
-#: ../iw/partition_ui_helpers_gui.py:325
-msgid "Mi_grate filesystem to:"
-msgstr ""
-
-#: ../iw/partition_ui_helpers_gui.py:351 tmp/autopart.glade.h:9
-msgid "_Resize"
-msgstr ""
-
-#: ../iw/partition_ui_helpers_gui.py:409
-#, python-format
-msgid ""
-"Partitions of type '%s' must be constrained to a single drive. To do this, "
-"select the drive in the 'Allowable Drives' checklist."
-msgstr ""
-
-#: ../iw/progress_gui.py:37
-msgid "Installing Packages"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:312
-msgid ""
-"At least two unused software RAID partitions are needed to create a RAID "
-"device.\n"
-"\n"
-"First create at least two partitions of type \"software RAID\", and then "
-"select the \"RAID\" option again."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:326 ../iw/raid_dialog_gui.py:763
-msgid "Make RAID Device"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:329
-#, python-format
-msgid "Edit RAID Device: %s"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:331
-msgid "Edit RAID Device"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:402
-msgid "RAID _Device:"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:420
-msgid "RAID _Level:"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:462
-msgid "_RAID Members:"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:479
-msgid "Number of _spares:"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:489
-msgid "_Format partition?"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:563
-msgid ""
-"The source drive has no partitions to be cloned. You must first define "
-"partitions of type 'software RAID' on this drive before it can be cloned."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:567 ../iw/raid_dialog_gui.py:573
-#: ../iw/raid_dialog_gui.py:587 ../iw/raid_dialog_gui.py:600
-msgid "Source Drive Error"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:574
-msgid ""
-"The source drive you selected has partitions which are not of type 'software "
-"RAID'.\n"
-"\n"
-"You must remove these partitions before this drive can be cloned. "
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:588
-#, python-format
-msgid ""
-"The source drive you selected has partitions which are not constrained to "
-"the drive %s.\n"
-"\n"
-"You must remove these partitions or restrict them to this drive before this "
-"drive can be cloned. "
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:601
-msgid ""
-"The source drive you selected has software RAID partition(s) which are "
-"members of an active software RAID device.\n"
-"\n"
-"You must remove these partitions before this drive can be cloned."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:615 ../iw/raid_dialog_gui.py:621
-#: ../iw/raid_dialog_gui.py:637
-msgid "Target Drive Error"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:616
-msgid "Please select the target drives for the clone operation."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:622
-#, python-format
-msgid "The source drive %s cannot be selected as a target drive as well."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:638
-#, python-format
-msgid ""
-"The target drive %s has a partition which cannot be removed for the "
-"following reason:\n"
-"\n"
-"\"%s\"\n"
-"\n"
-"You must remove this partition before this drive can be a target."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:701
-msgid "Please select a source drive."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:721
-#, python-format
-msgid ""
-"The drive %s will now be cloned to the following drives:\n"
-"\n"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:726
-msgid ""
-"\n"
-"\n"
-"WARNING! ALL DATA ON THE TARGET DRIVES WILL BE DESTROYED."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:729
-msgid "Final Warning"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:731
-msgid "Clone Drives"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:740
-msgid "There was an error clearing the target drives. Cloning failed."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:773
-msgid ""
-"Clone Drive Tool\n"
-"\n"
-"This tool allows you to significantly reduce the amount of effort required "
-"to setup RAID arrays. This tool uses a source drive which has been prepared "
-"with the desired partitioning layout, and clones this layout onto other "
-"similar sized drives. Then a RAID device can be created.\n"
-"\n"
-"NOTE: The source drive must have partitions which are restricted to be on "
-"that drive only, and can only contain unused software RAID partitions. "
-"Other partition types are not allowed.\n"
-"\n"
-"EVERYTHING on the target drive(s) will be destroyed by this process."
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:793
-msgid "Source Drive:"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:801
-msgid "Target Drive(s):"
-msgstr ""
-
-#: ../iw/raid_dialog_gui.py:809
-msgid "Drives"
-msgstr ""
-
-#: ../iw/task_gui.py:64
-#, python-format
-msgid ""
-"Unable to read package metadata from repository. This may be due to a "
-"missing repodata directory. Please ensure that your repository has been "
-"correctly generated.\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../iw/task_gui.py:162
-#, python-format
-msgid ""
-"The repository %s has already been added. Please choose a different "
-"repository name and URL."
-msgstr ""
-
-#: ../iw/task_gui.py:175
-msgid "Edit Repository"
-msgstr ""
-
-#: ../iw/task_gui.py:238
-msgid "Invalid Proxy URL"
-msgstr ""
-
-#: ../iw/task_gui.py:239
-msgid "You must provide an HTTP, HTTPS, or FTP URL to a proxy."
-msgstr ""
-
-#: ../iw/task_gui.py:250 ../iw/task_gui.py:388
-msgid "Invalid Repository URL"
-msgstr ""
-
-#: ../iw/task_gui.py:251 ../iw/task_gui.py:389
-msgid "You must provide an HTTP, HTTPS, or FTP URL to a repository."
-msgstr ""
-
-#: ../iw/task_gui.py:273 ../iw/task_gui.py:398
-msgid "No Media Found"
-msgstr ""
-
-#: ../iw/task_gui.py:274 ../iw/task_gui.py:399
-msgid ""
-"No installation media was found. Please insert a disc into your drive and "
-"try again."
-msgstr ""
-
-#: ../iw/task_gui.py:293 ../iw/task_gui.py:415
-msgid "Please enter an NFS server and path."
-msgstr ""
-
-#: ../iw/task_gui.py:325
-msgid "Invalid Repository Name"
-msgstr ""
-
-#: ../iw/task_gui.py:326
-msgid "You must provide a repository name."
-msgstr ""
-
-#: ../iw/task_gui.py:450 tmp/addrepo.glade.h:3
-msgid "Add Repository"
-msgstr ""
-
-#: ../iw/task_gui.py:455
-msgid "No Software Repos Enabled"
-msgstr ""
-
-#: ../iw/task_gui.py:456
-msgid ""
-"You must have at least one software repository enabled to continue "
-"installation."
-msgstr ""
-
-#: ../iw/timezone_gui.py:63 ../textw/timezone_text.py:96
-msgid "Time Zone Selection"
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:36 ../textw/upgrade_bootloader_text.py:135
-msgid "Upgrade Boot Loader Configuration"
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:122
-msgid "_Update boot loader configuration"
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:123
-msgid "This will update your current boot loader."
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:127 ../textw/upgrade_bootloader_text.py:107
-msgid ""
-"Due to system changes, your boot loader configuration can not be "
-"automatically updated."
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:130 ../textw/upgrade_bootloader_text.py:111
-msgid ""
-"The installer is unable to detect the boot loader currently in use on your "
-"system."
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:137 ../textw/upgrade_bootloader_text.py:120
-#, python-format
-msgid ""
-"The installer has detected the %s boot loader currently installed on %s."
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:141
-msgid "This is the recommended option."
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:146
-msgid "_Create new boot loader configuration"
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:148
-msgid ""
-"This option creates a new boot loader configuration. If you wish to switch "
-"boot loaders, you should choose this."
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:155
-msgid "_Skip boot loader updating"
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:156
-msgid ""
-"This option makes no changes to boot loader configuration. If you are using "
-"a third party boot loader, you should choose this."
-msgstr ""
-
-#: ../iw/upgrade_bootloader_gui.py:167
-msgid "What would you like to do?"
-msgstr ""
-
-#: ../iw/upgrade_migratefs_gui.py:38 ../textw/upgrade_text.py:36
-msgid "Migrate File Systems"
-msgstr ""
-
-#: ../iw/upgrade_migratefs_gui.py:70
-#, python-format
-msgid ""
-"This release of %s supports an updated file system, which has several "
-"benefits over the file system traditionally shipped in %s. This "
-"installation program can migrate formatted partitions without data loss.\n"
-"\n"
-"Which of these partitions would you like to migrate?"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:35
-msgid "Upgrade Swap Partition"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:94 ../textw/upgrade_text.py:101
-#, python-format
-msgid ""
-"Recent kernels (2.4 or newer) need significantly more swap than older "
-"kernels, up to twice the amount of RAM on the system. You currently have %"
-"dMB of swap configured, but you may create additional swap space on one of "
-"your file systems now."
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:101
-#, python-format
-msgid ""
-"\n"
-"\n"
-"The installer has detected %s MB of RAM.\n"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:113
-msgid "I _want to create a swap file"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:122
-msgid "Select the _partition to put the swap file on:"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:140 ../textw/upgrade_text.py:119
-msgid "Partition"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:140
-msgid "Free Space (MB)"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:158
-#, python-format
-msgid ""
-"A minimum swap file size of %d MB is recommended. Please enter a size for "
-"the swap file:"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:173
-msgid "Swap file _size (MB):"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:183
-msgid "I _don't want to create a swap file"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:193
-msgid ""
-"A swap file is strongly recommended. Failure to create one could cause the "
-"installer to abort abnormally. Are you sure you wish to continue?"
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:201 ../textw/upgrade_text.py:188
-msgid "The swap file must be between 1 and 2000 MB in size."
-msgstr ""
-
-#: ../iw/upgrade_swap_gui.py:208 ../textw/upgrade_text.py:183
-msgid ""
-"There is not enough space on the device you selected for the swap partition."
-msgstr ""
-
-#: ../iw/welcome_gui.py:56 ../textw/welcome_text.py:36
-msgid "Network Install Required"
-msgstr ""
-
-#: ../iw/welcome_gui.py:57 ../textw/welcome_text.py:37
-msgid ""
-"Your installation source is set to a network location, but no netork devices "
-"were found on your system. To avoid a network installation, boot with the "
-"full DVD, full CD set, or do not pass a repo= parameter that specifies a "
-"network source."
-msgstr ""
-
-#: ../iw/welcome_gui.py:67
-msgid "E_xit Installer"
-msgstr ""
-
-#: ../iw/zipl_gui.py:37
-msgid "z/IPL Boot Loader Configuration"
-msgstr ""
-
-#: ../iw/zipl_gui.py:61
-msgid "The z/IPL boot loader will be installed on your system."
-msgstr ""
-
-#: ../iw/zipl_gui.py:63
-msgid ""
-"The z/IPL Boot Loader will now be installed on your system.\n"
-"\n"
-"The root partition will be the one you selected previously in the partition "
-"setup.\n"
-"\n"
-"The kernel used to start the machine will be the one to be installed by "
-"default.\n"
-"\n"
-"If you wish to make changes later after the installation feel free to change "
-"the /etc/zipl.conf configuration file.\n"
-"\n"
-"You can now enter any additional kernel parameters which your machine or "
-"your setup may require."
-msgstr ""
-
-#: ../iw/zipl_gui.py:90 ../textw/zipl_text.py:71
-msgid "Kernel Parameters"
-msgstr ""
-
-#: ../iw/zipl_gui.py:93 ../iw/zipl_gui.py:96
-msgid "Chandev Parameters"
-msgstr ""
-
-#: ../textw/complete_text.py:32
-msgid "Reboot"
-msgstr ""
-
-#: ../textw/complete_text.py:34
-msgid "<Enter> to exit"
-msgstr ""
-
-#: ../textw/complete_text.py:62
-msgid "Complete"
-msgstr ""
-
-#: ../textw/constants_text.py:52 ../storage/__init__.py:135
-#: ../storage/devicetree.py:78 ../loader/cdinstall.c:452
-#: ../loader/driverdisk.c:244 ../loader/driverdisk.c:275
-#: ../loader/driverdisk.c:359 ../loader/driverselect.c:81
-#: ../loader/driverselect.c:179 ../loader/driverselect.c:205
-#: ../loader/hdinstall.c:231 ../loader/hdinstall.c:289 ../loader/kbd.c:138
-#: ../loader/loader.c:482 ../loader/loader.c:502 ../loader/loader.c:1378
-#: ../loader/loader.c:1409 ../loader/net.c:564 ../loader/net.c:937
-#: ../loader/net.c:1808 ../loader/net.c:1830 ../loader/nfsinstall.c:91
-#: ../loader/urls.c:292
-msgid "Back"
-msgstr ""
-
-#: ../textw/keyboard_text.py:48
-msgid "Keyboard Selection"
-msgstr ""
-
-#: ../textw/keyboard_text.py:49
-msgid "Which model keyboard is attached to this computer?"
-msgstr ""
-
-#: ../textw/netconfig_text.py:41
-#, python-format
-msgid "A value is required for the field %s"
-msgstr ""
-
-#: ../textw/netconfig_text.py:86 tmp/netconfig.glade.h:9
-msgid "Enable network interface"
-msgstr ""
-
-#: ../textw/netconfig_text.py:89 tmp/netconfig.glade.h:10
-msgid ""
-"This requires that you have an active network connection during the "
-"installation process. Please configure a network interface."
-msgstr ""
-
-#: ../textw/netconfig_text.py:127
-msgid "Use dynamic IP configuration (DHCP)"
-msgstr ""
-
-#: ../textw/netconfig_text.py:130 ../loader/net.c:542
-msgid "Enable IPv4 support"
-msgstr ""
-
-#: ../textw/netconfig_text.py:137
-msgid "IPv4 Address:"
-msgstr ""
-
-#: ../textw/netconfig_text.py:157 ../loader/net.c:896
-msgid "Gateway:"
-msgstr ""
-
-#: ../textw/netconfig_text.py:160
-msgid "Nameserver:"
-msgstr ""
-
-#: ../textw/netconfig_text.py:190
-msgid "Missing Device"
-msgstr ""
-
-#: ../textw/netconfig_text.py:191
-msgid "You must select a network device"
-msgstr ""
-
-#: ../textw/netconfig_text.py:242
-msgid "IPv4 Network Mask "
-msgstr ""
-
-#: ../textw/netconfig_text.py:265
-msgid "Configuring Network Interfaces"
-msgstr ""
-
-#: ../textw/netconfig_text.py:265
-msgid "Waiting for NetworkManager..."
-msgstr ""
-
-#: ../textw/netconfig_text.py:271
-msgid "Error configuring network device"
-msgstr ""
-
-#: ../textw/netconfig_text.py:271
-#, python-format
-msgid "Error configuring network device %s"
-msgstr ""
-
-#: ../textw/partition_text.py:58
-msgid "Partitioning Type"
-msgstr ""
-
-#: ../textw/partition_text.py:60 tmp/autopart.glade.h:2
-msgid ""
-"Installation requires partitioning of your hard drive. The default layout "
-"is suitable for most users. Select what space to use and which drives to "
-"use as the install target. You can also choose to create your own custom "
-"layout."
-msgstr ""
-
-#: ../textw/partition_text.py:76
-msgid "Which drive(s) do you want to use for this installation?"
-msgstr ""
-
-#: ../textw/partition_text.py:91
-msgid "<Space>,<+>,<-> selection | <F2> Add drive | <F12> next screen"
-msgstr ""
-
-#: ../textw/partition_text.py:165 tmp/adddrive.glade.h:3
-msgid "Advanced Storage Options"
-msgstr ""
-
-#: ../textw/partition_text.py:166 tmp/adddrive.glade.h:5
-msgid "How would you like to modify your drive configuration?"
-msgstr ""
-
-#: ../textw/partition_text.py:189
-msgid "Add FCP Device"
-msgstr ""
-
-#: ../textw/partition_text.py:190 tmp/zfcp-config.glade.h:5
-msgid ""
-"zSeries machines can access industry-standard SCSI devices via Fibre Channel "
-"(FCP). You need to provide a 16 bit device number, a 64 bit World Wide Port "
-"Name (WWPN), and a 64 bit FCP LUN for each device."
-msgstr ""
-
-#: ../textw/partition_text.py:213 tmp/iscsi-config.glade.h:7
-msgid "Configure iSCSI Parameters"
-msgstr ""
-
-#: ../textw/partition_text.py:214 tmp/iscsi-config.glade.h:8
-msgid ""
-"To use iSCSI disks, you must provide the address of your iSCSI target and "
-"the iSCSI initiator name you've configured for your host."
-msgstr ""
-
-#: ../textw/partition_text.py:215
-msgid "Target IP Address"
-msgstr ""
-
-#: ../textw/partition_text.py:216
-msgid "iSCSI Initiator Name"
-msgstr ""
-
-#: ../textw/partition_text.py:217
-msgid "CHAP username"
-msgstr ""
-
-#: ../textw/partition_text.py:218
-msgid "CHAP password"
-msgstr ""
-
-#: ../textw/partition_text.py:219
-msgid "Reverse CHAP username"
-msgstr ""
-
-#: ../textw/partition_text.py:220
-msgid "Reverse CHAP password"
-msgstr ""
-
-#: ../textw/progress_text.py:46
-msgid "Package Installation"
-msgstr ""
-
-#: ../textw/timezone_text.py:75
-msgid "In which time zone are you located?"
-msgstr ""
-
-#: ../textw/timezone_text.py:93
-msgid "System clock uses UTC"
-msgstr ""
-
-#: ../textw/upgrade_bootloader_text.py:115
-#: ../textw/upgrade_bootloader_text.py:124
-msgid "Update boot loader configuration"
-msgstr ""
-
-#: ../textw/upgrade_bootloader_text.py:127
-msgid "Skip boot loader updating"
-msgstr ""
-
-#: ../textw/upgrade_bootloader_text.py:129
-msgid "Create new boot loader configuration"
-msgstr ""
-
-#: ../textw/upgrade_text.py:38
-#, python-format
-msgid ""
-"This release of %s supports the an updated file system, which has several "
-"benefits over the file system traditionally shipped in %s. This "
-"installation program can migrate formatted partitions without data loss.\n"
-"\n"
-"Which of these partitions would you like to migrate?"
-msgstr ""
-
-#: ../textw/upgrade_text.py:119
-msgid "Free Space"
-msgstr ""
-
-#: ../textw/upgrade_text.py:137
-msgid "RAM detected (MB):"
-msgstr ""
-
-#: ../textw/upgrade_text.py:140
-msgid "Suggested size (MB):"
-msgstr ""
-
-#: ../textw/upgrade_text.py:143
-msgid "Swap file size (MB):"
-msgstr ""
-
-#: ../textw/upgrade_text.py:151
-msgid "Add Swap"
-msgstr ""
-
-#: ../textw/upgrade_text.py:176
-msgid "The value you entered is not a valid number."
-msgstr ""
-
-#: ../textw/upgrade_text.py:209
-msgid "Reinstall System"
-msgstr ""
-
-#: ../textw/upgrade_text.py:219
-msgid "System to Upgrade"
-msgstr ""
-
-#: ../textw/upgrade_text.py:220
-msgid ""
-"There seem to be one or more existing Linux installations on your system.\n"
-"\n"
-"Please choose one to upgrade, or select 'Reinstall System' to freshly "
-"install your system."
-msgstr ""
-
-#: ../textw/userauth_text.py:30
-msgid "Root Password"
-msgstr ""
-
-#: ../textw/userauth_text.py:33
-msgid ""
-"Pick a root password. You must type it twice to ensure you know it and do "
-"not make a typing mistake. "
-msgstr ""
-
-#: ../textw/userauth_text.py:67
-msgid "The root password must be at least 6 characters long."
-msgstr ""
-
-#: ../textw/welcome_text.py:29
-#, python-format
-msgid "%s"
-msgstr ""
-
-#: ../textw/welcome_text.py:30
-#, python-format
-msgid ""
-"Welcome to %s!\n"
-"\n"
-msgstr ""
-
-#: ../textw/zipl_text.py:35
-msgid ""
-"The z/IPL Boot Loader will be installed on your system after installation is "
-"complete. You can now enter any additional kernel and chandev parameters "
-"which your machine or your setup require."
-msgstr ""
-
-#: ../textw/zipl_text.py:67
-msgid "z/IPL Configuration"
-msgstr ""
-
-#: ../textw/zipl_text.py:75 ../textw/zipl_text.py:79
-msgid "Chandev line "
-msgstr ""
-
-#: ../installclasses/fedora.py:39
-msgid "_Fedora"
-msgstr ""
-
-#: ../installclasses/fedora.py:40 ../installclasses/rhel.py:45
-#, python-format
-msgid ""
-"The default installation of %s includes a set of software applicable for "
-"general internet usage. What additional tasks would you like your system to "
-"include support for?"
-msgstr ""
-
-#: ../installclasses/fedora.py:49
-msgid "Office and Productivity"
-msgstr ""
-
-#: ../installclasses/fedora.py:50 ../installclasses/rhel.py:57
-#: ../installclasses/rhel.py:62
-msgid "Software Development"
-msgstr ""
-
-#: ../installclasses/fedora.py:51
-msgid "Web Server"
-msgstr ""
-
-#: ../installclasses/rhel.py:44
-msgid "Red Hat Enterprise Linux"
-msgstr ""
-
-#: ../installclasses/rhel.py:54
-msgid "Office"
-msgstr ""
-
-#: ../installclasses/rhel.py:55
-msgid "Multimedia"
-msgstr ""
-
-#: ../installclasses/rhel.py:61
-msgid "Web server"
-msgstr ""
-
-#: ../installclasses/rhel.py:66
-msgid "Virtualization"
-msgstr ""
-
-#: ../installclasses/rhel.py:67
-msgid "Clustering"
-msgstr ""
-
-#: ../installclasses/rhel.py:68
-msgid "Storage Clustering"
-msgstr ""
-
-#: ../installclasses/rhel.py:72
-msgid "Installation Number"
-msgstr ""
-
-#: ../installclasses/rhel.py:73
-msgid ""
-"To install the full set of supported packages included in your subscription, "
-"please enter your Installation Number"
-msgstr ""
-
-#: ../installclasses/rhel.py:76
-msgid ""
-"If you're unable to locate the Installation Number, consult http://www."
-"redhat.com/apps/support/in.html.\n"
-"\n"
-"If you skip:\n"
-"* You may not get access to the full set of packages included in your "
-"subscription.\n"
-"* It may result in an unsupported/uncertified installation of Red Hat "
-"Enterprise Linux.\n"
-"* You will not get software and security updates for packages not included "
-"in your subscription."
-msgstr ""
-
-#: ../storage/__init__.py:81
-msgid "Unknown Device"
-msgstr ""
-
-#: ../storage/__init__.py:82
-#, python-format
-msgid ""
-"The installation source given by device %s could not be found. Please check "
-"your parameters and try again."
-msgstr ""
-
-#: ../storage/__init__.py:95
-msgid "Installation cannot continue."
-msgstr ""
-
-#: ../storage/__init__.py:96
-msgid ""
-"The storage configuration you have chosen has already been activated. You "
-"can no longer return to the disk editing screen. Would you like to continue "
-"with the installation process?"
-msgstr ""
-
-#: ../storage/__init__.py:127
-msgid "Encrypt device?"
-msgstr ""
-
-#: ../storage/__init__.py:128
-msgid ""
-"You specified block device encryption should be enabled, but you have not "
-"supplied a passphrase. If you do not go back and provide a passphrase, block "
-"device encryption will be disabled."
-msgstr ""
-
-#: ../storage/__init__.py:146
-msgid "Writing storage configuration to disk"
-msgstr ""
-
-#: ../storage/__init__.py:147
-msgid ""
-"The partitioning options you have selected will now be written to disk. Any "
-"data on deleted or reformatted partitions will be lost."
-msgstr ""
-
-#: ../storage/__init__.py:152
-msgid "Go _back"
-msgstr ""
-
-#: ../storage/__init__.py:153
-msgid "_Write changes to disk"
-msgstr ""
-
-#: ../storage/__init__.py:252
-msgid "Finding Devices"
-msgstr ""
-
-#: ../storage/__init__.py:253
-msgid "Finding storage devices..."
-msgstr ""
-
-#: ../storage/__init__.py:269
-msgid "Filesystem error detected, cannot continue."
-msgstr ""
-
-#: ../storage/__init__.py:480
-msgid "This partition is holding the data for the hard drive install."
-msgstr ""
-
-#: ../storage/__init__.py:485
-msgid "You cannot delete a partition of a LDL formatted DASD."
-msgstr ""
-
-#: ../storage/__init__.py:491
-#, python-format
-msgid "This device is part of the RAID device %s."
-msgstr ""
-
-#: ../storage/__init__.py:494
-msgid "This device is part of a RAID device."
-msgstr ""
-
-#: ../storage/__init__.py:499
-#, python-format
-msgid "This device is part of the LVM volume group '%s'."
-msgstr ""
-
-#: ../storage/__init__.py:502
-msgid "This device is part of a LVM volume group."
-msgstr ""
-
-#: ../storage/__init__.py:511
-msgid ""
-"This device is an extended partition which contains logical partitions that "
-"cannot be deleted:\n"
-"\n"
-msgstr ""
-
-#: ../storage/__init__.py:751
-#, python-format
-msgid ""
-"You have not defined a root partition (/), which is required for "
-"installation of %s to continue."
-msgstr ""
-
-#: ../storage/__init__.py:756
-#, python-format
-msgid ""
-"Your root partition is less than 250 megabytes which is usually too small to "
-"install %s."
-msgstr ""
-
-#: ../storage/__init__.py:762
-#, python-format
-msgid ""
-"Your / partition is less than %s megabytes which is lower than recommended "
-"for a normal %s install."
-msgstr ""
-
-#: ../storage/__init__.py:770
-#, python-format
-msgid ""
-"Your %s partition is less than %s megabytes which is lower than recommended "
-"for a normal %s install."
-msgstr ""
-
-#: ../storage/__init__.py:797
-msgid ""
-"Installing on a USB device. This may or may not produce a working system."
-msgstr ""
-
-#: ../storage/__init__.py:800
-msgid ""
-"Installing on a FireWire device. This may or may not produce a working "
-"system."
-msgstr ""
-
-#: ../storage/__init__.py:804
-msgid "You have not created a boot partition."
-msgstr ""
-
-#: ../storage/__init__.py:808
-msgid "Bootable partitions can only be on RAID1 devices."
-msgstr ""
-
-#: ../storage/__init__.py:813
-msgid "Bootable partitions cannot be on a logical volume."
-msgstr ""
-
-#: ../storage/__init__.py:818
-msgid "Bootable partitions cannot be on a RAID device."
-msgstr ""
-
-#: ../storage/__init__.py:823 ../storage/__init__.py:828
-#, python-format
-msgid "Bootable partitions cannot be on an %s filesystem."
-msgstr ""
-
-#: ../storage/__init__.py:833
-msgid "Bootable partitions cannot be on an encrypted block device"
-msgstr ""
-
-#: ../storage/__init__.py:837
-msgid ""
-"You have not specified a swap partition. Although not strictly required in "
-"all cases, it will significantly improve performance for most installations."
-msgstr ""
-
-#: ../storage/__init__.py:979 ../storage/__init__.py:988
-msgid "Dirty File Systems"
-msgstr ""
-
-#: ../storage/__init__.py:980
-#, python-format
-msgid ""
-"The following file systems for your Linux system were not unmounted "
-"cleanly. Please boot your Linux installation, let the file systems be "
-"checked and shut down cleanly to upgrade.\n"
-"%s"
-msgstr ""
-
-#: ../storage/__init__.py:989
-#, python-format
-msgid ""
-"The following file systems for your Linux system were not unmounted "
-"cleanly. Would you like to mount them anyway?\n"
-"%s"
-msgstr ""
-
-#: ../storage/__init__.py:1406
-#, python-format
-msgid ""
-"The swap device:\n"
-"\n"
-" %s\n"
-"\n"
-"in your /etc/fstab file is currently in use as a software suspend device, "
-"which means your system is hibernating. To perform an upgrade, please shut "
-"down your system rather than hibernating it."
-msgstr ""
-
-#: ../storage/__init__.py:1414
-#, python-format
-msgid ""
-"The swap device:\n"
-"\n"
-" %s\n"
-"\n"
-"in your /etc/fstab file is currently in use as a software suspend device, "
-"which means your system is hibernating. If you are performing a new install, "
-"make sure the installer is set to format all swap devices."
-msgstr ""
-
-#: ../storage/__init__.py:1428
-#, python-format
-msgid ""
-"Error enabling swap device %s: %s\n"
-"\n"
-"The /etc/fstab on your upgrade partition does not reference a valid swap "
-"device.\n"
-"\n"
-"Press OK to exit the installer"
-msgstr ""
-
-#: ../storage/__init__.py:1434
-#, python-format
-msgid ""
-"Error enabling swap device %s: %s\n"
-"\n"
-"This most likely means this swap device has not been initialized.\n"
-"\n"
-"Press OK to exit the installer."
-msgstr ""
-
-#: ../storage/__init__.py:1475 ../storage/__init__.py:1485
-msgid "Invalid mount point"
-msgstr ""
-
-#: ../storage/__init__.py:1476
-#, python-format
-msgid ""
-"An error occurred when trying to create %s. Some element of this path is "
-"not a directory. This is a fatal error and the install cannot continue.\n"
-"\n"
-"Press <Enter> to exit the installer."
-msgstr ""
-
-#: ../storage/__init__.py:1486
-#, python-format
-msgid ""
-"An error occurred when trying to create %s: %s. This is a fatal error and "
-"the install cannot continue.\n"
-"\n"
-"Press <Enter> to exit the installer."
-msgstr ""
-
-#: ../storage/__init__.py:1499 ../storage/__init__.py:1520
-msgid "Unable to mount filesystem"
-msgstr ""
-
-#: ../storage/__init__.py:1500
-#, python-format
-msgid ""
-"An error occurred mounting device %s as %s. You may continue installation, "
-"but there may be problems."
-msgstr ""
-
-#: ../storage/__init__.py:1521
-#, python-format
-msgid ""
-"An error occurred mounting device %s as %s: %s. This is a fatal error and "
-"the install cannot continue.\n"
-"\n"
-"Press <Enter> to exit the installer."
-msgstr ""
-
-#: ../storage/devices.py:1059
-msgid "boot flag not available for this partition"
-msgstr ""
-
-#: ../storage/devicetree.py:87
-msgid "Confirm"
-msgstr ""
-
-#: ../storage/devicetree.py:88
-#, python-format
-msgid ""
-"Are you sure you want to skip entering a passphrase for device %s?\n"
-"\n"
-"If you skip this step the device's contents will not be available during "
-"installation."
-msgstr ""
-
-#: ../storage/devicetree.py:126
-#, python-format
-msgid ""
-"Error processing drive %s.\n"
-"Maybe it needs to be reinitialized.YOU WILL LOSE ALL DATA ON THIS DRIVE!"
-msgstr ""
-
-#: ../storage/devicetree.py:151
-#, python-format
-msgid ""
-"Error processing LVM.\n"
-"It seems that there is inconsistent LVM data. (%s) make(s) up %s. You can "
-"reinitialize all related PVs, which will erase all LVM metadata. Or ignore, "
-"which will preserve contents."
-msgstr ""
-
-#: ../storage/devicetree.py:159
-msgid "_Ignore drive(s)"
-msgstr ""
-
-#: ../storage/devicetree.py:160
-msgid "_Re-initialize drive(s)"
-msgstr ""
-
-#: ../storage/iscsi.py:98 ../storage/iscsi.py:99
-msgid "Scanning iSCSI nodes"
-msgstr ""
-
-#: ../storage/iscsi.py:172 ../storage/iscsi.py:173
-msgid "Initializing iSCSI initiator"
-msgstr ""
-
-#: ../storage/iscsi.py:208
-msgid "iSCSI not available"
-msgstr ""
-
-#: ../storage/iscsi.py:210
-msgid "No initiator name set"
-msgstr ""
-
-#: ../storage/iscsi.py:224
-msgid "No iSCSI nodes discovered"
-msgstr ""
-
-#: ../storage/iscsi.py:227 ../storage/iscsi.py:228
-msgid "Logging in to iSCSI nodes"
-msgstr ""
-
-#: ../storage/iscsi.py:250
-msgid "No new iSCSI nodes discovered"
-msgstr ""
-
-#: ../storage/iscsi.py:253
-msgid "Could not log in to any of the discovered nodes"
-msgstr ""
-
-#: ../storage/partitioning.py:175
-msgid ""
-"Could not find enough free space for automatic partitioning, please use "
-"another partitioning method."
-msgstr ""
-
-#: ../storage/partitioning.py:192
-msgid "Warnings During Automatic Partitioning"
-msgstr ""
-
-#: ../storage/partitioning.py:194
-#, python-format
-msgid ""
-"Following warnings occurred during automatic partitioning:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../storage/partitioning.py:206 ../storage/partitioning.py:230
-msgid ""
-"\n"
-"\n"
-"Press 'OK' to exit the installer."
-msgstr ""
-
-#: ../storage/partitioning.py:208
-#, python-format
-msgid ""
-"Could not allocate requested partitions: \n"
-"\n"
-"%s.%s"
-msgstr ""
-
-#: ../storage/partitioning.py:232
-msgid ""
-"\n"
-"\n"
-"Press 'OK' to choose a different partitioning option."
-msgstr ""
-
-#: ../storage/partitioning.py:234
-msgid "Automatic Partitioning Errors"
-msgstr ""
-
-#: ../storage/partitioning.py:235
-#, python-format
-msgid ""
-"The following errors occurred with your partitioning:\n"
-"\n"
-"%s\n"
-"\n"
-"This can happen if there is not enough space on your hard drive(s) for the "
-"installation. %s"
-msgstr ""
-
-#: ../storage/partitioning.py:246
-msgid "Unrecoverable Error"
-msgstr ""
-
-#: ../storage/partitioning.py:247
-msgid "Your system will now be rebooted."
-msgstr ""
-
-#: ../storage/zfcp.py:52
-msgid "You have not specified a device number or the number is invalid"
-msgstr ""
-
-#: ../storage/zfcp.py:54
-msgid "You have not specified a worldwide port name or the name is invalid."
-msgstr ""
-
-#: ../storage/zfcp.py:56
-msgid "You have not specified a FCP LUN or the number is invalid."
-msgstr ""
-
-#: ../storage/devicelibs/lvm.py:326
-#, python-format
-msgid "vginfo failed for %s"
-msgstr ""
-
-#: ../storage/devicelibs/lvm.py:354
-#, python-format
-msgid "lvs failed for %s"
-msgstr ""
-
-#: ../storage/formats/fs.py:64
-msgid "attr dict must include a type"
-msgstr ""
-
-#: ../storage/formats/fs.py:111
-msgid "filesystem configuration missing a type"
-msgstr ""
-
-#: ../storage/formats/fs.py:270
-msgid "Formatting"
-msgstr ""
-
-#: ../storage/formats/fs.py:271
-#, python-format
-msgid "Creating filesystem on %s..."
-msgstr ""
-
-#: ../storage/formats/fs.py:367
-msgid "Resizing"
-msgstr ""
-
-#: ../storage/formats/fs.py:368
-#, python-format
-msgid "Resizing filesystem on %s..."
-msgstr ""
-
-#: ../storage/formats/fs.py:409
-msgid "Checking"
-msgstr ""
-
-#: ../storage/formats/fs.py:410
-#, python-format
-msgid "Checking filesystem on %s..."
-msgstr ""
-
-#: ../loader/cdinstall.c:185 ../loader/cdinstall.c:206
-#: ../loader/mediacheck.c:60
-msgid "Media Check"
-msgstr ""
-
-#: ../loader/cdinstall.c:185 ../loader/cdinstall.c:188
-#: ../loader/cdinstall.c:206 ../loader/cdinstall.c:214 ../loader/method.c:326
-msgid "Test"
-msgstr ""
-
-#: ../loader/cdinstall.c:185 ../loader/cdinstall.c:189
-msgid "Eject Disc"
-msgstr ""
-
-#: ../loader/cdinstall.c:186
-#, c-format
-msgid ""
-"Choose \"%s\" to test the disc currently in the drive, or \"%s\" to eject "
-"the disc and insert another for testing."
-msgstr ""
-
-#: ../loader/cdinstall.c:207
-#, c-format
-msgid ""
-"If you would like to test additional media, insert the next disc and press "
-"\"%s\". Testing each disc is not strictly required, however it is highly "
-"recommended. Minimally, the discs should be tested prior to using them for "
-"the first time. After they have been successfully tested, it is not required "
-"to retest each disc prior to using it again."
-msgstr ""
-
-#: ../loader/cdinstall.c:229
-#, c-format
-msgid ""
-"The %s disc was not found in any of your drives. Please insert the %s disc "
-"and press %s to retry."
-msgstr ""
-
-#: ../loader/cdinstall.c:248
-msgid "Disc Found"
-msgstr ""
-
-#: ../loader/cdinstall.c:249
-#, c-format
-msgid ""
-"To begin testing the media before installation press %s.\n"
-"\n"
-"Choose %s to skip the media test and start the installation."
-msgstr ""
-
-#: ../loader/cdinstall.c:339
-msgid "Scanning"
-msgstr ""
-
-#: ../loader/cdinstall.c:339 ../loader/cdinstall.c:341
-#, c-format
-msgid "Looking for installation images on CD device %s"
-msgstr ""
-
-#: ../loader/cdinstall.c:442
-#, c-format
-msgid ""
-"The %s disc was not found in any of your CDROM drives. Please insert the %s "
-"disc and press %s to retry."
-msgstr ""
-
-#: ../loader/cdinstall.c:451
-msgid "Disc Not Found"
-msgstr ""
-
-#: ../loader/cdinstall.c:518
-msgid "Cannot find kickstart file on CDROM."
-msgstr ""
-
-#: ../loader/copy.c:51 ../loader/method.c:280
-#, c-format
-msgid "Failed to read directory %s: %m"
-msgstr ""
-
-#: ../loader/driverdisk.c:139
-msgid "Loading"
-msgstr ""
-
-#: ../loader/driverdisk.c:139
-msgid "Reading driver disk..."
-msgstr ""
-
-#: ../loader/driverdisk.c:238 ../loader/driverdisk.c:270
-msgid "Driver Disk Source"
-msgstr ""
-
-#: ../loader/driverdisk.c:239
-msgid ""
-"You have multiple devices which could serve as sources for a driver disk. "
-"Which would you like to use?"
-msgstr ""
-
-#: ../loader/driverdisk.c:271
-msgid ""
-"There are multiple partitions on this device which could contain the driver "
-"disk image. Which would you like to use?"
-msgstr ""
-
-#: ../loader/driverdisk.c:306
-msgid "Failed to mount partition."
-msgstr ""
-
-#: ../loader/driverdisk.c:311
-msgid "Select driver disk image"
-msgstr ""
-
-#: ../loader/driverdisk.c:312
-msgid "Select the file which is your driver disk image."
-msgstr ""
-
-#: ../loader/driverdisk.c:341
-msgid "Failed to load driver disk from file."
-msgstr ""
-
-#: ../loader/driverdisk.c:353
-#, c-format
-msgid "Insert your driver disk into /dev/%s and press \"OK\" to continue."
-msgstr ""
-
-#: ../loader/driverdisk.c:359
-msgid "Insert Driver Disk"
-msgstr ""
-
-#: ../loader/driverdisk.c:372
-msgid "Failed to mount driver disk."
-msgstr ""
-
-#: ../loader/driverdisk.c:380
-#, c-format
-msgid "Driver disk is invalid for this release of %s."
-msgstr ""
-
-#: ../loader/driverdisk.c:443
-msgid "Manually choose"
-msgstr ""
-
-#: ../loader/driverdisk.c:444
-msgid "Load another disk"
-msgstr ""
-
-#: ../loader/driverdisk.c:445
-msgid ""
-"No devices of the appropriate type were found on this driver disk. Would "
-"you like to manually select the driver, continue anyway, or load another "
-"driver disk?"
-msgstr ""
-
-#: ../loader/driverdisk.c:483
-msgid "Driver disk"
-msgstr ""
-
-#: ../loader/driverdisk.c:484
-msgid "Do you have a driver disk?"
-msgstr ""
-
-#: ../loader/driverdisk.c:493
-msgid "More Driver Disks?"
-msgstr ""
-
-#: ../loader/driverdisk.c:494
-msgid "Do you wish to load any more driver disks?"
-msgstr ""
-
-#: ../loader/driverdisk.c:539 ../loader/driverdisk.c:576
-#: ../loader/hdinstall.c:384 ../loader/kickstart.c:132
-#: ../loader/kickstart.c:142 ../loader/kickstart.c:185
-#: ../loader/kickstart.c:553 ../loader/modules.c:335 ../loader/modules.c:347
-#: ../loader/net.c:1541 ../loader/net.c:1564 ../loader/nfsinstall.c:335
-#: ../loader/urlinstall.c:418 ../loader/urlinstall.c:427
-#: ../loader/urlinstall.c:436
-msgid "Kickstart Error"
-msgstr ""
-
-#: ../loader/driverdisk.c:540
-#, c-format
-msgid "Unknown driver disk kickstart source: %s"
-msgstr ""
-
-#: ../loader/driverdisk.c:577
-#, c-format
-msgid ""
-"The following invalid argument was specified for the kickstart driver disk "
-"command: %s:%s"
-msgstr ""
-
-#: ../loader/driverselect.c:67
-#, c-format
-msgid ""
-"Please enter any parameters which you wish to pass to the %s module "
-"separated by spaces. If you don't know what parameters to supply, skip this "
-"screen by pressing the \"OK\" button."
-msgstr ""
-
-#: ../loader/driverselect.c:91
-msgid "Enter Module Parameters"
-msgstr ""
-
-#: ../loader/driverselect.c:178
-msgid "No drivers found"
-msgstr ""
-
-#: ../loader/driverselect.c:178
-msgid "Load driver disk"
-msgstr ""
-
-#: ../loader/driverselect.c:179
-msgid ""
-"No drivers were found to manually insert. Would you like to use a driver "
-"disk?"
-msgstr ""
-
-#: ../loader/driverselect.c:197
-msgid ""
-"Please select the driver below which you wish to load. If it does not "
-"appear and you have a driver disk, press F2."
-msgstr ""
-
-#: ../loader/driverselect.c:206
-msgid "Specify optional module arguments"
-msgstr ""
-
-#: ../loader/driverselect.c:234
-msgid "Select Device Driver to Load"
-msgstr ""
-
-#: ../loader/hdinstall.c:144
-msgid ""
-"An error occured finding the installation image on your hard drive. Please "
-"check your images and try again."
-msgstr ""
-
-#: ../loader/hdinstall.c:232
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-
-#: ../loader/hdinstall.c:246
-#, c-format
-msgid ""
-"What partition and directory on that partition holds the installation image "
-"for %s? If you don't see the disk drive you're using listed here, press F2 "
-"to configure additional devices."
-msgstr ""
-
-#: ../loader/hdinstall.c:273
-msgid "Directory holding image:"
-msgstr ""
-
-#: ../loader/hdinstall.c:301
-msgid "Select Partition"
-msgstr ""
-
-#: ../loader/hdinstall.c:353
-#, c-format
-msgid "Device %s does not appear to contain an installation image."
-msgstr ""
-
-#: ../loader/hdinstall.c:385
-#, c-format
-msgid "Bad argument to HD kickstart method command %s: %s"
-msgstr ""
-
-#: ../loader/hdinstall.c:455 ../loader/hdinstall.c:511
-msgid "Cannot find kickstart file on hard drive."
-msgstr ""
-
-#: ../loader/hdinstall.c:498
-#, c-format
-msgid "Cannot find hard drive for BIOS disk %s"
-msgstr ""
-
-#: ../loader/kbd.c:136
-msgid "Keyboard Type"
-msgstr ""
-
-#: ../loader/kbd.c:137
-msgid "What type of keyboard do you have?"
-msgstr ""
-
-#: ../loader/kickstart.c:133
-#, c-format
-msgid "Error opening kickstart file %s: %m"
-msgstr ""
-
-#: ../loader/kickstart.c:143
-#, c-format
-msgid "Error reading contents of kickstart file %s: %m"
-msgstr ""
-
-#: ../loader/kickstart.c:186
-#, c-format
-msgid "Error in %s on line %d of kickstart file %s."
-msgstr ""
-
-#: ../loader/kickstart.c:285
-msgid "Cannot find ks.cfg on removable media."
-msgstr ""
-
-#: ../loader/kickstart.c:380
-msgid ""
-"Unable to download the kickstart file. Please modify the kickstart "
-"parameter below or press Cancel to proceed as an interactive installation."
-msgstr ""
-
-#: ../loader/kickstart.c:389
-msgid "Error downloading kickstart file"
-msgstr ""
-
-#: ../loader/kickstart.c:554
-#, c-format
-msgid "Bad argument to shutdown kickstart method command %s: %s"
-msgstr ""
-
-#: ../loader/lang.c:64
-#, c-format
-msgid "Welcome to %s for %s - Rescue Mode"
-msgstr ""
-
-#: ../loader/lang.c:65 ../loader/loader.c:226
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-
-#: ../loader/lang.c:375
-msgid "Choose a Language"
-msgstr ""
-
-#: ../loader/loader.c:127
-msgid "Local CD/DVD"
-msgstr ""
-
-#: ../loader/loader.c:128
-msgid "Hard drive"
-msgstr ""
-
-#: ../loader/loader.c:129
-msgid "NFS directory"
-msgstr ""
-
-#: ../loader/loader.c:433 ../loader/loader.c:477
-msgid "Update Disk Source"
-msgstr ""
-
-#: ../loader/loader.c:434
-msgid ""
-"You have multiple devices which could serve as sources for an update disk. "
-"Which would you like to use?"
-msgstr ""
-
-#: ../loader/loader.c:478
-msgid ""
-"There are multiple partitions on this device which could contain the update "
-"disk image. Which would you like to use?"
-msgstr ""
-
-#: ../loader/loader.c:496
-#, c-format
-msgid "Insert your updates disk into %s and press \"OK\" to continue."
-msgstr ""
-
-#: ../loader/loader.c:502
-msgid "Updates Disk"
-msgstr ""
-
-#: ../loader/loader.c:520
-msgid "Failed to mount updates disk"
-msgstr ""
-
-#: ../loader/loader.c:525
-msgid "Updates"
-msgstr ""
-
-#: ../loader/loader.c:525
-msgid "Reading anaconda updates..."
-msgstr ""
-
-#: ../loader/loader.c:561
-msgid ""
-"Unable to download the updates image. Please modify the updates location "
-"below or press Cancel to proceed without updates.."
-msgstr ""
-
-#: ../loader/loader.c:570
-msgid "Error downloading updates image"
-msgstr ""
-
-#: ../loader/loader.c:1196
-#, c-format
-msgid "You do not have enough RAM to install %s on this machine."
-msgstr ""
-
-#: ../loader/loader.c:1253
-msgid "Media Detected"
-msgstr ""
-
-#: ../loader/loader.c:1254
-msgid "Local installation media detected..."
-msgstr ""
-
-#: ../loader/loader.c:1370
-msgid "Rescue Method"
-msgstr ""
-
-#: ../loader/loader.c:1371
-msgid "Installation Method"
-msgstr ""
-
-#: ../loader/loader.c:1373
-msgid "What type of media contains the rescue image?"
-msgstr ""
-
-#: ../loader/loader.c:1375
-msgid "What type of media contains the installation image?"
-msgstr ""
-
-#: ../loader/loader.c:1408
-msgid "No driver found"
-msgstr ""
-
-#: ../loader/loader.c:1408
-msgid "Select driver"
-msgstr ""
-
-#: ../loader/loader.c:1409
-msgid "Use a driver disk"
-msgstr ""
-
-#: ../loader/loader.c:1410
-msgid ""
-"Unable to find any devices of the type needed for this installation type. "
-"Would you like to manually select your driver or use a driver disk?"
-msgstr ""
-
-#: ../loader/loader.c:1630
-msgid "The following devices have been found on your system."
-msgstr ""
-
-#: ../loader/loader.c:1632
-msgid ""
-"No device drivers have been loaded for your system. Would you like to load "
-"any now?"
-msgstr ""
-
-#: ../loader/loader.c:1636
-msgid "Devices"
-msgstr ""
-
-#: ../loader/loader.c:1637
-msgid "Done"
-msgstr ""
-
-#: ../loader/loader.c:1638
-msgid "Add Device"
-msgstr ""
-
-#: ../loader/loader.c:1850
-#, c-format
-msgid "loader has already been run. Starting shell.\n"
-msgstr ""
-
-#: ../loader/loader.c:2224
-#, c-format
-msgid "Running anaconda %s, the %s rescue mode - please wait...\n"
-msgstr ""
-
-#: ../loader/loader.c:2226
-#, c-format
-msgid "Running anaconda %s, the %s system installer - please wait...\n"
-msgstr ""
-
-#: ../loader/mediacheck.c:46
-#, c-format
-msgid "Unable to find install image %s"
-msgstr ""
-
-#: ../loader/mediacheck.c:52
-#, c-format
-msgid "Checking \"%s\"..."
-msgstr ""
-
-#: ../loader/mediacheck.c:54
-#, c-format
-msgid "Checking media now..."
-msgstr ""
-
-#: ../loader/mediacheck.c:86
-msgid ""
-"Unable to read the disc checksum from the primary volume descriptor. This "
-"probably means the disc was created without adding the checksum."
-msgstr ""
-
-#: ../loader/mediacheck.c:93
-msgid ""
-"The image which was just tested has errors. This could be due to a corrupt "
-"download or a bad disc. If applicable, please clean the disc and try "
-"again. If this test continues to fail you should not continue the install."
-msgstr ""
-
-#: ../loader/mediacheck.c:101
-msgid "Success"
-msgstr ""
-
-#: ../loader/mediacheck.c:102
-msgid ""
-"The image which was just tested was successfully verified. It should be OK "
-"to install from this media. Note that not all media/drive errors can be "
-"detected by the media check."
-msgstr ""
-
-#: ../loader/method.c:323
-#, c-format
-msgid ""
-"Would you like to perform a checksum test of the ISO image:\n"
-"\n"
-" %s?"
-msgstr ""
-
-#: ../loader/method.c:326
-msgid "Checksum Test"
-msgstr ""
-
-#: ../loader/modules.c:336
-#, c-format
-msgid "Bad argument to device kickstart method command %s: %s"
-msgstr ""
-
-#: ../loader/modules.c:348
-msgid "A module name must be specified for the kickstart device command."
-msgstr ""
-
-#: ../loader/net.c:111
-msgid "Invalid Prefix"
-msgstr ""
-
-#: ../loader/net.c:112
-msgid ""
-"Prefix must be between 1 and 32 for IPv4 networks or between 1 and 128 for "
-"IPv6 networks"
-msgstr ""
-
-#: ../loader/net.c:454 ../loader/net.c:510
-msgid "Network Error"
-msgstr ""
-
-#: ../loader/net.c:455 ../loader/net.c:511
-msgid "There was an error configuring your network interface."
-msgstr ""
-
-#: ../loader/net.c:556
-msgid "Enable IPv6 support"
-msgstr ""
-
-#: ../loader/net.c:596
-msgid "Configure TCP/IP"
-msgstr ""
-
-#: ../loader/net.c:655
-msgid "Missing Protocol"
-msgstr ""
-
-#: ../loader/net.c:656
-msgid "You must select at least one protocol (IPv4 or IPv6)."
-msgstr ""
-
-#: ../loader/net.c:663
-msgid "IPv4 Needed for NFS"
-msgstr ""
-
-#: ../loader/net.c:664
-msgid "NFS installation method requires IPv4 support."
-msgstr ""
-
-#: ../loader/net.c:763
-msgid "IPv4 address:"
-msgstr ""
-
-#: ../loader/net.c:775 ../loader/net.c:842 tmp/netconfig.glade.h:1
-msgid "/"
-msgstr ""
-
-#: ../loader/net.c:830
-msgid "IPv6 address:"
-msgstr ""
-
-#: ../loader/net.c:904
-msgid "Name Server:"
-msgstr ""
-
-#: ../loader/net.c:943
-msgid ""
-"Enter the IPv4 and/or the IPv6 address and prefix (address / prefix). For "
-"IPv4, the dotted-quad netmask or the CIDR-style prefix are acceptable. The "
-"gateway and name server fields must be valid IPv4 or IPv6 addresses."
-msgstr ""
-
-#: ../loader/net.c:963
-msgid "Manual TCP/IP Configuration"
-msgstr ""
-
-#: ../loader/net.c:1086 ../loader/net.c:1093
-msgid "Missing Information"
-msgstr ""
-
-#: ../loader/net.c:1087
-msgid ""
-"You must enter both a valid IPv4 address and a network mask or CIDR prefix."
-msgstr ""
-
-#: ../loader/net.c:1094
-msgid "You must enter both a valid IPv6 address and a CIDR prefix."
-msgstr ""
-
-#: ../loader/net.c:1542
-#, c-format
-msgid "Bad argument to kickstart network command %s: %s"
-msgstr ""
-
-#: ../loader/net.c:1565
-#, c-format
-msgid "Bad bootproto %s specified in network command"
-msgstr ""
-
-#: ../loader/net.c:1637
-msgid "Seconds:"
-msgstr ""
-
-#: ../loader/net.c:1803
-msgid "Networking Device"
-msgstr ""
-
-#: ../loader/net.c:1804
-msgid ""
-"You have multiple network devices on this system. Which would you like to "
-"install through?"
-msgstr ""
-
-#: ../loader/net.c:1808
-msgid "Identify"
-msgstr ""
-
-#: ../loader/net.c:1817
-msgid "You can identify the physical port for"
-msgstr ""
-
-#: ../loader/net.c:1819
-msgid ""
-"by flashing the LED lights for a number of seconds. Enter a number between "
-"1 and 30 to set the duration to flash the LED port lights."
-msgstr ""
-
-#: ../loader/net.c:1829
-msgid "Identify NIC"
-msgstr ""
-
-#: ../loader/net.c:1842
-msgid "Invalid Duration"
-msgstr ""
-
-#: ../loader/net.c:1843
-msgid "You must enter the number of seconds as an integer between 1 and 30."
-msgstr ""
-
-#: ../loader/net.c:1855
-#, c-format
-msgid "Flashing %s port lights for %d seconds..."
-msgstr ""
-
-#: ../loader/net.c:2015 ../loader/net.c:2019
-#, c-format
-msgid "Waiting for NetworkManager to configure %s...\n"
-msgstr ""
-
-#: ../loader/nfsinstall.c:68
-msgid "NFS server name:"
-msgstr ""
-
-#: ../loader/nfsinstall.c:72
-#, c-format
-msgid "%s directory:"
-msgstr ""
-
-#: ../loader/nfsinstall.c:83
-#, c-format
-msgid "Please enter the server name and path to your %s installation image."
-msgstr ""
-
-#: ../loader/nfsinstall.c:90
-msgid "NFS Setup"
-msgstr ""
-
-#: ../loader/nfsinstall.c:249
-msgid "That directory could not be mounted from the server."
-msgstr ""
-
-#: ../loader/nfsinstall.c:260
-#, c-format
-msgid "That directory does not seem to contain a %s installation image."
-msgstr ""
-
-#: ../loader/nfsinstall.c:336
-#, c-format
-msgid "Bad argument to NFS kickstart method command %s: %s"
-msgstr ""
-
-#: ../loader/telnetd.c:89 ../loader/telnetd.c:128
-msgid "Telnet"
-msgstr ""
-
-#: ../loader/telnetd.c:89
-msgid "Waiting for telnet connection..."
-msgstr ""
-
-#: ../loader/telnetd.c:128
-msgid "Running anaconda via telnet..."
-msgstr ""
-
-#: ../loader/urlinstall.c:84
-#, c-format
-msgid "Unable to retrieve %s://%s%s."
-msgstr ""
-
-#: ../loader/urlinstall.c:176
-msgid "Unable to retrieve the install image."
-msgstr ""
-
-#: ../loader/urlinstall.c:419
-#, c-format
-msgid "Bad argument to Url kickstart method command %s: %s"
-msgstr ""
-
-#: ../loader/urlinstall.c:428
-msgid "Must supply a --url argument to Url kickstart method."
-msgstr ""
-
-#: ../loader/urlinstall.c:437
-#, c-format
-msgid "Unknown Url method %s"
-msgstr ""
-
-#: ../loader/urls.c:235 ../loader/urls.c:237 ../loader/urls.c:240
-msgid "Retrieving"
-msgstr ""
-
-#: ../loader/urls.c:295
-#, c-format
-msgid ""
-"Please enter the URL containing the %s installation image on your server."
-msgstr ""
-
-#: ../loader/urls.c:321
-msgid "URL Setup"
-msgstr ""
-
-#: ../loader/urls.c:329
-msgid "You must enter a URL."
-msgstr ""
-
-#: ../loader/urls.c:335
-msgid "URL must be either an ftp or http URL"
-msgstr ""
-
-#: ../loader/urls.c:346
-msgid "Unknown Host"
-msgstr ""
-
-#: ../loader/urls.c:347
-#, c-format
-msgid "%s is not a valid hostname."
-msgstr ""
-
-#: ../loader/windows.c:65
-msgid "Loading SCSI driver"
-msgstr ""
-
-#: ../loader/windows.c:66
-#, c-format
-msgid "Loading %s driver..."
-msgstr ""
-
-#: tmp/GroupSelector.glade.h:1
-msgid ""
-"Some packages associated with this group are not required to be installed "
-"but may provide additional functionality. Please choose the packages which "
-"you would like to have installed."
-msgstr ""
-
-#: tmp/GroupSelector.glade.h:2
-msgid "_Deselect"
-msgstr ""
-
-#: tmp/GroupSelector.glade.h:3
-msgid "_Deselect all optional packages"
-msgstr ""
-
-#: tmp/GroupSelector.glade.h:4
-msgid "_Optional packages"
-msgstr ""
-
-#: tmp/GroupSelector.glade.h:5
-msgid "_Select"
-msgstr ""
-
-#: tmp/GroupSelector.glade.h:6
-msgid "_Select all optional packages"
-msgstr ""
-
-#: tmp/GroupSelector.glade.h:7
-msgid "dialog1"
-msgstr ""
-
-#: tmp/account.glade.h:1
-msgid "Confirm:"
-msgstr ""
-
-#: tmp/account.glade.h:2
-msgid "Root Password:"
-msgstr ""
-
-#: tmp/account.glade.h:3
-msgid ""
-"The root account is used for administering the system. Enter a password for "
-"the root user."
-msgstr ""
-
-#: tmp/adddrive.glade.h:1
-msgid "Add _ZFCP LUN"
-msgstr ""
-
-#: tmp/adddrive.glade.h:2
-msgid "Add _iSCSI target"
-msgstr ""
-
-#: tmp/adddrive.glade.h:4
-msgid "Disable _dmraid device"
-msgstr ""
-
-#: tmp/adddrive.glade.h:6
-msgid "_Add drive"
-msgstr ""
-
-#: tmp/addrepo.glade.h:1
-msgid "<b>Repository _name:</b>"
-msgstr ""
-
-#: tmp/addrepo.glade.h:2
-msgid "<b>Repository _type:</b>"
-msgstr ""
-
-#: tmp/addrepo.glade.h:4
-msgid "Configure _proxy"
-msgstr ""
-
-#: tmp/addrepo.glade.h:5
-msgid ""
-"HTTP/FTP\n"
-"CD/DVD\n"
-"NFS\n"
-"Hard Drive"
-msgstr ""
-
-#: tmp/addrepo.glade.h:9
-msgid ""
-"Please provide the configuration information for this software repository."
-msgstr ""
-
-#: tmp/addrepo.glade.h:10
-msgid "Proxy U_RL (host:port)"
-msgstr ""
-
-#: tmp/addrepo.glade.h:11
-msgid "Proxy pass_word"
-msgstr ""
-
-#: tmp/addrepo.glade.h:12
-msgid "Proxy u_sername"
-msgstr ""
-
-#: tmp/addrepo.glade.h:13
-msgid "Repository _URL"
-msgstr ""
-
-#: tmp/addrepo.glade.h:14
-msgid "Select A Directory"
-msgstr ""
-
-#: tmp/addrepo.glade.h:15
-msgid "URL is a _mirror list"
-msgstr ""
-
-#: tmp/addrepo.glade.h:16
-msgid "_Directory"
-msgstr ""
-
-#: tmp/addrepo.glade.h:17
-msgid "_Options"
-msgstr ""
-
-#: tmp/addrepo.glade.h:18
-msgid "_Partition"
-msgstr ""
-
-#: tmp/addrepo.glade.h:19
-msgid "_Path"
-msgstr ""
-
-#: tmp/addrepo.glade.h:20
-msgid "_Server"
-msgstr ""
-
-#: tmp/anaconda.glade.h:1
-msgid "Reboo_t"
-msgstr ""
-
-#: tmp/anaconda.glade.h:3
-msgid "_Next"
-msgstr ""
-
-#: tmp/autopart.glade.h:1
-msgid "<b>Resize _target (in MB):</b>"
-msgstr ""
-
-#: tmp/autopart.glade.h:3
-msgid "Re_view and modify partitioning layout"
-msgstr ""
-
-#: tmp/autopart.glade.h:4
-msgid "Volume to Resize"
-msgstr ""
-
-#: tmp/autopart.glade.h:5
-msgid "What drive would you like to _boot this installation from?"
-msgstr ""
-
-#: tmp/autopart.glade.h:6
-msgid ""
-"Which partition would you like to resize to make room for your installation?"
-msgstr ""
-
-#: tmp/autopart.glade.h:7
-msgid "_Advanced storage configuration"
-msgstr ""
-
-#: tmp/autopart.glade.h:8
-msgid "_Encrypt system"
-msgstr ""
-
-#: tmp/autopart.glade.h:10
-msgid "_Select the drive(s) to use for this installation."
-msgstr ""
-
-#: tmp/blwhere.glade.h:1
-msgid "/boot"
-msgstr ""
-
-#: tmp/blwhere.glade.h:2
-msgid "BIOS Drive Order"
-msgstr ""
-
-#: tmp/blwhere.glade.h:3
-msgid "Boot loader device"
-msgstr ""
-
-#: tmp/blwhere.glade.h:4
-msgid "First BIOS drive:"
-msgstr ""
-
-#: tmp/blwhere.glade.h:5
-msgid "Fourth BIOS drive:"
-msgstr ""
-
-#: tmp/blwhere.glade.h:6
-msgid "MBR"
-msgstr ""
-
-#: tmp/blwhere.glade.h:7
-msgid "Second BIOS drive:"
-msgstr ""
-
-#: tmp/blwhere.glade.h:8
-msgid "Third BIOS drive:"
-msgstr ""
-
-#: tmp/blwhere.glade.h:9
-msgid "Where would you like to install the boot loader for your system?"
-msgstr ""
-
-#: tmp/detailed-dialog.glade.h:1
-msgid "Info"
-msgstr ""
-
-#: tmp/detailed-dialog.glade.h:2
-msgid "_Details"
-msgstr ""
-
-#: tmp/exnSave.glade.h:1
-msgid "Bug _description"
-msgstr ""
-
-#: tmp/exnSave.glade.h:2
-msgid "Destination _file"
-msgstr ""
-
-#: tmp/exnSave.glade.h:3
-msgid ""
-"Local storage device\n"
-"Local disk\n"
-"Remote server (scp)"
-msgstr ""
-
-#: tmp/exnSave.glade.h:6
-msgid "Please choose a destination for saving your traceback."
-msgstr ""
-
-#: tmp/exnSave.glade.h:8
-msgid "Select A File"
-msgstr ""
-
-#: tmp/exnSave.glade.h:9
-msgid "_Host (host:port)"
-msgstr ""
-
-#: tmp/exnSave.glade.h:10
-msgid "_Password"
-msgstr ""
-
-#: tmp/exnSave.glade.h:11
-msgid "_User name"
-msgstr ""
-
-#: tmp/instkey.glade.h:2
-#, no-c-format
-msgid "%(instkey)s:"
-msgstr ""
-
-#: tmp/instkey.glade.h:4
-#, no-c-format
-msgid "Please enter your %(instkey)s."
-msgstr ""
-
-#: tmp/iscsi-config.glade.h:1
-msgid "<b>CHAP _Password:</b>"
-msgstr ""
-
-#: tmp/iscsi-config.glade.h:2
-msgid "<b>CHAP _Username:</b>"
-msgstr ""
-
-#: tmp/iscsi-config.glade.h:3
-msgid "<b>Reverse CHAP P_assword:</b>"
-msgstr ""
-
-#: tmp/iscsi-config.glade.h:4
-msgid "<b>Reverse CHAP U_sername:</b>"
-msgstr ""
-
-#: tmp/iscsi-config.glade.h:5
-msgid "<b>_Target IP Address:</b>"
-msgstr ""
-
-#: tmp/iscsi-config.glade.h:6
-msgid "<b>iSCSI Initiator _Name:</b>"
-msgstr ""
-
-#: tmp/iscsi-config.glade.h:9
-msgid "_Add target"
-msgstr ""
-
-#: tmp/liveinst.desktop.in.h:1
-msgid "Install"
-msgstr ""
-
-#: tmp/liveinst.desktop.in.h:2
-msgid "Install the live CD to your hard disk"
-msgstr ""
-
-#: tmp/liveinst.desktop.in.h:3
-msgid "Install to Hard Drive"
-msgstr ""
-
-#: tmp/lukspassphrase.glade.h:1
-msgid ""
-"Also add this passphrase to all existing encrypted devices to streamline the "
-"boot process"
-msgstr ""
-
-#: tmp/lukspassphrase.glade.h:2
-msgid ""
-"Choose a passphrase for this encrypted partition. You will be prompted for "
-"the passphrase during system boot."
-msgstr ""
-
-#: tmp/lukspassphrase.glade.h:3
-msgid "Confirm passphrase:"
-msgstr ""
-
-#: tmp/lukspassphrase.glade.h:4
-msgid "Enter passphrase for encrypted partition"
-msgstr ""
-
-#: tmp/lukspassphrase.glade.h:5
-msgid "Enter passphrase:"
-msgstr ""
-
-#: tmp/netconfig.glade.h:2
-msgid "<b>Gateway:</b>"
-msgstr ""
-
-#: tmp/netconfig.glade.h:3
-msgid "<b>IPv4 Address:</b>"
-msgstr ""
-
-#: tmp/netconfig.glade.h:4
-msgid "<b>IPv6 Address:</b>"
-msgstr ""
-
-#: tmp/netconfig.glade.h:5
-msgid "<b>Nameserver:</b>"
-msgstr ""
-
-#: tmp/netconfig.glade.h:6
-msgid "<b>_Interface:</b>"
-msgstr ""
-
-#: tmp/netconfig.glade.h:7
-msgid "Enable IPv_4 support"
-msgstr ""
-
-#: tmp/netconfig.glade.h:8
-msgid "Enable IPv_6 support"
-msgstr ""
-
-#: tmp/netconfig.glade.h:11
-msgid "Use _dynamic IP configuration (DHCP)"
-msgstr ""
-
-#: tmp/network.glade.h:1
-msgid "Hostname:"
-msgstr ""
-
-#: tmp/network.glade.h:2
-msgid ""
-"Please name this computer. The hostname identifies the computer on a "
-"network."
-msgstr ""
-
-#: tmp/tasksel.glade.h:1
-msgid "Customize _later"
-msgstr ""
-
-#: tmp/tasksel.glade.h:2
-msgid ""
-"Please select any additional repositories that you want to use for software "
-"installation."
-msgstr ""
-
-#: tmp/tasksel.glade.h:4
-#, no-c-format
-msgid ""
-"The default installation of %s includes a set of software applicable for "
-"general internet usage. What additional tasks would you like your system to "
-"support?"
-msgstr ""
-
-#: tmp/tasksel.glade.h:5
-msgid ""
-"You can further customize the software selection now, or after install via "
-"the software management application."
-msgstr ""
-
-#: tmp/tasksel.glade.h:6
-msgid "_Add additional software repositories"
-msgstr ""
-
-#: tmp/tasksel.glade.h:7
-msgid "_Customize now"
-msgstr ""
-
-#: tmp/tasksel.glade.h:8
-msgid "_Modify repository"
-msgstr ""
-
-#: tmp/zfcp-config.glade.h:1
-msgid "<b>Device number:</b>"
-msgstr ""
-
-#: tmp/zfcp-config.glade.h:2
-msgid "<b>FCP LUN:</b>"
-msgstr ""
-
-#: tmp/zfcp-config.glade.h:3
-msgid "<b>WWPN:</b>"
-msgstr ""
-
-#: tmp/zfcp-config.glade.h:4
-msgid "Add FCP device"
-msgstr ""
-
-#. generated from lang-table
-msgid "Afrikaans"
-msgstr ""
-
-#. generated from lang-table
-msgid "Arabic"
-msgstr ""
-
-#. generated from lang-table
-msgid "Assamese"
-msgstr ""
-
-#. generated from lang-table
-msgid "Bengali"
-msgstr ""
-
-#. generated from lang-table
-msgid "Bengali(India)"
-msgstr ""
-
-#. generated from lang-table
-msgid "Bulgarian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Catalan"
-msgstr ""
-
-#. generated from lang-table
-msgid "Chinese(Simplified)"
-msgstr ""
-
-#. generated from lang-table
-msgid "Chinese(Traditional)"
-msgstr ""
-
-#. generated from lang-table
-msgid "Croatian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Czech"
-msgstr ""
-
-#. generated from lang-table
-msgid "Danish"
-msgstr ""
-
-#. generated from lang-table
-msgid "Dutch"
-msgstr ""
-
-#. generated from lang-table
-msgid "English"
-msgstr ""
-
-#. generated from lang-table
-msgid "Estonian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Finnish"
-msgstr ""
-
-#. generated from lang-table
-msgid "French"
-msgstr ""
-
-#. generated from lang-table
-msgid "German"
-msgstr ""
-
-#. generated from lang-table
-msgid "Greek"
-msgstr ""
-
-#. generated from lang-table
-msgid "Gujarati"
-msgstr ""
-
-#. generated from lang-table
-msgid "Hebrew"
-msgstr ""
-
-#. generated from lang-table
-msgid "Hindi"
-msgstr ""
-
-#. generated from lang-table
-msgid "Hungarian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Icelandic"
-msgstr ""
-
-#. generated from lang-table
-msgid "Iloko"
-msgstr ""
-
-#. generated from lang-table
-msgid "Indonesian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Italian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Japanese"
-msgstr ""
-
-#. generated from lang-table
-msgid "Kannada"
-msgstr ""
-
-#. generated from lang-table
-msgid "Korean"
-msgstr ""
-
-#. generated from lang-table
-msgid "Macedonian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Maithili"
-msgstr ""
-
-#. generated from lang-table
-msgid "Malay"
-msgstr ""
-
-#. generated from lang-table
-msgid "Malayalam"
-msgstr ""
-
-#. generated from lang-table
-msgid "Marathi"
-msgstr ""
-
-#. generated from lang-table
-msgid "Nepali"
-msgstr ""
-
-#. generated from lang-table
-msgid "Norwegian(Bokmål)"
-msgstr ""
-
-#. generated from lang-table
-msgid "Northern Sotho"
-msgstr ""
-
-#. generated from lang-table
-msgid "Oriya"
-msgstr ""
-
-#. generated from lang-table
-msgid "Persian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Polish"
-msgstr ""
-
-#. generated from lang-table
-msgid "Portuguese"
-msgstr ""
-
-#. generated from lang-table
-msgid "Portuguese(Brazilian)"
-msgstr ""
-
-#. generated from lang-table
-msgid "Punjabi"
-msgstr ""
-
-#. generated from lang-table
-msgid "Romanian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Russian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Serbian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Serbian(Latin)"
-msgstr ""
-
-#. generated from lang-table
-msgid "Sinhala"
-msgstr ""
-
-#. generated from lang-table
-msgid "Slovak"
-msgstr ""
-
-#. generated from lang-table
-msgid "Slovenian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Spanish"
-msgstr ""
-
-#. generated from lang-table
-msgid "Swedish"
-msgstr ""
-
-#. generated from lang-table
-msgid "Tajik"
-msgstr ""
-
-#. generated from lang-table
-msgid "Tamil"
-msgstr ""
-
-#. generated from lang-table
-msgid "Telugu"
-msgstr ""
-
-#. generated from lang-table
-msgid "Turkish"
-msgstr ""
-
-#. generated from lang-table
-msgid "Ukrainian"
-msgstr ""
-
-#. generated from lang-table
-msgid "Vietnamese"
-msgstr ""
-
-#. generated from lang-table
-msgid "Welsh"
-msgstr ""
-
-#. generated from lang-table
-msgid "Zulu"
-msgstr ""
diff --git a/po/boldquot.sed b/po/boldquot.sed
new file mode 100644
index 000000000..4b937aa51
--- /dev/null
+++ b/po/boldquot.sed
@@ -0,0 +1,10 @@
+s/"\([^"]*\)"/“\1”/g
+s/`\([^`']*\)'/‘\1’/g
+s/ '\([^`']*\)' / ‘\1’ /g
+s/ '\([^`']*\)'$/ ‘\1’/g
+s/^'\([^`']*\)' /‘\1’ /g
+s/“”/""/g
+s/“/“/g
+s/”/”/g
+s/‘/‘/g
+s/’/’/g
diff --git a/po/en@boldquot.header b/po/en@boldquot.header
new file mode 100644
index 000000000..fedb6a06d
--- /dev/null
+++ b/po/en@boldquot.header
@@ -0,0 +1,25 @@
+# All this catalog "translates" are quotation characters.
+# The msgids must be ASCII and therefore cannot contain real quotation
+# characters, only substitutes like grave accent (0x60), apostrophe (0x27)
+# and double quote (0x22). These substitutes look strange; see
+# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
+#
+# This catalog translates grave accent (0x60) and apostrophe (0x27) to
+# left single quotation mark (U+2018) and right single quotation mark (U+2019).
+# It also translates pairs of apostrophe (0x27) to
+# left single quotation mark (U+2018) and right single quotation mark (U+2019)
+# and pairs of quotation mark (0x22) to
+# left double quotation mark (U+201C) and right double quotation mark (U+201D).
+#
+# When output to an UTF-8 terminal, the quotation characters appear perfectly.
+# When output to an ISO-8859-1 terminal, the single quotation marks are
+# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to
+# grave/acute accent (by libiconv), and the double quotation marks are
+# transliterated to 0x22.
+# When output to an ASCII terminal, the single quotation marks are
+# transliterated to apostrophes, and the double quotation marks are
+# transliterated to 0x22.
+#
+# This catalog furthermore displays the text between the quotation marks in
+# bold face, assuming the VT100/XTerm escape sequences.
+#
diff --git a/po/en@quot.header b/po/en@quot.header
new file mode 100644
index 000000000..a9647fc35
--- /dev/null
+++ b/po/en@quot.header
@@ -0,0 +1,22 @@
+# All this catalog "translates" are quotation characters.
+# The msgids must be ASCII and therefore cannot contain real quotation
+# characters, only substitutes like grave accent (0x60), apostrophe (0x27)
+# and double quote (0x22). These substitutes look strange; see
+# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
+#
+# This catalog translates grave accent (0x60) and apostrophe (0x27) to
+# left single quotation mark (U+2018) and right single quotation mark (U+2019).
+# It also translates pairs of apostrophe (0x27) to
+# left single quotation mark (U+2018) and right single quotation mark (U+2019)
+# and pairs of quotation mark (0x22) to
+# left double quotation mark (U+201C) and right double quotation mark (U+201D).
+#
+# When output to an UTF-8 terminal, the quotation characters appear perfectly.
+# When output to an ISO-8859-1 terminal, the single quotation marks are
+# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to
+# grave/acute accent (by libiconv), and the double quotation marks are
+# transliterated to 0x22.
+# When output to an ASCII terminal, the single quotation marks are
+# transliterated to apostrophes, and the double quotation marks are
+# transliterated to 0x22.
+#
diff --git a/po/insert-header.sin b/po/insert-header.sin
new file mode 100644
index 000000000..b26de01f6
--- /dev/null
+++ b/po/insert-header.sin
@@ -0,0 +1,23 @@
+# Sed script that inserts the file called HEADER before the header entry.
+#
+# At each occurrence of a line starting with "msgid ", we execute the following
+# commands. At the first occurrence, insert the file. At the following
+# occurrences, do nothing. The distinction between the first and the following
+# occurrences is achieved by looking at the hold space.
+/^msgid /{
+x
+# Test if the hold space is empty.
+s/m/m/
+ta
+# Yes it was empty. First occurrence. Read the file.
+r HEADER
+# Output the file's contents by reading the next line. But don't lose the
+# current line while doing this.
+g
+N
+bb
+:a
+# The hold space was nonempty. Following occurrences. Do nothing.
+x
+:b
+}
diff --git a/po/quot.sed b/po/quot.sed
new file mode 100644
index 000000000..0122c4631
--- /dev/null
+++ b/po/quot.sed
@@ -0,0 +1,6 @@
+s/"\([^"]*\)"/“\1”/g
+s/`\([^`']*\)'/‘\1’/g
+s/ '\([^`']*\)' / ‘\1’ /g
+s/ '\([^`']*\)'$/ ‘\1’/g
+s/^'\([^`']*\)' /‘\1’ /g
+s/“”/""/g
diff --git a/po/remove-potcdate.sin b/po/remove-potcdate.sin
new file mode 100644
index 000000000..2436c49e7
--- /dev/null
+++ b/po/remove-potcdate.sin
@@ -0,0 +1,19 @@
+# Sed script that remove the POT-Creation-Date line in the header entry
+# from a POT file.
+#
+# The distinction between the first and the following occurrences of the
+# pattern is achieved by looking at the hold space.
+/^"POT-Creation-Date: .*"$/{
+x
+# Test if the hold space is empty.
+s/P/P/
+ta
+# Yes it was empty. First occurrence. Remove the line.
+g
+d
+bb
+:a
+# The hold space was nonempty. Following occurrences. Do nothing.
+x
+:b
+}