diff options
author | Matt Wilson <msw@redhat.com> | 2001-03-07 16:24:13 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-03-07 16:24:13 +0000 |
commit | 24394effa38fa21cef8e7c31855f17e5a57b26bc (patch) | |
tree | b798cbbacfc9115466b065f563696310ac0e13eb | |
parent | f37142c15140db161f058a859b7fb546fcae9cfe (diff) | |
download | anaconda-24394effa38fa21cef8e7c31855f17e5a57b26bc.tar.gz anaconda-24394effa38fa21cef8e7c31855f17e5a57b26bc.tar.xz anaconda-24394effa38fa21cef8e7c31855f17e5a57b26bc.zip |
1) mark timezone comments for translation (#30869) (po/Makefile)
2) use them in the timezone widget (gnome-map/timezonemapmodule.c)
3) mark languages for translation (#30865) (po/Makefile)
4) use them in installtime language selection (iw/language_gui.py)
5) ran make update-po on po files to pull in empty translations
-rw-r--r-- | gnome-map/timezonemapmodule.c | 6 | ||||
-rw-r--r-- | iw/language_gui.py | 7 | ||||
-rw-r--r-- | po/Makefile | 10 | ||||
-rw-r--r-- | po/anaconda.pot | 998 | ||||
-rw-r--r-- | po/cs.po | 1005 | ||||
-rw-r--r-- | po/da.po | 1005 | ||||
-rw-r--r-- | po/de.po | 1005 | ||||
-rw-r--r-- | po/es.po | 1005 | ||||
-rw-r--r-- | po/eu_ES.po | 1015 | ||||
-rw-r--r-- | po/fi.po | 1001 | ||||
-rw-r--r-- | po/fr.po | 1005 | ||||
-rw-r--r-- | po/gl.po | 1005 | ||||
-rw-r--r-- | po/hu.po | 1005 | ||||
-rw-r--r-- | po/id.po | 1008 | ||||
-rw-r--r-- | po/is.po | 1005 | ||||
-rw-r--r-- | po/it.po | 1005 | ||||
-rw-r--r-- | po/ja.po | 976 | ||||
-rw-r--r-- | po/ko.po | 979 | ||||
-rw-r--r-- | po/nl.po | 1003 | ||||
-rw-r--r-- | po/no.po | 1005 | ||||
-rw-r--r-- | po/pl.po | 1004 | ||||
-rw-r--r-- | po/pt.po | 1378 | ||||
-rw-r--r-- | po/pt_BR.po | 1000 | ||||
-rw-r--r-- | po/ro.po | 1005 | ||||
-rw-r--r-- | po/ru.po | 1005 | ||||
-rw-r--r-- | po/sk.po | 1004 | ||||
-rw-r--r-- | po/sl.po | 1005 | ||||
-rw-r--r-- | po/sr.po | 1004 | ||||
-rw-r--r-- | po/sv.po | 1005 | ||||
-rw-r--r-- | po/tr.po | 1005 | ||||
-rw-r--r-- | po/uk.po | 1005 | ||||
-rw-r--r-- | po/zh.po | 979 |
32 files changed, 24812 insertions, 4640 deletions
diff --git a/gnome-map/timezonemapmodule.c b/gnome-map/timezonemapmodule.c index 0eb7a3d23..f5619ff37 100644 --- a/gnome-map/timezonemapmodule.c +++ b/gnome-map/timezonemapmodule.c @@ -351,12 +351,12 @@ set_hilited (MapData *mapdata, gint index, double item_x, double item_y) gtk_statusbar_pop (GTK_STATUSBAR (mapdata->statusbar), 1); newstr = (char *) malloc (strlen (_(loc->zone)) + strlen (sep) + - ((loc->comment) ? strlen (loc->comment) : 0) + 1); + ((loc->comment) ? strlen (_(loc->comment)) : 0) + 1); strcpy (newstr, _(loc->zone)); if (loc->comment) { strcat (newstr, sep); - strcat (newstr, loc->comment); + strcat (newstr, _(loc->comment)); } gtk_statusbar_push (GTK_STATUSBAR (mapdata->statusbar), 1, newstr); @@ -659,7 +659,7 @@ create_location_list (MapData *mapdata) continue; row[0] = _(loc->zone); - row[1] = loc->comment; + row[1] = _(loc->comment); newrow = gtk_clist_append (GTK_CLIST (mapdata->locationlist), row); gtk_clist_set_row_data (GTK_CLIST (mapdata->locationlist), newrow, GINT_TO_POINTER (i)); diff --git a/iw/language_gui.py b/iw/language_gui.py index c5e879caa..d461965d7 100644 --- a/iw/language_gui.py +++ b/iw/language_gui.py @@ -30,8 +30,7 @@ class LanguageWindow (InstallWindow): def select_row (self, clist, row, col, event): if self.running: - lang = clist.get_text (clist.selection[0], 0) - self.lang = lang + self.lang = clist.get_row_data (clist.selection[0]) # LanguageWindow tag="lang" def getScreen (self): @@ -49,7 +48,9 @@ class LanguageWindow (InstallWindow): default = -1 n = 0 for locale in self.languages: - row = self.language.append ((locale,)) + row = self.language.append ((_(locale),)) + self.language.set_row_data (row, locale) + if locale == self.todo.instTimeLanguage.getCurrent(): self.lang = locale default = n diff --git a/po/Makefile b/po/Makefile index ef3e99dc3..f0e4162e1 100644 --- a/po/Makefile +++ b/po/Makefile @@ -17,14 +17,20 @@ POTFILES = ../*.py ../iw/*.py ../textw/*.py \ ../installclasses/*.py \ ../libfdisk/*.c ../loader/*.c \ ../gnome-map/*.c \ - ../comps/comps-master + +NONPOTFILES = ../comps/comps-master \ + /usr/share/zoneinfo/zone.tab \ + ../lang-table + all: $(FMTCATALOGS) -$(NLSPACKAGE).pot: $(POTFILES) +$(NLSPACKAGE).pot: $(POTFILES) $(NONPOTFILES) xgettext --default-domain=$(NLSPACKAGE) \ --add-comments --keyword=_ --keyword=N_ $(POTFILES) ./compsgettext ../comps/comps-master >> $(NLSPACKAGE).po + cat /usr/share/zoneinfo/zone.tab | cut -f4 | grep "^[a-zA-Z]" | sort | uniq -u | while read line; do echo -e "\n#. generated from zone.tab\nmsgid \"$$line\"\nmsgstr \"\""; done >> $(NLSPACKAGE).po + 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 \ diff --git a/po/anaconda.pot b/po/anaconda.pot index a2ffec1ee..9670a75f9 100644 --- a/po/anaconda.pot +++ b/po/anaconda.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\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" @@ -18,7 +18,7 @@ msgstr "" msgid "Everything" msgstr "" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -59,8 +59,8 @@ msgstr "" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -133,17 +133,17 @@ msgid "" "http://bugzilla.redhat.com/bugzilla" msgstr "" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -152,9 +152,9 @@ msgstr "" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -173,59 +173,59 @@ msgstr "" msgid "Back" msgstr "" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "" @@ -279,17 +279,17 @@ msgstr "" #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -395,7 +395,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -419,7 +419,7 @@ msgstr "" msgid "Choose the languages to be installed:" msgstr "" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "" @@ -439,7 +439,7 @@ msgstr "" msgid "Choose the default language: " msgstr "" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "" @@ -451,7 +451,7 @@ msgstr "" msgid "Upgrade Existing Installation" msgstr "" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "" @@ -484,19 +484,19 @@ msgstr "" msgid "System to Upgrade" msgstr "" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -512,7 +512,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -526,17 +526,17 @@ msgstr "" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -548,7 +548,7 @@ msgid "" "purchase through our web site, http://www.redhat.com/." msgstr "" -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -561,68 +561,68 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." msgstr "" -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." msgstr "" -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -635,13 +635,13 @@ msgid "" "in the Red Hat Linux manuals." msgstr "" -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -652,59 +652,59 @@ msgid "" "http://www.redhat.com/support/manuals/" msgstr "" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "" -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr "" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr "" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr "" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "" -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "" -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -713,176 +713,176 @@ msgid "" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "" -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" @@ -973,7 +973,7 @@ msgid "" "\n" msgstr "" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "" @@ -981,26 +981,26 @@ msgstr "" msgid "Space Needed" msgstr "" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" "\n" msgstr "" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "" @@ -1024,35 +1024,35 @@ msgid "" "checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "" @@ -1285,7 +1285,7 @@ msgid "Total install size: %s" msgstr "" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "" @@ -1656,43 +1656,43 @@ msgstr "" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "" @@ -3388,7 +3388,7 @@ msgstr "" msgid "Error loading ramdisk." msgstr "" -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "" @@ -3479,44 +3479,44 @@ msgstr "" msgid "What type of media contains the packages to be installed?" msgstr "" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "" -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." msgstr "" -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "" #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "" -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "" @@ -3929,10 +3929,694 @@ msgstr "" msgid "Development" msgstr "" -# ../comps/comps-master:998 +# ../comps/comps-master:997 msgid "Kernel Development" msgstr "" -# ../comps/comps-master:1004 +# ../comps/comps-master:1003 msgid "Utilities" msgstr "" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +msgid "Ruthenia" +msgstr "" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +msgid "South Australia" +msgstr "" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +msgid "Tocantins" +msgstr "" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +msgid "English" +msgstr "" + +#. generated from lang-table +msgid "Danish" +msgstr "" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +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 "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 "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: install 7.0\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-02-18 22:30+0100\n" "Last-Translator: Milan Kerslager <kerslage@linux.cz>\n" "Language-Team: Czech <cs@li.org>\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "V¹echno" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Nastala výjimka" @@ -60,8 +60,8 @@ msgstr "Varování" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -146,7 +146,7 @@ msgstr "" "Zkopírujte prosím plné znìní této vyjímky a ohla¹te chybu na adrese " "http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -154,11 +154,11 @@ msgstr "" "Vlo¾te prosím disketu. Celý obsah diskety bude smazán, proto vyberte " "disketu, na které nemáte dùle¾itá data." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Dále" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -167,9 +167,9 @@ msgstr "Dále" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -188,59 +188,59 @@ msgstr "Dále" msgid "Back" msgstr "Zpìt" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Poznámky k vydání" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Zobrazit nápovìdu" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Skrýt nápovìdu" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Dokonèení" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Online nápovìda" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Výbìr jazyka" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Zavøít" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Poznámky k vydání" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Nemohu pøeèíst soubor!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Instalátor Red Hat Linuxu" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Instalaèní shell Red Hat Linuxu" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Instalátor Red Hat Linuxu na %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Instalaèní shell Red Hat Linuxu na %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Instalaèní okno" @@ -296,17 +296,17 @@ msgstr "Nelze pøipojit CDROM." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -423,7 +423,7 @@ msgstr "Vá¹ systém je pøipojen v adresáøi /mnt/sysimage." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -447,7 +447,7 @@ msgstr "Reset" msgid "Choose the languages to be installed:" msgstr "Zvolte jazyky, které mají být nainstalovány:" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Podpora jazykù" @@ -467,7 +467,7 @@ msgstr "Preferovaný jazyk" msgid "Choose the default language: " msgstr "Vyberte preferovaný jazyk: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Výbìr klávesnice" @@ -479,7 +479,7 @@ msgstr "Jaký model klávesnice je pøipojen k tomuto poèítaèi?" msgid "Upgrade Existing Installation" msgstr "Upgrade stávajícího systému" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Typ instalace" @@ -512,20 +512,20 @@ msgstr "Neexistují ¾ádné linuxové oddíly. Tento systém nelze aktualizovat!" msgid "System to Upgrade" msgstr "Upgrade systému" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "RAID oddíl" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Výbìr balíèkù pro aktualizaci" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -544,7 +544,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -558,17 +558,17 @@ msgstr "Ano" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Ne" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -589,7 +589,7 @@ msgstr "" "Pokud jste koupili oficiální Red Hat Linux, nezapomeòte si jej zaregistrovat " "na na¹em WWW serveru http://www.redhat.com/now." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -609,42 +609,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Zru¹it" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Výsledky automatická detekce X" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Neuvedená karta" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Typ videokarty" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Jakou máte videokartu?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Výbìr X serveru" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Pou¾ít server" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Zahájení instalace" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -652,11 +652,11 @@ msgstr "" "Úplný protokol o instalaci bude po restartu systému v souboru " "/tmp/install.log. Tento soubor se mù¾e hodit pro pozdìj¹í referenci." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Zahájení aktualizace" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -664,7 +664,7 @@ msgstr "" "Úplný protokol o aktualizaci bude po restartu systému v souboru " "/tmp/upgrade.log. Tento soubor se mù¾e hodit pro pozdìj¹í referenci." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -672,11 +672,11 @@ msgstr "" " <Enter> pro restart " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Hotovo" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -698,14 +698,14 @@ msgstr "" "Informace o nastavování a pou¾ívání systému jsou obsa¾eny v pøíruèkách pro " "Red Hat Linux." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" " <Enter> pro ukonèení " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -723,59 +723,59 @@ msgstr "" "Informace o dal¹ím nastavování systému jsou obsa¾eny v pøíruèkách dostupných " "na adrese http://www.redhat.com/support/manuals/" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Instalace balíèku" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Jméno : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Velikost: " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Popis : " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Balíèkù" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bajtù" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Èas" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Celkem :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Hotovo: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Zbývá: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Nápovìda není k dispozici" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Pro tuto instalaci není dostupná ¾ádná nápovìda." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Ulo¾it záznam havárie" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -789,178 +789,178 @@ msgstr "" "chyby, zejména pokud zprávu o chybì nahrajete na disketu.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Ulo¾it" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Ladìní" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> nápovìda | <Tab> mezi polo¾kami | <Mezera> výbìr | <F12> pokraèovat" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> mezi polo¾kami | <Mezera> výbìr | <F12> pokraèovat" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Vítejte" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Nastavení jména poèítaèe" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Nastavení sítì" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Nastavení firewallu" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Nastavení èasové zóny" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Heslo správce systému" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Vytvoøení u¾ivatelského úètu" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autentizace" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Nastavení dokonèeno" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Nastavení SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Nastavení LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatické rozdìlování disku" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Oblast disku" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Ruèní rozdìlování disku" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Velikost koøenové oblasti" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Odkládací" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Varování o boot oddílu" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formátování disku" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Nastavení my¹i" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Defaultní jazyk" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Skupiny balíèkù" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Jednotlivé balíèky" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Závislosti balíèkù" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Nastavení X serveru" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Zaèátek instalace" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Instalace systému" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Zavádìcí disk" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Instalace dokonèena" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Kontrola systému" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Úprava aktualizace" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Zaèátek aktualizace" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Aktualizace systému" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Aktualizace dokonèena" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Zru¹eno" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Z tohoto místa se nelze vrátit k pøedchozímu kroku." @@ -1065,7 +1065,7 @@ msgstr "" "Potøebujete více místa na následujících souborových systémech:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Bod pøipojení" @@ -1073,7 +1073,7 @@ msgstr "Bod pøipojení" msgid "Space Needed" msgstr "Nedostatek místa" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1083,19 +1083,19 @@ msgstr "" "Potøebujete více volných inodù na následujících souborových systémech:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Nedostatek inodù" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Diskový prostor" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Po instalaci" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Provádím poinstalaèní nastavení..." @@ -1122,35 +1122,35 @@ msgstr "" "Spus»te prosím svùj linux a nechte jej, aby disky opravil. Pak korektnì " "systém ukonèete a proveïte èistou aktualizaci." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Videokarta" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Video RAM" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X server" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Nemohu detekovat videokartu" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Plug and play monitor" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Rozsah øádkových kmitoètù (horizontal)" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Rozsah snímkových kmitoètù (vertical)" @@ -1399,7 +1399,7 @@ msgid "Total install size: %s" msgstr "Celkem k instalaci: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Balíèek" @@ -1781,43 +1781,43 @@ msgstr "Instaluji balíèky" msgid "%s KBytes" msgstr "%s KByte" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Velikost" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Popis" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Prùbìh balíèku: " -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Celkový prùbìh: " -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Stav instalace" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Balíèky" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Èas" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Celkem" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Hotovo" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Zbývá" @@ -3743,7 +3743,7 @@ msgstr "Zavádím ramdisk %s..." msgid "Error loading ramdisk." msgstr "Chyba pøi zavádìní ramdisku." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Nelze èíst adresáø %s: %s" @@ -3843,19 +3843,19 @@ msgstr "Jaký druh média obsahuje disk pro zotavení?" msgid "What type of media contains the packages to be installed?" msgstr "Na jakém druhu média jsou balíèky, které chcete instalovat?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Na zavádìcí disketì nelze nalézt soubor ks.cfg." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Disk s aktualiazací" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Pro pokraèování vlo¾te disk s updaty a stisknìte \"Ok\"." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3863,26 +3863,26 @@ msgstr "" "Disketa, kterou jste vlo¾ili, není správnou disketou s ovladaèi pro tuto " "verzi Red Hat Linuxu." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Nelze pøipojit disketu." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Updaty" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Ètení updatù pro anakondu..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "Ve va¹em systému není dostek pamìti pro instalaèní program." -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "Ètení updatù pro anakondu..." @@ -4301,3 +4301,698 @@ msgstr "Vývoj jádra" msgid "Utilities" msgstr "Pomocné nástroje" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autentizace" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Ji¾ní Amerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Umístìní" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Dokonèení" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Dokonèení" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Zbývá" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Hledání" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Dokonèení" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Red Hat 7 installer/anaconda\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-03-01 21:44GMT\n" "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n" "Language-Team: Danish <dansk@klid.dk>\n" @@ -14,7 +14,7 @@ msgstr "" msgid "Everything" msgstr "Altsammen" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Undtagelse hændte" @@ -63,8 +63,8 @@ msgstr "Advarsel" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -150,7 +150,7 @@ msgstr "" "venligst den fulde tekst fra denne hændelse og udfyld en fejlrapport på " "http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -158,11 +158,11 @@ msgstr "" "Indsæt venligst en diskette. Alt indhold på disketten vil blive slettet, så " "vælg disketten med omhu." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Næste" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -171,9 +171,9 @@ msgstr "Næste" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -192,59 +192,59 @@ msgstr "Næste" msgid "Back" msgstr "Tilbage" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Udgivelsesnoter" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Vis hjælp" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Skjul hjælp" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Færdig" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Online-hjælp" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Sprogvalg" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Luk" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Udgivelsesnoter" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Kan ikke læse fil!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux installation" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux installationsskal" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux installerer på %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux installationsskal på %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Installeringsvindue" @@ -300,17 +300,17 @@ msgstr "cd-rom'en kunne ikke monteres." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -428,7 +428,7 @@ msgstr "Dit system er monteret i kataloget /mnt/sysimage" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -452,7 +452,7 @@ msgstr "Nulstil" msgid "Choose the languages to be installed:" msgstr "Vælg de sprogunderstøttelser der skal installeres:" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Understøttelse af sprog" @@ -472,7 +472,7 @@ msgstr "Standard-sprog" msgid "Choose the default language: " msgstr "Vælg et standard-sprog" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Tastaturvalg" @@ -484,7 +484,7 @@ msgstr "Hvilken tastaturtype er forbundet til denne maskine?" msgid "Upgrade Existing Installation" msgstr "Opgradér eksisterende installation" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Installationstype" @@ -522,19 +522,19 @@ msgstr "Du har ingen Linux-partitioner. Du kan ikke opgradere dette system!" msgid "System to Upgrade" msgstr "System som skal opgraderes" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "Opgrader patition" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "Påbegynder opgradering af /dev-partitionen" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Vælg selv pakker, som skal opgraderes" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -553,7 +553,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -567,17 +567,17 @@ msgstr "Ja" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nej" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -598,7 +598,7 @@ msgstr "" "Har du købt den officielle Red Hat Linux, husk da at registrere dit køb " "gennem vores webside, http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -617,42 +617,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Annullér" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Resultat af X-test" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Andet kort" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Valg af grafikkort" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Hvilket grafikkort har du?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Valg af X Server" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Vælg en værtsmaskine" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Installation begynder" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -660,11 +660,11 @@ msgstr "" "En komplet log af din installation vil befinde sig i /tmp/install.log efter " "du har genstartet dit system. Du kan beholde denne fil for senere reference." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Opgradér system" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -672,7 +672,7 @@ msgstr "" "En komplet log af din installation vil befinde sig i /tmp/install.log efter " "du har genstartet dit system. Du kan beholde denne fil til senere reference." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -680,11 +680,11 @@ msgstr "" " <Return> for at genstarte " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Færdig" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -706,7 +706,7 @@ msgstr "" "Information om konfiguration og brug af dit Redhat Linux system finder du i " "Red Hat Linux manualerne." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -714,7 +714,7 @@ msgstr "" " <Return> for at afslutte " " " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -732,59 +732,59 @@ msgstr "" "Information om yderligere konfiguration af dit system kan du finde på " "http://www.redhat.com/support/manuals/" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Pakkeinstallation" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Navn : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Størrelse: " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Resumé : " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Pakker" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Byte" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Tid" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Total :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Færdig : " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Tilbage : " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Ingen hjælp tilgængelig" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Ingen hjælp er tilgængelig for denne installation." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Gem krash-information" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -798,178 +798,178 @@ msgstr "" "Red Hat skal rette fejlen.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Gem" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Fejlfind" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> for hjælp | <Tab> imellem punkter | <Mellemrum> vælg | <F12> næste side" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> imellem punkter | <Mellemrum> vælger | <F12> næste side" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Velkommen" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Opsætning af værtsnavn" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Opsætning af Netværk" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Konfiguration af brandmur (firewall)" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Tidszoneopsætning" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "'root'-adgangskode" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Brugerkontiopsætning" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Godkendelse" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Konfiguration er komplet" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO-konfiguration" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO-konfiguration" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatisk partitionering" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partition" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Manuel partitionering" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Rodfilsystemstørrelse" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Automatisk partitionering" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Filsystemsformatering" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Musekonfiguration" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Sprogvalg" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Pakkegrupper" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Individuelle pakker" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Pakkeafhængigheder" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X-konfiguration" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Installationen begynder" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Installér system" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Opstartsdiskette" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Installationen er færdig" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Undersøg system" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Manuel opgradering" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Opgraderingsundersøgelse" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Opgradér system" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Opgradering er færdig" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Annulleret" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Jeg kan ikke gå til forrige trin herfra. Du må prøve igen." @@ -1071,7 +1071,7 @@ msgstr "" "valgt. Du har brug for mere plads på følgende filsystemer:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Monteringspunkt" @@ -1079,7 +1079,7 @@ msgstr "Monteringspunkt" msgid "Space Needed" msgstr "Nødvendig plads" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1089,19 +1089,19 @@ msgstr "" "valgt. Du har brug for mere plads på følgende filsystemer:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Nødvendig plads" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Diskplads" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Efter installation" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Konfigurerer systemet efter installation..." @@ -1128,35 +1128,35 @@ msgstr "" "problemer. Genstart venligst din Linux-installation, lad filsystemerne blive " "tjekket og lukket ordentligt ned for at opgradere." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Grafikkort" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Video-hukommelse" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X-server" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Kunne ikke identificere grafikkort" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Skærm" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "'Plug and Play'-skærm" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Vandret frekvensområde" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Lodret frekvensområde" @@ -1405,7 +1405,7 @@ msgid "Total install size: %s" msgstr "Total størrelse: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Pakke" @@ -1785,43 +1785,43 @@ msgstr "Installerer pakker" msgid "%s KBytes" msgstr "%s KByte" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Størrelse" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Resumé" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Pakkegrupper" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Total :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Status" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Pakker" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Tid" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Total" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Færdig" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Tilbage" @@ -3760,7 +3760,7 @@ msgstr "Indlæser %s ramdisk..." msgid "Error loading ramdisk." msgstr "Fejl ved indlæsning af ramdisk." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Kunne ikke læse katalog %s: %s" @@ -3860,19 +3860,19 @@ msgstr "Hvilken type medium befinder rednings-billedet sig på?" msgid "What type of media contains the packages to be installed?" msgstr "Hvilken type medium befinder pakkerne, som skal installeres, sig på?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Kan ikke finde ks.cfg på opstartsdiskette." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Opdateringsdiskette" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Indsæt din opdateringsdiskette og tryk \"O.k.\" for at fortsætte." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3880,26 +3880,26 @@ msgstr "" "Disketten du indsatte er ikke en gyldig driverdiskette til denne udgave af " "Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Kunne ikke montere diskette." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Opdateringer" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Læser anaconda-opdateringer..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "Du har ikke hukommelse nok til at installere Red Hat på denne maskine." -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "Kører anaconda - vent venligst...\n" @@ -4319,3 +4319,698 @@ msgstr "Kerneudvikling" msgid "Utilities" msgstr "Tilbehør" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Godkendelse" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Sydamerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Placering" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Færdig" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Færdig" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Tilbage" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Søger" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Færdig" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: installer 7.0\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-02-08 19:00+0100\n" "Last-Translator: Claudia Krug <ckrug@redhat.it>\n" "Language-Team: German <de@li.org>\n" @@ -17,7 +17,7 @@ msgstr "" msgid "Everything" msgstr "Alles" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Ausnahmefehler aufgetreten" @@ -69,8 +69,8 @@ msgstr "Warnung" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -156,7 +156,7 @@ msgstr "" "Meldung und reichen Sie unter http://bugzilla.redhat.com/bugzilla einen " "Fehlerbericht ein." -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -164,11 +164,11 @@ msgstr "" "Bitte legen Sie eine Diskette ein. Da diese Diskette vollständig gelöscht " "wird, müssen Sie eine Diskette auswählen, die keine wichtigen Daten enthält." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Weiter" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -177,9 +177,9 @@ msgstr "Weiter" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -198,59 +198,59 @@ msgstr "Weiter" msgid "Back" msgstr "Zurück" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Info zur Version" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Hilfe anzeigen" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Hilfe ausblenden" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Fertigstellen" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Online-Hilfe" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Auswahl der Sprache" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Schließen" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Info zur Version" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Datei kann nicht geladen werden!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux Installer" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux Installations-Shell" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux Installer auf %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux Installation der Shell auf %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Installationsfenster" @@ -306,17 +306,17 @@ msgstr "Die CD-ROM konnte nicht gemountet werden." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -435,7 +435,7 @@ msgstr "Ihr System wurde gemountet unter der /mnt/sysimage Diectory." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -461,7 +461,7 @@ msgid "Choose the languages to be installed:" msgstr "Wählen Sie die Sprachen, die installiert werden sollen" # ../comps/comps-master:499 -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Sprach-Unterstützung" @@ -481,7 +481,7 @@ msgstr "Standardsprache" msgid "Choose the default language: " msgstr "Wählen Sie die Standardsprache aus: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Auswahl der Tastatur" @@ -493,7 +493,7 @@ msgstr "Welcher Tastaturtyp ist an Ihren Computer angeschlossen?" msgid "Upgrade Existing Installation" msgstr "Vorhandene Installation aktualisieren" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Installationstyp" @@ -533,19 +533,19 @@ msgstr "" msgid "System to Upgrade" msgstr "Zu aktualisierendes System" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "Partition aktualisieren" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "Die Aktualisierung der Partition /dev/ wird gestartet..." -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Zu aktualisierende Pakete benutzerdefiniert konfigurieren" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -565,7 +565,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -579,17 +579,17 @@ msgstr "Ja" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nein" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -610,7 +610,7 @@ msgstr "" "Wenn Sie das offizielle Red Hat Linux System erworben haben, registrieren " "Sie es auf unserer Website unter http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -630,42 +630,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Abbrechen" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Suchergebnisse von X" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Nicht aufgeführte Karte" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Auswahl der Grafikkarte" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Welche Grafikkarte verwenden Sie?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Auswahl des X-Servers" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Wählen Sie einen Server aus" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Installation beginnt" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -674,11 +674,11 @@ msgstr "" "ein vollständiges Protokoll der Installation. Sie sollten diese Datei für " "Referenzzwecke dauerhaft speichern." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Upgrade beginnt" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -687,7 +687,7 @@ msgstr "" "Neustart Ihres Systems in /tmp/upgrade.log zur Verfügung. Sie sollten diese " "Datei für Referenzzwecke dauerhaft speichern." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -695,11 +695,11 @@ msgstr "" " <Eingabetaste> zum Neustarten " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Fertig" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -723,7 +723,7 @@ msgstr "" "Informationen zur Konfiguration und Verwendung Ihres Red Hat Linux Systems " "sind in den Red Hat Linux Handbüchern enthalten." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -731,7 +731,7 @@ msgstr "" " <Eingabetaste> zum Beenden " " " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -750,59 +750,59 @@ msgstr "" "Informationen zum weiteren Konfigurieren Ihres Systems sind unter " "http://www.redhat.com/support/manuals/ zu finden." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Installation von Paketen" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Name : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Größe : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Zusammenfassung: " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Pakete" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bytes" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Zeit" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Gesamt :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Abgeschlossen: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Verbleibend: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Hilfe nicht verfügbar" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Für diese Installation ist keine Hilfe verfügbar." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Informationen zum Systemabsturz speichern" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -817,179 +817,179 @@ msgstr "" "dieses Problems.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Speichern" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Debuggen" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> Hilfe | <Tab> Elemente wechseln | <Leer> zum Auswählen | <F12> Weiter" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt+Tab> Elemente wechseln | <Leer> zum Auswählen | <F12> Weiter " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Willkommen" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Rechnernamen konfigurieren" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Netzwerk konfigurieren " -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Firewall Konfiguration" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Zeitzone konfigurieren" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Root-Passwort" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Benutzeraccount einrichten" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Authentifizierung" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Konfiguration abgeschlossen" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO Konfiguration" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO Konfiguration" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatisch partitionieren" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partition" # ../text.py:906 # ../text.py:935 #: ../text.py:955 -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Manuell partitionieren" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Größe des Root-Dateisystems" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Warnung Boot-Partition" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Dateisystem wird formatiert" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Maus Konfiguration" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Standardsprache" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Paketgruppen" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Einzelne Pakete" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Paketabhängigkeiten" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X-Konfiguration" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Installation beginnt" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Installieren des Systems" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Bootdiskette" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Installation abgeschlossen" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "System untersuchen" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Upgrade-Optionen benutzerdefiniert konfigurieren " -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Upgrade beginnt" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "System aktualisieren" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Upgrade abgeschlossen" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Abgebrochen" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Sie können an dieser Stelle nicht zum vorherigen Schritt zurückkehren. " @@ -1102,7 +1102,7 @@ msgstr "" "ausgewählten Pakete zur Verfügung. Sie benötigen auf folgenden Dateisystemen " "mehr Platz: \n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Mount-Point" @@ -1110,7 +1110,7 @@ msgstr "Mount-Point" msgid "Space Needed" msgstr "Benötigter Platz" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1120,19 +1120,19 @@ msgstr "" "ausgewählten Pakete zu installieren. Auf folgenden Dateisystemen benötigen " "Sie mehr Datei-Nodes: \n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Benötigte Nodes" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Festplattenplatz" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Nach erfolgter Installation" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Konfiguration nach erfolgter Installation wird durchgeführt..." @@ -1160,35 +1160,35 @@ msgstr "" "Linux-Installation booten, die Dateisysteme überprüfen lassen und das System " "dann korrekt herunterfahren." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Grafikkarte" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Grafikspeicher" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X-Server" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Grafikkarte konnte nicht erkannt werden" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Bildschirm" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Plug and Play-Bildschirm" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Horizontaler Frequenzbereich" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Vertikaler Frequenzbereich" @@ -1443,7 +1443,7 @@ msgid "Total install size: %s" msgstr "Gesamtgröße der Installation: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Paket" @@ -1826,43 +1826,43 @@ msgstr "Installieren der Pakete" msgid "%s KBytes" msgstr "%s KBytes" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Größe" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Zusammenfassung" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Paketfortschritt" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Gesamtfortschritt :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Status" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Pakete" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Zeit" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Gesamt" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Abgeschlossen" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Verbleibend" @@ -3847,7 +3847,7 @@ msgstr "%s Ramdisk wird geladen..." msgid "Error loading ramdisk." msgstr "Fehler beim Laden der Ramdisk" -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Verzeichnis %s konnte nicht gelesen werden: %s" @@ -3952,21 +3952,21 @@ msgid "What type of media contains the packages to be installed?" msgstr "" "Auf welchem Datenträgertyp sind die zu installierenden Pakete enthalten?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "ks.cfg konnte nicht auf der Bootdiskette gefunden werden." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Update-Diskette" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" "Legen Sie Ihre Update-Diskette ein und klicken Sie auf \"OK\", um " "fortzufahren." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3974,28 +3974,28 @@ msgstr "" "Bei der von Ihnen eingelegten Diskette handelt es sich nicht um eine " "zulässige Updatediskette für diese Version Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Diskette konnte nicht gemountet werden." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Updates" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Anaconda-Updates werden gelesen..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" "Ihnen steht nicht genügend Systemspeicher zur Verfügung, um Red Hat auf " "diesem Rechner installieren zu können. " -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "Anaconda wird gestartet - bitte warten...\n" @@ -4447,6 +4447,701 @@ msgstr "Kernel-Entwicklung" msgid "Utilities" msgstr "Dienstprogramme" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Authentifizierung" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Südamerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Ort" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Fertigstellen" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Fertigstellen" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Verbleibend" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Suchen" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Fertigstellen" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "America/New_York" #~ msgstr "Amerika/New_York" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-01-30 17:00+1\n" "Last-Translator: Tullio Dovera <tdovera@redhat.it>\n" "Language-Team: Spanish <es@li.org>\n" @@ -17,7 +17,7 @@ msgstr "" msgid "Everything" msgstr "Todo" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Ha ocurrido una excepción" @@ -69,8 +69,8 @@ msgstr "Aviso" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -158,7 +158,7 @@ msgstr "" "Por favor copie el texto entero de esta excepción y registre el informe " "sobre el error en http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -166,11 +166,11 @@ msgstr "" "Por favor, introduzca un disco. El contenido de éste será borrado, de modo " "que, por favor, elija el disco cuidadosamente." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Siguiente" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -179,9 +179,9 @@ msgstr "Siguiente" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -200,59 +200,59 @@ msgstr "Siguiente" msgid "Back" msgstr "Anterior" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Notas de Última Hora" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Mostrar Ayuda" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Esconder Ayuda" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Terminar" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Ayuda en línea" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Selección del idioma" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Cerrar" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Notas de Última Hora" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "¡Ha sido imposible cargar el archivo!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Instalador de Red Hat Linux" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Shell de Instalación de Red Hat Linux" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Intalador de Red Hat Linux en %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Shell de Instalación de Red Hat Linux en %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Instalar ventana" @@ -309,17 +309,17 @@ msgstr "No se puede instalar el CDROM." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -436,7 +436,7 @@ msgstr "El sistema está montado bajo el directorio /mnt/sysimage." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -461,7 +461,7 @@ msgid "Choose the languages to be installed:" msgstr "Elija el idioma que quiere instalar:" # ../comps/comps-master:151 -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Soporte para el idioma" @@ -481,7 +481,7 @@ msgstr "Idioma predeterminado" msgid "Choose the default language: " msgstr "Elija un idioma predeterminado." -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Selección del teclado" @@ -493,7 +493,7 @@ msgstr "¿Qué tipo de teclado está instalado en el ordenador?" msgid "Upgrade Existing Installation" msgstr "Actualizar la Instalación existente" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Tipo de Instalación" @@ -533,19 +533,19 @@ msgstr "" msgid "System to Upgrade" msgstr "Sistema a actualizar" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "Actualización de la partición" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "Inicio de la actualización de la partición /dev/" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Personalizar la actualización de los paquetes" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -564,7 +564,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -578,17 +578,17 @@ msgstr "Sí" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "No" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -608,7 +608,7 @@ msgstr "" "Si ha adquirido el producto Oficial Red Hat Linux, asegúrese de registrar su " "compra a través de nuestro sitio web, http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -627,42 +627,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Cancelar" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Resultados de la prueba de vídeo" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "La tarjeta no aparece en la lista" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Selección de la tarjeta vídeo" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "¿Qué tarjeta vídeo tiene?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Selección del servidor X" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Elegir un servidor" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Inicio de la instalación" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -670,11 +670,11 @@ msgstr "" "Encontrará un completo registro de su instalación en /tmp/install.log " "después de reiniciar su sistema. Lo podrá necesitar más tarde." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Inicio de la actualización" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -682,18 +682,18 @@ msgstr "" "Encontrará un completo registro de su actualización en /tmp/upgrade.log " "después de reiniciar el sistema. Lo podrá necesitar más tarde." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" " <Intro> para reinicializar " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Completado" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -716,14 +716,14 @@ msgstr "" "En los manuales de Red Hat Linux encontrará la información para la " "configuración y uso de su sistema." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" " <Intro> para salir " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -741,59 +741,59 @@ msgstr "" "En el capítulo de post-instalación de la Official Red Hat Linux User's Guide " "encontrará más información sobre la configuración de su sistema." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Instalación de los paquetes" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Nombre : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Tamaño : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Sumario:" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Paquetes" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bytes" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Tiempo" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Total :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Completado: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Restante:" -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Ayuda no disponible" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Ayuda no disponible para esta instalación." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Guardar el Volcado de la Avería" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -807,30 +807,30 @@ msgstr "" "programa.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Guardar" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Depurar" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" "<F1> ayuda|<Tab> cambiar entre elementos|<Espacio> seleccionar|<F12> " "siguiente" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" @@ -838,149 +838,149 @@ msgstr "" " <Tab>/<Alt-Tab> entre elementos | <Espacio> seleccione | <F12> siguiente " "pantalla" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Bienvenido a Red Hat Linux" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Configuración del nombre del Host" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Configuración de la Red" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Configuración del Firewall" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Configuración del huso horario" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Contraseña de root" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Configuración de las cuentas de usuario" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autentificación" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Configuración completada" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Configuración de SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Configuración de LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Particionamiento Automático" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partición" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Partición manual" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Tamaño del sistema de archivos Root" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Aviso de particionamiento de arranque" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formateo del sistema de archivos" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Configuración del ratón" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Idioma predeterminado" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Grupo de paquetes" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Paquetes Individuales" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Dependencias de los paquetes" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Configuración de X" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Empieza la instalación" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Instalar el sistema" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Disco de arranque" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Instalación Completada" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Examinar sistema" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Actualización personalizada" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Empezar actualización" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Sistema de actualización" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Actualización Completada" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Cancelada" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "No puede retroceder desde aquí. Tendrá que intentarlo de nuevo. " @@ -1088,7 +1088,7 @@ msgstr "" "seleccionados. Necesita más espacio en los siguientes sistemas de archivo:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Punto de Montaje" @@ -1096,7 +1096,7 @@ msgstr "Punto de Montaje" msgid "Space Needed" msgstr "Espacio necesario" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1107,19 +1107,19 @@ msgstr "" "archivo:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Nodos necesarios" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Espacio en el disco" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Post-instalación" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Configuración post-instalación..." @@ -1146,35 +1146,35 @@ msgstr "" "sistema Linux. Le aconsejamos iniciar la instalación de Linux, controlar el " "sistema de archivos y cerrar el sistema correctamente antes de actualizarlo." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Tarjeta de Vídeo" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Ram de Vídeo" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "Servidor X" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "No puede detectar la tarjeta vídeo" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Rango de frecuencia horizontal" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Rango de frecuencia vertical" @@ -1424,7 +1424,7 @@ msgid "Total install size: %s" msgstr "Tamaño total de la instalación: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Paquetes" @@ -1807,43 +1807,43 @@ msgstr "Instalación de los paquetes" msgid "%s KBytes" msgstr "%s KBytes" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Tamaño" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Sumario" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Progreso de los paquetes:" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Progreso Total :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Estado" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Paquetes" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Tiempo" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Total" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Completado" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Restante" @@ -3792,7 +3792,7 @@ msgstr "Carga de ramdisk %s..." msgid "Error loading ramdisk." msgstr "Error al cargar ramdisk." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "No se pudo leer el directorio %s: %s" @@ -3895,45 +3895,45 @@ msgstr "¿Qué tipo de media contiene la imagen de rescate?" msgid "What type of media contains the packages to be installed?" msgstr "¿Qué tipo de dispositivo contienen los paquetes para ser instalados? " -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "No puede encontrar ks.cfg en el disco de inicio." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Actualiza el Disco" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Introduzca la actualización del disco y pulse \"OK\" para continuar." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." msgstr "El disco introducido no es válido para esta versión de Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Fallo en el montaje de la disquetera." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Actualizaciones" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Lectura de las actualizaciones de anaconda" -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" "No tiene suficiente memoria de sistema para instalar Red Hat en esta máquina." -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "Ejecución de anaconda - por favor espere...\n" @@ -4381,6 +4381,701 @@ msgstr "Desarrolllo del kernel" msgid "Utilities" msgstr "Utilidades" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autentificación" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Sudamérica" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Localización" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Terminar" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Terminar" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Restante" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Buscando" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Terminar" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "America/New_York" #~ msgstr "Europa/Madrid" diff --git a/po/eu_ES.po b/po/eu_ES.po index 9fe85297f..8856cf6d8 100644 --- a/po/eu_ES.po +++ b/po/eu_ES.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 7.1\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-01-10 22:20+1\n" "Last-Translator: Iñaki Larrañaga Murgoitio <blackziggy@freemail.it>\n" "Language-Team: BASQUE <linux-eu@chanae.alphanet.ch>\n" @@ -22,7 +22,7 @@ msgid "Everything" msgstr "Guztiak" # ../exception.py:13 ../text.py:795 -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Ezbeharra Gertatu da" @@ -79,8 +79,8 @@ msgstr "Bilatzen" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -180,7 +180,7 @@ msgstr "" "bidal ezazu mesedez." # ../gui.py:275 ../text.py:810 -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -189,7 +189,7 @@ msgstr "" "izango da, beraz disketea aukeratzerakoan argi ibili." # ../gui.py:365 ../gui.py:605 -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Hurrengoa" @@ -218,7 +218,7 @@ msgstr "Hurrengoa" # ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 # ../textw/userauth_text.py:165 ../textw/userauth_text.py:196 # ../textw/userauth_text.py:287 -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -227,9 +227,9 @@ msgstr "Hurrengoa" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -248,72 +248,72 @@ msgstr "Hurrengoa" msgid "Back" msgstr "Atzera" -# ../gui.py:745 -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Oharrak Zabaldu" - # ../gui.py:367 ../gui.py:609 -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Laguntza Azaldu" # ../gui.py:368 ../gui.py:608 -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Laguntza Ezkutatu" # ../gui.py:369 ../gui.py:607 -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Amaitu" # ../gui.py:372 ../gui.py:635 -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Zuzeneko Laguntza" # ../gui.py:373 ../iw/language_gui.py:10 ../text.py:62 ../text.py:881 # ../text.py:910 -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Hizkuntzaren Hautaketa" # ../libfdisk/gnomefsedit.c:1267 ../libfdisk/gnomefsedit.c:1284 -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Itxi" -#: ../gui.py:573 +# ../gui.py:745 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Oharrak Zabaldu" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" # ../gui.py:571 -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux-eko Ezartzailea" # ../gui.py:575 -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux-eko Ezarketako Agindu-Geruza (shell)" # ../gui.py:586 -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux-eko Ezartzailea %s-ean" # ../gui.py:587 -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux-eko Ezarketa Agindu-Geruza %s-ean" # ../gui.py:682 -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Ezarketa Lehioa" @@ -413,17 +413,17 @@ msgstr "Ezinezkoa CDROM-a lotzea." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -566,7 +566,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -598,7 +598,7 @@ msgid "Choose the languages to be installed:" msgstr "Ezarketako Sortak zein tramankulutan daude?" # ../comps/comps-master:450 -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Ordenagailu Mugikorra Onartu" @@ -628,7 +628,7 @@ msgid "Choose the default language: " msgstr "Hizkuntza bat Hautatu" # ../text.py:118 ../text.py:883 ../text.py:912 -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Teklatu Hautaketa" @@ -643,7 +643,7 @@ msgid "Upgrade Existing Installation" msgstr "Aurrez Ezarritakoa Eguneratu" # ../text.py:194 ../text.py:915 -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Ezarketa Mota" @@ -680,22 +680,22 @@ msgid "System to Upgrade" msgstr "Sistemaren Eguneraketa" # ../libfdisk/newtfsedit.c:208 -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Raid Disko Zatia" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" # ../text.py:283 -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Eguneratzeko Sortak Norberekatu" # ../text.py:284 -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -724,7 +724,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -748,19 +748,19 @@ msgstr "Bai" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Ez" # ../text.py:307 ../text.py:326 -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" # ../text.py:308 -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -782,7 +782,7 @@ msgstr "" "beronen harpidetza egiteaz ziurta zaitez." # ../text.py:327 -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -808,50 +808,50 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Etsi" # ../text.py:374 -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "X frogaketaren emaitzak" # ../text.py:394 ../text.py:414 -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Xafla Zerrendatubarik" # ../text.py:402 -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Bideo-Xafla Hautaketa" # ../text.py:403 -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Zein bideo xafla daukazu?" # ../text.py:416 -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "X-Zerbitzaria Hautaketa" # ../text.py:416 -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Zerbitzaria Hautatu" # ../text.py:483 -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Ezarketa hastera doa" # ../iw/confirm_gui.py:44 ../text.py:484 -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -861,12 +861,12 @@ msgstr "" "zaizu." # ../text.py:495 -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Eguneraketaren Hasiera" # ../iw/confirm_gui.py:40 ../text.py:496 -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -875,19 +875,19 @@ msgstr "" "/tmp/upgrade.log -ean aurki dezakezu. Hau gordeta edukitzea ongi etorriko " "zaizu." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" # ../text.py:513 ../text.py:534 -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Osatuta" # ../iw/congrats_gui.py:33 ../text.py:514 -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -910,14 +910,14 @@ msgstr "" "Red Hat Linux-en egokitzaketa eta erabilkeraren berri Red Hat Linux-eko " "eskuliburuetan aurkituko duzu." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" # ../text.py:535 -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -937,72 +937,72 @@ msgstr "" "Erabiltzailearen Aitzindari Ofizialean aurki dezakezu." # ../text.py:605 -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Sortaren Ezarketa" # ../text.py:607 -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Izena : " # ../text.py:608 -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Neurria : " # ../text.py:609 -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Azalpena: " # ../text.py:635 -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Sortak" # ../text.py:636 -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Byte" # ../text.py:637 -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Denbora" # ../text.py:639 -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Guztira :" # ../text.py:646 -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Osatua: " # ../text.py:656 -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Gainerakoa: " # ../text.py:753 -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Laguntza Eskuragarririk ez dago" # ../text.py:754 -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Aukera honentzako Laguntza eskuragarririk ez dago." # ../text.py:809 -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Akats Iraulketa Gorde" # ../text.py:820 -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -1017,27 +1017,27 @@ msgstr "" "\n" # ../text.py:827 ../text.py:830 -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Gorde" # ../text.py:827 ../text.py:828 -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Akats-Azterketa" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" # ../text.py:841 -#: ../text.py:1005 +#: ../text.py:999 #, fuzzy msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2000 Red Hat, Inc." # ../text.py:844 -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" @@ -1045,7 +1045,7 @@ msgstr "" "<F12> hurrengo pantaila " # ../text.py:846 -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" @@ -1054,191 +1054,191 @@ msgstr "" # ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:38 ../text.py:879 # ../text.py:914 -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Ongietorria" # ../text.py:885 ../text.py:953 -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Ostalariaren Egituraketa" # ../text.py:887 ../text.py:955 -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Sarearen Egituraketa" # ../iw/lilo_gui.py:20 -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "Lilo Egokitzaketa" # ../text.py:893 ../text.py:961 -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Ordutegi Kokapenaren Egituraketa" # ../text.py:895 ../text.py:963 ../textw/userauth_text.py:9 -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Sistemako Arduradunaren (root) Pasahitza" # ../text.py:897 ../text.py:965 ../textw/userauth_text.py:172 -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Erabiltzailearen Egituraketa" # ../text.py:899 ../text.py:967 -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Egiaztaketa" # ../text.py:905 -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Egokitzaketa Osatua" # ../text.py:923 ../textw/silo_text.py:28 ../textw/silo_text.py:101 # ../textw/silo_text.py:213 -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO-ren Egokitzaketa" # ../text.py:929 ../textw/lilo_text.py:33 ../textw/lilo_text.py:84 # ../textw/lilo_text.py:213 -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO-ren Egokitzaketa" # ../text.py:937 -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Disko Zatiketa Berekasa egin" # ../iw/lilo_gui.py:189 ../iw/lilo_gui.py:331 ../iw/silo_gui.py:127 # ../iw/silo_gui.py:279 ../text.py:933 ../text.py:939 #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Disko Zatiketa" # ../text.py:935 -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Disko Zatiteka eskuz egin" # ../text.py:941 ../textw/partitioning_text.py:301 -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Erro Fitxategitzaren Neurria" # ../text.py:943 -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Disko-Trukagunea" # ../iw/rootpartition_gui.py:247 ../iw/rootpartition_gui.py:297 # ../textw/partitioning_text.py:149 -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "Berekasakako Disko Zatiketa" # ../text.py:945 -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Fitxategitza Moldatzen" # ../iw/mouse_gui.py:56 ../text.py:957 ../text.py:959 -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Xagua Egokitzen" # ../gui.py:373 ../iw/language_gui.py:10 ../text.py:62 ../text.py:881 # ../text.py:910 -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "Hizkuntzaren Hautaketa" # ../text.py:969 -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Sorta Taldea" # ../text.py:971 ../text.py:999 -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Bakarkako Sortak" # ../text.py:973 ../textw/packages_text.py:304 -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Sorten Menpekotasuna" # ../iw/xconfig_gui.py:263 ../text.py:975 ../text.py:983 -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X Egokitzaketa" # ../text.py:977 -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Ezarketaren Hasera" # ../text.py:979 -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Sistemaren Ezarketa" # ../text.py:980 ../text.py:982 ../text.py:1003 ../text.py:1005 -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Abiatze Diskoa" # ../text.py:985 -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Ezarketa Osatua" # ../text.py:990 -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Sistema Aztertu" # ../text.py:997 -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Eguneraketa Norberekatua" # ../text.py:1000 -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Eguneraketa Hasi" # ../text.py:1002 -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Sistema Eguneratu" # ../text.py:1006 -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Eguneraketa Osatua" # ../text.py:1039 -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Ezeztatua" # ../text.py:1040 -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Aurreko urratsera joatea ezinezkoa da. Berriz saiatu beharko duzu." @@ -1362,7 +1362,7 @@ msgstr "" "\n" # ../libfdisk/gnomefsedit.c:2992 ../todo.py:1586 -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Loturagunea" @@ -1372,7 +1372,7 @@ msgid "Space Needed" msgstr "Diskoan Lekua behar da" # ../todo.py:1583 -#: ../todo.py:1803 +#: ../todo.py:1805 #, fuzzy msgid "" "You don't appear to have enough file nodes to install the packages you've " @@ -1384,23 +1384,23 @@ msgstr "" "\n" # ../todo.py:1586 -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "Diskoan Lekua behar da" # ../todo.py:1599 -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Diskaren Zabaltegia" # ../todo.py:1634 -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Ezarketa Ondorengoa" # ../todo.py:1635 -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Ezarketa ondorengo egokitzaketa lantzen..." @@ -1432,42 +1432,42 @@ msgstr "" "eguneratzeko, sistema era antolatu batean itzali." # ../iw/xconfig_gui.py:10 ../xf86config.py:867 -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Bideo Xafla" # ../iw/xconfig_gui.py:12 ../xf86config.py:869 -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Bideo memoria" # ../xf86config.py:871 -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X zerbitzaria" # ../xf86config.py:873 -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Bideo xafla ezin ezagutu" # ../iw/xconfig_gui.py:11 ../xf86config.py:880 ../xf86config.py:882 -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitorea" # ../xf86config.py:882 -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Ipini eta Jostatu erako Monitorea" # ../xf86config.py:884 -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Zeharretako maiztasun mugak" # ../xf86config.py:886 -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Goitibeherako maiztasun mugak" @@ -1777,7 +1777,7 @@ msgstr "Ezarketaren Neurri Guztia: %s" # ../iw/dependencies_gui.py:68 ../iw/progress_gui.py:175 # ../textw/packages_text.py:312 #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Sorta" @@ -2258,54 +2258,54 @@ msgid "%s KBytes" msgstr "%s KByte" # ../iw/progress_gui.py:176 ../iw/progress_gui.py:217 -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Neurria" # ../iw/progress_gui.py:177 -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Laburpena" # ../text.py:969 -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Sorta Taldea" # ../text.py:639 -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 #, fuzzy msgid "Total Progress: " msgstr "Guztira :" # ../iw/progress_gui.py:217 -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Egoera" # ../iw/progress_gui.py:217 -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Sortak" # ../iw/progress_gui.py:217 -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Denbora" # ../iw/progress_gui.py:222 -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Guztira" # ../iw/progress_gui.py:223 -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Osatuta" # ../iw/progress_gui.py:224 -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Gainerakoa" @@ -4555,7 +4555,7 @@ msgid "Error loading ramdisk." msgstr "RAM diskoa gaineratzean akatsa." # ../loader/loader.c:2073 -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "%s direktorioa irakurtzean %s akatsa" @@ -4677,22 +4677,22 @@ msgid "What type of media contains the packages to be installed?" msgstr "Ezarketako Sortak zein tramankulutan daude?" # ../loader/loader.c:2027 -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Abiatze disketean 'ks.cfg' ezin izan da aurkitu." # ../loader/loader.c:2135 -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Eguneraketako diskoa" # ../loader/loader.c:2136 -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Jarraitzeko eguneraketa diskete bat sartu eta \"Onartu\" zapaldu." # ../loader/devices.c:244 -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 #, fuzzy msgid "" "The floppy disk you inserted is not a valid update disk for this release of " @@ -4702,7 +4702,7 @@ msgstr "" "du balio." # ../loader/loader.c:2144 -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Disketea lotzerakoan porrot egin du." @@ -4710,21 +4710,21 @@ msgstr "Disketea lotzerakoan porrot egin du." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Eguneraketak" # ../loader/loader.c:2149 -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "'Anaconda'-ren eguneraketak irakurtzen..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" # ../loader/loader.c:2149 -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "'Anaconda'-ren eguneraketak irakurtzen..." @@ -5242,6 +5242,709 @@ msgstr "Kernel-eko Garapenak" msgid "Utilities" msgstr "Hainbat Tresna" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +# ../text.py:899 ../text.py:967 +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Egiaztaketa" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +# ../gnome-map/gglobe-canvas.c:102 +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Hego Amerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +# ../iw/timezone_gui.py:227 +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Lurraldea" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +# ../gui.py:369 ../gui.py:607 +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Amaitu" + +# ../gui.py:369 ../gui.py:607 +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Amaitu" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +# ../iw/progress_gui.py:224 +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Gainerakoa" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +# ../todo.py:857 +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Bilatzen" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +# ../gui.py:369 ../gui.py:607 +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Amaitu" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + # ../gnome-map/gglobe-canvas.c:781 ../gnome-map/timezonemapmodule.c:766 # ../gnome-map/timezonemapmodule.c:768 ../iw/timezone_gui.py:139 #~ msgid "America/New_York" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Install 6.2 \n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-03-01 17:24-0500\n" "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n" "Language-Team: Finnish <linux@sot.com>\n" @@ -21,7 +21,7 @@ msgstr "" msgid "Everything" msgstr "Kaikki" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -62,8 +62,8 @@ msgstr "Varoitus" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -147,17 +147,17 @@ msgid "" "http://bugzilla.redhat.com/bugzilla" msgstr "" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -166,9 +166,9 @@ msgstr "" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -187,62 +187,62 @@ msgstr "" msgid "Back" msgstr "Takaisin" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 #, fuzzy msgid "Close" msgstr "Tyhjennä" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 #, fuzzy msgid "Unable to load file!" msgstr "IO-virhe paikallisessa tiedostossa" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "" -#: ../gui.py:716 +#: ../gui.py:715 #, fuzzy msgid "Red Hat Linux Install Shell" msgstr "Tervetuloa Red Hat Linuxin käyttäjäksi" -#: ../gui.py:727 +#: ../gui.py:726 #, fuzzy, c-format msgid "Red Hat Linux Installer on %s" msgstr "Tervetuloa Red Hat Linuxin käyttäjäksi" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "" -#: ../gui.py:873 +#: ../gui.py:872 #, fuzzy msgid "Install Window" msgstr "Asennuksen loki" @@ -302,17 +302,17 @@ msgstr "Osiota %s ei voitu sijoittaa." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -420,7 +420,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -447,7 +447,7 @@ msgstr "" msgid "Choose the languages to be installed:" msgstr "Valitse asennettavat paketit" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Kirjoitinajuri:" @@ -472,7 +472,7 @@ msgstr "Valitse tarkasteltava ryhmä:" msgid "Choose the default language: " msgstr "Valitse tarkasteltava ryhmä:" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 #, fuzzy msgid "Keyboard Selection" msgstr "Näppäimistötyyppi" @@ -486,7 +486,7 @@ msgstr "" msgid "Upgrade Existing Installation" msgstr "Lilon asennus" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 #, fuzzy msgid "Installation Type" msgstr "Asennusvaiheet" @@ -522,21 +522,21 @@ msgstr "Sinulla ei ole Linuxin osioita. Et voi päivittää tätä järjestelmää!" msgid "System to Upgrade" msgstr "Järjestelmävirhe %d" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Muokkaa osiota" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 #, fuzzy msgid "Customize Packages to Upgrade" msgstr "Valitse päivitettävät paketit" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -555,7 +555,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -569,18 +569,18 @@ msgstr "Kyllä" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Ei" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 #, fuzzy msgid "Red Hat Linux" msgstr "Tervetuloa Red Hat Linuxin käyttäjäksi" -#: ../text.py:445 +#: ../text.py:440 #, fuzzy msgid "" "Welcome to Red Hat Linux!\n" @@ -602,7 +602,7 @@ msgstr "" "Jos olet ostanut Official Red Hat Linuxin, rekisteröidy käyttäjäksi " "WWW-palvelijamme http://www.redhat.sot.com kautta." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -615,48 +615,48 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Peruuta" -#: ../text.py:511 +#: ../text.py:506 #, fuzzy msgid "X probe results" msgstr "Automaattihaku" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "" -#: ../text.py:539 +#: ../text.py:534 #, fuzzy msgid "Video Card Selection" msgstr "Näppäimistötyyppi" -#: ../text.py:540 +#: ../text.py:535 #, fuzzy msgid "Which video card do you have?" msgstr "Mikä näppäimistö sinulla on?" -#: ../text.py:553 +#: ../text.py:548 #, fuzzy msgid "X Server Selection" msgstr "Modulin parametrit" -#: ../text.py:553 +#: ../text.py:548 #, fuzzy msgid "Choose a server" msgstr "Valitse tarkasteltava ryhmä:" -#: ../text.py:625 +#: ../text.py:619 #, fuzzy msgid "Installation to begin" msgstr "Asennusvaiheet" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -664,12 +664,12 @@ msgstr "" "Täydellinen loki asennuksesta kirjoitetaan tiedostoon /tmp/install.log. " "Voit säilyttää sen myöhempiä tarpeita varten." -#: ../text.py:637 +#: ../text.py:631 #, fuzzy msgid "Upgrade to begin" msgstr "Päivityksen loki" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 #, fuzzy msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " @@ -678,17 +678,17 @@ msgstr "" "Täydellinen loki asennuksesta kirjoitetaan tiedostoon /tmp/install.log. " "Voit säilyttää sen myöhempiä tarpeita varten." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Valmis" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -710,13 +710,13 @@ msgstr "" "Järjestelmän konfiguroinnista on tietoja Official Red Hat Linuxin oppaan " "luvussa \"Asennuksen jälkeinen konfigurointi\"" -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -736,65 +736,65 @@ msgstr "" "Järjestelmän konfiguroinnista on tietoja Official Red Hat Linuxin oppaan " "luvussa \"Asennuksen jälkeinen konfigurointi\"" -#: ../text.py:750 +#: ../text.py:744 #, fuzzy msgid "Package Installation" msgstr "Lilon asennus" -#: ../text.py:752 +#: ../text.py:746 #, fuzzy msgid "Name : " msgstr "Jonon nimi:" -#: ../text.py:753 +#: ../text.py:747 #, fuzzy msgid "Size : " msgstr "Koko :" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "" -#: ../text.py:780 +#: ../text.py:774 #, fuzzy msgid " Packages" msgstr "Paketti" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr "" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr "" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "" -#: ../text.py:791 +#: ../text.py:785 #, fuzzy msgid "Completed: " msgstr "Valmis" -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "" -#: ../text.py:913 +#: ../text.py:907 #, fuzzy msgid "Help not available" msgstr "(ei valittavissa)" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -803,30 +803,30 @@ msgid "" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "" -#: ../text.py:1008 +#: ../text.py:1002 #, fuzzy msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <Tab>/<Alt-Tab> vaihtaa elementtiä | <Space> valitsee | <F12> seuraava " -#: ../text.py:1010 +#: ../text.py:1004 #, fuzzy msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " @@ -834,175 +834,175 @@ msgid "" msgstr "" " <Tab>/<Alt-Tab> vaihtaa elementtiä | <Space> valitsee | <F12> seuraava " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 #, fuzzy msgid "Hostname Setup" msgstr "Koneen nimen haku" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 #, fuzzy msgid "Network Setup" msgstr "NFS:n määrittely" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "SCSI-määritykset" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Pääkäyttäjän salasana" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 #, fuzzy msgid "Authentication" msgstr "Määrittele aikavyöhyke" -#: ../text.py:1073 +#: ../text.py:1067 #, fuzzy msgid "Configuration Complete" msgstr "SCSI-määritykset" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 #, fuzzy msgid "SILO Configuration" msgstr "SCSI-määritykset" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 #, fuzzy msgid "LILO Configuration" msgstr "SCSI-määritykset" -#: ../text.py:1105 +#: ../text.py:1099 #, fuzzy msgid "Automatic Partition" msgstr "Muokkaa osiota" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 #, fuzzy msgid "Partition" msgstr "Osioi uudelleen" -#: ../text.py:1109 +#: ../text.py:1103 #, fuzzy msgid "Manually Partition" msgstr "Osioi uudelleen" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 #, fuzzy msgid "Root Filesystem Size" msgstr "Asenna" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "Juuriosio" -#: ../text.py:1119 +#: ../text.py:1113 #, fuzzy msgid "Filesystem Formatting" msgstr "Alustan" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 #, fuzzy msgid "Mouse Configuration" msgstr "SCSI-määritykset" -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "Oletus" -#: ../text.py:1154 +#: ../text.py:1148 #, fuzzy msgid "Package Groups" msgstr "Paketti" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 #, fuzzy msgid "Individual Packages" msgstr "Valitse yksittäisiä paketteja" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 #, fuzzy msgid "Package Dependencies" msgstr "Selvittämättömiä riippuvuuksia" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 #, fuzzy msgid "X Configuration" msgstr "SCSI-määritykset" -#: ../text.py:1162 +#: ../text.py:1156 #, fuzzy msgid "Installation Begins" msgstr "Asennusvaiheet" -#: ../text.py:1164 +#: ../text.py:1158 #, fuzzy msgid "Install System" msgstr "Asenna" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 #, fuzzy msgid "Boot Disk" msgstr "Käynnistyslevyke" -#: ../text.py:1170 +#: ../text.py:1164 #, fuzzy msgid "Installation Complete" msgstr "Asennuspolku" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "" -#: ../text.py:1187 +#: ../text.py:1181 #, fuzzy msgid "Upgrade Begins" msgstr "Päivityksen loki" -#: ../text.py:1189 +#: ../text.py:1183 #, fuzzy msgid "Upgrade System" msgstr "Päivitä järjestelmä" -#: ../text.py:1193 +#: ../text.py:1187 #, fuzzy msgid "Upgrade Complete" msgstr "Päivitä järjestelmä" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Peruutettu" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "En voi siirtyä nyt aikaisempaan vaiheeseen. Yritä uudelleen." @@ -1099,7 +1099,7 @@ msgid "" "\n" msgstr "" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 #, fuzzy msgid "Mount Point" msgstr "Ei liitoskohtaa" @@ -1109,29 +1109,29 @@ msgstr "Ei liitoskohtaa" msgid "Space Needed" msgstr "Uudelleenkäynnistys pakollinen" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" "\n" msgstr "" -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "Uudelleenkäynnistys pakollinen" -#: ../todo.py:1812 +#: ../todo.py:1814 #, fuzzy msgid "Disk Space" msgstr "Levytila" -#: ../todo.py:1847 +#: ../todo.py:1849 #, fuzzy msgid "Post Install" msgstr "Asennus" -#: ../todo.py:1848 +#: ../todo.py:1850 #, fuzzy msgid "Performing post install configuration..." msgstr "SCSI-määritykset" @@ -1157,37 +1157,37 @@ msgid "" "checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "" -#: ../xf86config.py:938 +#: ../xf86config.py:939 #, fuzzy msgid "X server" msgstr "Palvelin" -#: ../xf86config.py:941 +#: ../xf86config.py:942 #, fuzzy msgid "Unable to detect video card" msgstr "Luon käynnistyksen ramlevyn..." -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "" @@ -1451,7 +1451,7 @@ msgid "Total install size: %s" msgstr "%s:n RPM-asennus epäonnistui: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Paketti" @@ -1858,50 +1858,50 @@ msgstr "Asennan" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 #, fuzzy msgid "Size" msgstr "Koko:" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 #, fuzzy msgid "Summary" msgstr "(ei tiivistelmää)" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Paketti" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 #, fuzzy msgid "Status" msgstr "Asennuksen tila" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 #, fuzzy msgid "Packages" msgstr "Paketti" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 #, fuzzy msgid "Total" msgstr "Paikallinen" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 #, fuzzy msgid "Completed" msgstr "Valmis" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 #, fuzzy msgid "Remaining" msgstr "Rakennan uudelleen" @@ -3801,7 +3801,7 @@ msgstr "Lataan lisälevykettä..." msgid "Error loading ramdisk." msgstr "Luon käynnistyksen ramlevyn..." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, fuzzy, c-format msgid "Failed to read directory %s: %s" msgstr "En voi luoda %s: %s\n" @@ -3903,25 +3903,25 @@ msgstr "" msgid "What type of media contains the packages to be installed?" msgstr "Missä tietovälineessä asennettavat paketit ovat?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "En löydä ks.cfg:tä käynnistyslevykkeeltä." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." msgstr "" -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 #, fuzzy msgid "Failed to mount floppy disk." msgstr "En saanut yhteyttä FTP-palvelimeen" @@ -3929,19 +3929,19 @@ msgstr "En saanut yhteyttä FTP-palvelimeen" #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "" -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "" @@ -4412,6 +4412,697 @@ msgstr "Modulin parametrit" msgid "Utilities" msgstr "" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Määrittele aikavyöhyke" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +msgid "South Australia" +msgstr "" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Työasema" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +msgid "English" +msgstr "" + +#. generated from lang-table +msgid "Danish" +msgstr "" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Rakennan uudelleen" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Kaikki" + +#. 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 "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #, fuzzy #~ msgid "Initializing IDE modules..." #~ msgstr "Alustetaan CD-ROM..." @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Installer 7.0\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-01-29 14:33+0100\n" "Last-Translator: Bettina De Monti <bdemonti@redhat.it>\n" "Language-Team: French <fr@li.org>\n" @@ -17,7 +17,7 @@ msgstr "" msgid "Everything" msgstr "Tout" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Une exception s'est produite" @@ -69,8 +69,8 @@ msgstr "Avertissement" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -156,7 +156,7 @@ msgstr "" "d'un bogue. Copiez le texte complet de cette exception et signalez le bogue " "à l'adresse http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -164,11 +164,11 @@ msgstr "" "Insérez une disquette. Tout le contenu du disque va être effacé, choisissez " "donc soigneusement votre disquette." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Suivant" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -177,9 +177,9 @@ msgstr "Suivant" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -198,59 +198,59 @@ msgstr "Suivant" msgid "Back" msgstr "Précédent" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Notes de mise à jour" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Afficher l'aide" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Masquer l'aide" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Terminer" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Aide en ligne" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Sélection de la langue" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Fermer" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Notes de mise à jour" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Impossible de charger le fichier !" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Programme d'installation de Red Hat Linux" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Shell d'installation de Red Hat Linux" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Programme d'installation de Red Hat Linux sur %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Shell d'installation de Red Hat Linux sur %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Fenêtre Install" @@ -306,17 +306,17 @@ msgstr "Le CD-ROM n'a pas pu être monté." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -435,7 +435,7 @@ msgstr "Le système a été monté sous le répertoire /mnt/sysimage." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -461,7 +461,7 @@ msgid "Choose the languages to be installed:" msgstr "Choisir la langue à installer :" # ../comps/comps-master:446 -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Support langue" @@ -481,7 +481,7 @@ msgstr "Langue par défaut" msgid "Choose the default language: " msgstr "Choisir la langue par défaut :" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Sélection du clavier" @@ -493,7 +493,7 @@ msgstr "Quel est le modèle du clavier connecté à cet ordinateur ?" msgid "Upgrade Existing Installation" msgstr "Mise à jour du système existant" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Type d'installation" @@ -534,19 +534,19 @@ msgstr "" msgid "System to Upgrade" msgstr "Système à mettre à jour" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "Mise à jour de la partition" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "Mise à jour de la partition /dev/" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Choix des paquetages à mettre à jour" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -565,7 +565,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -579,17 +579,17 @@ msgstr "Oui" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Non" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -611,7 +611,7 @@ msgstr "" "enregistrer votre achat sur notre site Web à l'adresse " "http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -632,42 +632,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Annuler" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Résultats de la détection X" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Carte inconnue" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Sélection de la carte vidéo" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Quelle carte vidéo utilisez-vous ?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Sélection du serveur X" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Choisir un serveur" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Début de l'installation" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -676,11 +676,11 @@ msgstr "" "/tmp/install.log après le redémarrage de votre système. Vous pouvez " "conserver ce fichier pour le consulter ultérieurement." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Début de la mise à jour" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -689,18 +689,18 @@ msgstr "" "/tmp/upgrade.log après le redémarrage de votre système. Vous pouvez " "conserver ce fichier pour le consulter ultérieurement." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" " Appuyer sur <Quitter> pour redémarrer l'ordinateur" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Terminé" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -723,13 +723,13 @@ msgstr "" "Des informations sur la configuration et l'utilisation de votre système Red " "Hat Linux sont disponibles dans les manuels Red Hat Linux." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr " Appuyer sur <Quitter> pour quitter" -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -747,59 +747,59 @@ msgstr "" "Des informations complémentaires sur la configuration de votre système sont " "disponibles à l'adresse http://www.redhat.com/support/manuals/" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Installation du paquetage" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Nom : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Taille : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Résumé : " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Paquetages" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Octets" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Temps" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Total :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Effectué : " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Restant : " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Aide non disponible" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Aucune aide n'est disponible pour cette installation." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Sauvegarde d'une image système en raison d'un crash" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -812,178 +812,178 @@ msgstr "" "plus tôt. Vous pouvez enregistrer les informations relatives à cette panne " "sur disquette ; cela aidera Red Hat à résoudre le problème.\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Enregistrer" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Déboguer" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> Aide|<Tab> Changer d'élément|<Espace> Sélectionner|<F12> Ecran suivant" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> Changer d'élément|<Espace> Sélectionner|<F12> Ecran suivant" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Bienvenue" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Configuration du nom d'hôte" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Configuration du réseau" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Configuration du pare-feu" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Configuration du fuseau horaire" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Mot de passe root" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Configuration du compte utilisateur" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Authentification" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Configuration terminée" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Configuration de SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Configuration de LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Partitionnement automatique" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partition" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Partitionnement manuel" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Taille du système de fichiers root" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Avertissement : partition d'amorçage" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Création du système de fichiers" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Configuration de la souris" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Langue par défaut" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Groupes de paquetages" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Paquetages individuels" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Dépendances entre les paquetages" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Configuration X" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Début de l'installation" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Installation du système" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Disquette d'amorçage" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Installation terminée" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Analyse du système" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Personnalisation de la mise à jour" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Début de la mise à jour" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Mise à jour du système" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Mise à jour terminée" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Annulé" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Impossible de revenir à l'étape précédente à partir d'ici. Essayer à nouveau." @@ -1094,7 +1094,7 @@ msgstr "" "fichiers suivants : \n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Point de montage" @@ -1102,7 +1102,7 @@ msgstr "Point de montage" msgid "Space Needed" msgstr "Espace nécessaire" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1113,19 +1113,19 @@ msgstr "" "noeuds d'index sur les systèmes de fichiers suivants : \n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Noeuds d'index nécessaires" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Espace disque" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Post-installation" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Exécution de la configuration post-installation..." @@ -1153,35 +1153,35 @@ msgstr "" "système procéder à la vérification des systèmes de fichiers, puis arrêtez " "correctement le système pour effectuer la mise à jour." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Carte vidéo" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Mémoire vidéo" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "Serveur X" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Impossible de détecter la carte vidéo" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Ecran" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Ecran Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Fréquence horizontale" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Fréquence verticale" @@ -1433,7 +1433,7 @@ msgid "Total install size: %s" msgstr "Taille totale de l'installation : %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Paquetage" @@ -1814,43 +1814,43 @@ msgstr "Installation des paquetages" msgid "%s KBytes" msgstr "Ko %s" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Taille" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Résumé" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Etat des paquetages :" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Etat total :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Etat" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Paquetages" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Temps" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Total" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Effectué" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Restant" @@ -3826,7 +3826,7 @@ msgstr "Chargement du disque virtuel %s..." msgid "Error loading ramdisk." msgstr "Erreur lors du chargement du disque virtuel" -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Impossible de lire le répertoire %s : %s" @@ -3931,21 +3931,21 @@ msgstr "Quel type de support contient l'image de secours ?" msgid "What type of media contains the packages to be installed?" msgstr "Quel type de support contient les paquetages à installer ?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Impossible de trouver ks.cfg sur la disquette d'amorçage" -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Disque des mises à jour" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" "Insérez la disquette des mises à jour, puis cliquez sur \"OK\" pour " "continuer." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3953,28 +3953,28 @@ msgstr "" "La disquette que vous avez insérée n'est pas une disquette valide pour cette " "version de Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Impossible de monter la disquette." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Mises à jour" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Lecture des mises à jour anaconda..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" "Vous n'avez pas assez de mémoire système pour installer Red Hat surcet " "ordinateur." -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "Lecture d'anaconda - attendez...\n" @@ -4424,6 +4424,701 @@ msgstr "Développement noyau" msgid "Utilities" msgstr "Utilitaires" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Authentification" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Amérique du Sud" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Zone" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Terminer" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Terminer" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Restant" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Recherche" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Terminer" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "America/New_York" #~ msgstr "Europe/Paris" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: anaconda\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-02-19 22:36+0100\n" "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n" "Language-Team: Galician <trasno@ceu.fi.udc.es>\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "Todo" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Ocorreu unha Excepción" @@ -64,8 +64,8 @@ msgstr "Aviso" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -151,7 +151,7 @@ msgstr "" "Por favor, copie o texto completo desta excepción e envíe un informe de erro " "a http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -159,11 +159,11 @@ msgstr "" "Insira agora un disquete. Tódolos datos que conteña serán borrados, polo " "tanto escóllao con coidado." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Seguinte" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -172,9 +172,9 @@ msgstr "Seguinte" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -193,59 +193,59 @@ msgstr "Seguinte" msgid "Back" msgstr "Anterior" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Notas da Versión" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Amosar Axuda" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Agochar Axuda" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Rematar" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Axuda Online" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Selección de Lingua" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Pechar" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Notas da Versión" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "¡Non é posible cargar o ficheiro!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Instalador de Red Hat Linux" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Shell de Instalación de Red Hat Linux" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Instalador de Red Hat Linux en %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Shell de Instalación de Red Hat Linux en %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Fiestra de Instalación" @@ -301,17 +301,17 @@ msgstr "Non foi posible montar o CDROM." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -428,7 +428,7 @@ msgstr "O seu sistema está montado no directorio /mnt/sysimage." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -452,7 +452,7 @@ msgstr "Restablecer" msgid "Choose the languages to be installed:" msgstr "Escolla as linguas que desexa instalar:" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Soporte de Linguas" @@ -472,7 +472,7 @@ msgstr "Lingua Predeterminada" msgid "Choose the default language: " msgstr "Escolla a lingua predeterminada: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Selección do Teclado" @@ -484,7 +484,7 @@ msgstr "¿Que modelo de teclado ten o seu ordenador?" msgid "Upgrade Existing Installation" msgstr "Actualizar Instalación Existente" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Tipo de Instalación" @@ -517,20 +517,20 @@ msgstr "Non ten ningunha partición Linux. ¡Non pode actualizar este sistema!" msgid "System to Upgrade" msgstr "Sistema para Actualizar" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Partición Raid" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Especificar os Paquetes para Actualizar" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -549,7 +549,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -563,17 +563,17 @@ msgstr "Si" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Non" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -594,7 +594,7 @@ msgstr "" "Se vostede obteu a Red Hat Linux Oficial, asegúrese de rexistrar a súa " "compra na páxina web, http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -613,42 +613,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Cancelar" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Resultados da detección das X" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Tarxeta non Listada" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Selección da Tarxeta Gráfica" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "¿Que tarxeta gráfica ten?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Selección do Servidor X" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Escolla un servidor" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Comezo da instalación" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -657,11 +657,11 @@ msgstr "" "reiniciar o sistema. Pode que queira manter este ficheiro para referencia " "posterior." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Comezo da actualización" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -670,7 +670,7 @@ msgstr "" "reiniciar o sistema. Pode que queira manter este ficheiro para referencia " "posterior." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -678,11 +678,11 @@ msgstr "" " <Enter> para reiniciar " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Completo" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -704,7 +704,7 @@ msgstr "" "A información sobre a configuración e uso do seu sistema Red Hat Linux está " "dispoñible nos manuais de Red Hat Linux." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -712,7 +712,7 @@ msgstr "" " <Enter> para saír " " " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -730,59 +730,59 @@ msgstr "" "A información para configurar máis adiante o seu sistema está dispoñible en " "http://www.redhat.com/support/manuals/" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Instalación de Paquetes" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Nome : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Tamaño : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Resume : " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Paquetes" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bytes" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Tempo" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Total :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Completado: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Falta: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Axuda non dispoñible" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Non hai axuda dispoñible para esta instalación." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Gardar o Envorcado do Erro" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -796,179 +796,179 @@ msgstr "" "axudará a Red Hat a arranxar o problema.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Gardar" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Depuración" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> axuda | <Tab> entre elementos | <Espacio> escoller | <F12> seg. " "pantalla" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> entre elementos | <Espacio> escoller | <F12> seg. pantalla" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Benvido" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Configuración do Nome da máquina" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Configuración da Rede" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Configuración do Firewall" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Configuración da Zona Horaria" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Contrasinal de Root" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Configuración das Contas de Usuario" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autenticación" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Configuración Completa" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Configuración do SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Configuración do LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Particionar Automáticamente" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partición" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Particionar Manualmente" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Tamaño do Sistema de Ficheiros Raíz" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Intercambio" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Aviso da Partición de Arrinque" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formatado dos Sistemas de Ficheiros" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Configuración do Rato" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Lingua Predeterminada" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Grupos de Paquetes" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Paquetes Individuais" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Dependencias de Paquetes" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Configuración das X" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "A Instalación Comeza" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Instalar Sistema" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Disquete de Arrinque" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Instalación Completa" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Examinar Sistema" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Personalizar a Actualización" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "A Actualización Comeza" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Actualizar Sistema" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Actualización Completa" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Cancelado" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Non é posible voltar ós pasos anteriores dende aquí. Terá que tentar de novo." @@ -1075,7 +1075,7 @@ msgstr "" "Necesita máis espacio nos seguintes sistemas de ficheiros:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Punto de Montaxe" @@ -1083,7 +1083,7 @@ msgstr "Punto de Montaxe" msgid "Space Needed" msgstr "Espacio Necesario" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1094,19 +1094,19 @@ msgstr "" "ficheiros:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Nodos Necesarios" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Espacio de Disco" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Pos-Instalación" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Facendo as configuracións de pos-instalación..." @@ -1133,35 +1133,35 @@ msgstr "" "limpamente. Por favor, inicie o seu sistema Linux, deixe que que se " "verifiquen os sistemas de ficheiros, e reinicie limpamente para actualizar." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Tarxeta Gráfica" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Memoria da Tarxeta Gráfica" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "Servidor X" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Non se pode detectar a tarxeta gráfica" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Intervalo de frecuencias horizontais" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Intervalo de frecuencias verticais" @@ -1409,7 +1409,7 @@ msgid "Total install size: %s" msgstr "Tamaño total da instalación: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Paquete" @@ -1791,43 +1791,43 @@ msgstr "Instalando Paquetes" msgid "%s KBytes" msgstr "%s KBytes" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Tamaño" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Resume" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Evolución dos Paquetes: " -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Evolución Total: " -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Estado" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Paquetes" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Tempo" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Total" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Completado" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Falta" @@ -3770,7 +3770,7 @@ msgstr "Cargando o disco RAM %s..." msgid "Error loading ramdisk." msgstr "Erro ó cargar o disco RAM." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Fallo ó ler o directorio %s: %s" @@ -3871,20 +3871,20 @@ msgstr "¿Que tipo de dispositivo contén a imaxe de rescate?" msgid "What type of media contains the packages to be installed?" msgstr "¿Que tipo de dispositivo contén os paquetes para instalar?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Non se atopa ks.cfg no disquete de arrinque." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Disco de Actualizacións" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" "Insira o disquete de actualizacións e prema \"Aceptar\" para continuar." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3892,27 +3892,27 @@ msgstr "" "O disquete que inseriu non é un disquete de actualización válido para esta " "versión de Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Fallo ó montar o disquete." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Actualizacións" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Lendo as actualizacións de anaconda..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" "Non ten memoria de sistema dabondo para instalar Red Hat nesta máquina." -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "Lendo as actualizacións de anaconda..." @@ -4334,3 +4334,698 @@ msgstr "Desenvolvemento do Núcleo" msgid "Utilities" msgstr "Utilidades" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autenticación" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "América do Sur" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Lugar" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Rematar" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Rematar" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Falta" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Buscando" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Rematar" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: install\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-08-17 11:34+0200\n" "Last-Translator: László Németh <nemeth@qwertynet.hu>\n" "Language-Team: Hungarian\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "Minden" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Kivétel történt" @@ -55,8 +55,8 @@ msgstr "Keresés" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -136,7 +136,7 @@ msgstr "" "le a kívétel teljes szövegét, és jelentse a hibát a " "http://bugzilla.redhat.com/bugzilla címen." -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -144,11 +144,11 @@ msgstr "" "Most helyezzen be egy floppyt. A lemez teljes tartalma törlésre kerül, ehhez " "tartsa magát." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Következõ" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -157,9 +157,9 @@ msgstr "Következõ" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -178,59 +178,59 @@ msgstr "Következõ" msgid "Back" msgstr "Vissza" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Súgó megjelenítése" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Súgó elrejtése" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Befejezés" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Online súgó" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Nyelv kiválasztás" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Bezár" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux Telepítõ" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux Telepítõ Shell" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux Telepítõ: %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux Telepítõ Shell: %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Telepõ ablak" @@ -286,17 +286,17 @@ msgstr "A CDROM-ot nem lehet mountolni." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -405,7 +405,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -432,7 +432,7 @@ msgstr "_Alaphelyzet" msgid "Choose the languages to be installed:" msgstr "Milyen típusú médián vannak a telepítendõ csomagok?" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Laptop támogatás" @@ -457,7 +457,7 @@ msgstr "Válasszon egy nyelvet" msgid "Choose the default language: " msgstr "Válasszon egy nyelvet" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Billentyûzet kiválasztás" @@ -469,7 +469,7 @@ msgstr "Milyen típusú billentyûzet van a géphez kötve?" msgid "Upgrade Existing Installation" msgstr "Meglévõ rendszer frissítése" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "A telepítendõ rendszer típusa" @@ -502,20 +502,20 @@ msgstr "Nincsenek Linux partíciók. Ez a rendszer nem frissíthetõ!" msgid "System to Upgrade" msgstr "Frissítendõ rendszer" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Raid partíció" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Válassza ki a frissítendõ csomagokat" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -534,7 +534,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -548,17 +548,17 @@ msgstr "Igen" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nem" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -578,7 +578,7 @@ msgstr "" "Amennyiben az Official Red Hat Linux csomagot vette meg, mindenképpen " "regisztrálja vásárlását a http://www.redhat.com web címen." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -597,42 +597,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Mégsem" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "X keresés eredménye:" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Ismeretlen kártya" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Videokártya kiválasztás" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Milyen videokártyája van?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "X szerver kiválasztás" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Válasszon egy szervert" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Telepítés elkezdése" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -641,11 +641,11 @@ msgstr "" "file-ban a rendszer újraindítása után. Késõbb esetleg szüksége lehet erre a " "file-ra." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Frissítés kezdése" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -654,17 +654,17 @@ msgstr "" "file-ban a rendszer újraindítása után. Késõbb esetleg szüksége lehet erre a " "file-ra." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Kész" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -687,13 +687,13 @@ msgstr "" "A Red Hat Linux rendszer beállításáról és használatáról a Red Hat Linux " "kézikönyvekben olvashat." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -712,59 +712,59 @@ msgstr "" "A rendszer további beállításáról az Official Red Hat Linux User's Guide címû " "könyv \"post install\" fejezetében olvashat." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Csomagok telepítése" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Név : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Méret : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Leírás : " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Csomagok" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Byte-ok" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Idõ" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Összes :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Kész : " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Hátralévõ: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Nincs súgó" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Nincsen súgó ehhez a teleptéshez." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Crash Dump mentése" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -777,181 +777,181 @@ msgstr "" "hibát leíró információ floppy lemezre menthetõ, ez a Red Hat segítségére " "lesz a hiba kijavításában.\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Mentés" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Debug" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> Súgó |<Tab> elemek között |<Space> kiválaszt |<F12> következõ képernyõ" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<AltTab> elemek között |<Space> kiválaszt |<F12> következõ képernyõ " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Üdvözöljük" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Host név beállítás" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Hálózat beállítás" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "LILO beállítás" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Idõzóna beállítás" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Root jelszó" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Felhasználó account beállítás" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Azonosítás" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Beállítás kész" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO beállítás" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO beállítás" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatikus Particionálás" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partíció" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Kézi particionálás" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Root filerendszer méret" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "Automatikus Particionálás" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Filerendszer Formázás" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Egér beállítás" -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "Nyelv kiválasztás" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Csomag csoportok" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Különálló csomagok" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Csomag függõségek" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X beállítás" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Telepítés indul" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Rendszer telepítése" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Boot lemez" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Telepítés kész" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Rendszer vizsgálata" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Egyéni frissítés" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Frissítés kezdése" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Rendszer frissítés" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Frissítés kész" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Leállítva" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Innen nem tudok visszalépni. Sajna újra kell próbálkoznia." @@ -1046,7 +1046,7 @@ msgstr "" "Nincsen elegendõ lemezterülete a kiválasztott csomagok telepítéséhez. A " "következõ filerendszereken van szükség több helyre:\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Mount pont" @@ -1054,7 +1054,7 @@ msgstr "Mount pont" msgid "Space Needed" msgstr "Szükséges hely" -#: ../todo.py:1803 +#: ../todo.py:1805 #, fuzzy msgid "" "You don't appear to have enough file nodes to install the packages you've " @@ -1064,20 +1064,20 @@ msgstr "" "Nincsen elegendõ lemezterülete a kiválasztott csomagok telepítéséhez. A " "következõ filerendszereken van szükség több helyre:\n" -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "Szükséges hely" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Lemez terület" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Telepítés utáni szakasz" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Telepítés utáni konfigurálás..." @@ -1104,35 +1104,35 @@ msgstr "" "Kérem indítsa el a Linux rendszerét, ellenõriztesse a filerendszereket, majd " "tisztán állítsa le a rendszert, a frissítés megkezdéséhez." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Videokártya" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Video RAM" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X szerver" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Nem találok videokártyát" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Plug and Play monitor" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Vízszintes eltérítési frekvencia-tartomány" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Függõleges eltérítési frekvencia-tartomány" @@ -1382,7 +1382,7 @@ msgid "Total install size: %s" msgstr "Teljes telepítési méret: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Csomag" @@ -1768,45 +1768,45 @@ msgstr "Csomagok telepítése" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Méret" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Leírás" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Csomag csoportok" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 #, fuzzy msgid "Total Progress: " msgstr "Összes :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Állás" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Csomagok" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Idõ" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Összes" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Kész" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Hátralévõ" @@ -3689,7 +3689,7 @@ msgstr "%s ramdisk betöltése..." msgid "Error loading ramdisk." msgstr "Hiba a ramdisk betöltésekor." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Hiba a %s könyvtár olvasásánál: %s" @@ -3791,20 +3791,20 @@ msgstr "Milyen típusú médián van a rescue image?" msgid "What type of media contains the packages to be installed?" msgstr "Milyen típusú médián vannak a telepítendõ csomagok?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Nem találom a ks.cfg file-t a boot floppyn." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Updates lemez" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" "Helyezze be az updates lemezt, majd a folytatáshoz nyomja meg az \"OK\"-t." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 #, fuzzy msgid "" "The floppy disk you inserted is not a valid update disk for this release of " @@ -3813,26 +3813,26 @@ msgstr "" "A behelyezett floppy nem a megfelelõ driver lemez ehhez a Red Hat Linux " "verzióhoz." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Nem sikerült mount-olni a floppyt." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Updates" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Az anaconda frissítéseinek olvasása..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "Az anaconda frissítéseinek olvasása..." @@ -4259,6 +4259,701 @@ msgstr "Kernel fejlesztés" msgid "Utilities" msgstr "Segédeszközök" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Azonosítás" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Dél-Amerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Hely" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Befejezés" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Befejezés" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Hátralévõ" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Keresés" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Befejezés" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "America/New_York" #~ msgstr "Amerika/New_York" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: ID-rhinstall 1.4\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 1998-09-22 13:40+0700\n" "Last-Translator: Mohammad DAMT <mdamt@ldp.linux.or.id>\n" "Language-Team: LDP Indonesia <http://ldp.linux.or.id>\n" @@ -18,7 +18,7 @@ msgstr "" msgid "Everything" msgstr "Saya sedang mencari" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -59,8 +59,8 @@ msgstr "Perhatian" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -144,17 +144,17 @@ msgid "" "http://bugzilla.redhat.com/bugzilla" msgstr "" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Lanjutkan" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -163,9 +163,9 @@ msgstr "Lanjutkan" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -184,60 +184,60 @@ msgstr "Lanjutkan" msgid "Back" msgstr "Kembali" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Lihat Help" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Sembunyikan help" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Selesai" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Help online" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Pilih Bahasa" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Tutup" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 #, fuzzy msgid "Unable to load file!" msgstr "Error IO pada file lokal" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Installer Red Hat Linux" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Shell Install Red Hat Linux" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Installer Red Hat Linux untuk %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Shell Install Red Hat Linux untuk %s" -#: ../gui.py:873 +#: ../gui.py:872 #, fuzzy msgid "Install Window" msgstr "Log instalasi" @@ -297,17 +297,17 @@ msgstr "Partisi %s tidak dapat dialokasikan." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -416,7 +416,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -443,7 +443,7 @@ msgstr "_Reset" msgid "Choose the languages to be installed:" msgstr "Pilihlah paket yang hendak diinstall" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Server Printer:" @@ -468,7 +468,7 @@ msgstr "Pilih bahasanya:" msgid "Choose the default language: " msgstr "Pilih bahasanya:" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Pilih Keyboard" @@ -480,7 +480,7 @@ msgstr "Keyboard mana yang disambung ke komputer ini?" msgid "Upgrade Existing Installation" msgstr "Upgrade Instalasi yang ada" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Tipe Instalasi" @@ -513,20 +513,20 @@ msgstr "Anda belum membuat satupun partisi Linux, jadi tidak bisa upgrade!" msgid "System to Upgrade" msgstr "Sistem yang hendak diupgrade" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Edit Partisi" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Pilih paket yang hendak diupgrade" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -544,7 +544,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -558,18 +558,18 @@ msgstr "YA" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Tidak" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Linux Red Hat" # i ../install.c:76 -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -589,7 +589,7 @@ msgstr "" "Bila Anda telah membeli Red Hat Linux Official, maka segera daftarkan " "pembelian Anda di http://www.redhat.com." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -602,42 +602,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Batal" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Hasil deteksi X" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Card tidak ada" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Pilih Video card" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Video card mana yang Anda pakai?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Pilih X Server" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Pilih server" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Instalasi dimulai" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -645,12 +645,12 @@ msgstr "" "Log lengkap dari proses instalasi disimpan di /tmp/install.log setelah " "sistem diboot. Simpanlah file ini bila perlu." -#: ../text.py:637 +#: ../text.py:631 #, fuzzy msgid "Upgrade to begin" msgstr "Log upgrade" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 #, fuzzy msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " @@ -659,17 +659,17 @@ msgstr "" "Log lengkap dari proses instalasi disimpan di /tmp/install.log setelah " "sistem diboot. Simpanlah file ini bila perlu." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Selesai" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -691,13 +691,13 @@ msgstr "" "Cara-cara konfigurasi sistem tersedia setelah instalasi di the Official Red " "Hat Linux User's Guide." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -717,60 +717,60 @@ msgstr "" "Cara-cara konfigurasi sistem tersedia setelah instalasi di the Official Red " "Hat Linux User's Guide." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Instalasi Paket" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Nama :" -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Ukuran :" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Keterangan:" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr "Nama Paket" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Byte" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Waktu" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Total :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Selesai:" -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Sisa Waktu:" -#: ../text.py:913 +#: ../text.py:907 #, fuzzy msgid "Help not available" msgstr "(tidak ada yg tersedia)" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -779,186 +779,186 @@ msgid "" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Debug" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 #, fuzzy msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <Tab>/<Alt-Tab> switch elemen | <Spasi> memilih | <F12> layar selanjutnya" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> switch elemen | <Spasi> memilih | <F12> layar selanjutnya" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Selamat Datang" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Setup hostname" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Setup Network" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "Konfigurasi LILO" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Setup Time Zone" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Password Root" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Setup account user" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autentikasi" -#: ../text.py:1073 +#: ../text.py:1067 #, fuzzy msgid "Configuration Complete" msgstr "Konfigurasi X" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 #, fuzzy msgid "SILO Configuration" msgstr "Konfigurasi LILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Konfigurasi LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Partisi Otomatis" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partisi" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Partisi manual" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 #, fuzzy msgid "Root Filesystem Size" msgstr "Ukuran sistem yang diinstal:" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "Pilih Partisi root" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Sedang memformat sistem file" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Konfigurasi Mouse" -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "Pilih Bahasa" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Grup Paket" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Pilih beberapa paket" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Ketergantungan paket" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Konfigurasi X" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Instalasi Mulai" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Install sistem" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Bootdisk" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Instalasi Beres" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Periksa Sistem" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Upgrade custom" -#: ../text.py:1187 +#: ../text.py:1181 #, fuzzy msgid "Upgrade Begins" msgstr "Log upgrade" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Upgrade sistem" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Upgrade Beres" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Dibatalkan" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Saya tidak dapat kembali ke tahap sebelumnya. Anda harus mengulangi lagi." @@ -1059,7 +1059,7 @@ msgstr "" "Anda pilih. Coba tambahkan lagi space di filesystem ini:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 #, fuzzy msgid "Mount Point" msgstr "Lokasi Mount" @@ -1068,7 +1068,7 @@ msgstr "Lokasi Mount" msgid "Space Needed" msgstr "Spasi yg dibutuhkan" -#: ../todo.py:1803 +#: ../todo.py:1805 #, fuzzy msgid "" "You don't appear to have enough file nodes to install the packages you've " @@ -1079,21 +1079,21 @@ msgstr "" "Anda pilih. Coba tambahkan lagi space di filesystem ini:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "Spasi yg dibutuhkan" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Space disk" -#: ../todo.py:1847 +#: ../todo.py:1849 #, fuzzy msgid "Post Install" msgstr "Install Tahap Akhir" -#: ../todo.py:1848 +#: ../todo.py:1850 #, fuzzy msgid "Performing post install configuration..." msgstr "Lakukan konfigurasi install tahap akhir.." @@ -1119,38 +1119,38 @@ msgid "" "checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Card Video" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Video Ram" -#: ../xf86config.py:938 +#: ../xf86config.py:939 #, fuzzy msgid "X server" msgstr "Server X" -#: ../xf86config.py:941 +#: ../xf86config.py:942 #, fuzzy msgid "Unable to detect video card" msgstr "Saya gagal mendeteksi video card" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 #, fuzzy msgid "Horizontal frequency range" msgstr "Jangkauan Frekuensi Horizontal" -#: ../xf86config.py:954 +#: ../xf86config.py:955 #, fuzzy msgid "Vertical frequency range" msgstr "Jangkauan Frekuensi Vertikal" @@ -1410,7 +1410,7 @@ msgid "Total install size: %s" msgstr "saya gagal membuka %s: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Nama Paket" @@ -1801,45 +1801,45 @@ msgstr "Instalasi paket" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Ukuran" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Keterangan" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Grup Paket" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 #, fuzzy msgid "Total Progress: " msgstr "Total :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Status" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Nama Paket" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Waktu" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Total" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Selesai" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Sisa waktu" @@ -3707,7 +3707,7 @@ msgstr "Sedang mengambil ramdisk tahap kedua..." msgid "Error loading ramdisk." msgstr "Error saat membaca ramdisk." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, fuzzy, c-format msgid "Failed to read directory %s: %s" msgstr "saya gagal membuat %s" @@ -3812,20 +3812,20 @@ msgstr "Tipe media yang berisi image rescue itu apa?" msgid "What type of media contains the packages to be installed?" msgstr "Media macam mana yang berisi paket yang hendak diinstal ?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Saya tak dapat menemukan ks.cfg di floppy." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 #, fuzzy msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Masukkan driver disk dan kemudian tekan \"OK\"." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 #, fuzzy msgid "" "The floppy disk you inserted is not a valid update disk for this release of " @@ -3834,26 +3834,26 @@ msgstr "" "Disket yang Anda masukkan tadi tidak berisi disk driver untuk Linux Red Hat " "ini." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Saya gagal memount floppy disk." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "" -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "" @@ -4305,6 +4305,701 @@ msgstr "Parameter Kernel" msgid "Utilities" msgstr "" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autentikasi" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +msgid "South Australia" +msgstr "" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Lokasi" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Selesai" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Selesai" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Hungarian" +msgstr "Varian" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Sisa waktu" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Saya sedang mencari" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Selesai" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #, fuzzy #~ msgid "Horizontal Sync" #~ msgstr "Jangkauan Frekuensi Horizontal" @@ -4405,9 +5100,6 @@ msgstr "" #~ msgid "Rebuilding RPM database..." #~ msgstr "Membuat database RPM..." -#~ msgid "Variant" -#~ msgstr "Varian" - #~ msgid "" #~ "A disk with a corrupt Sun disklabel has been found while reading block " #~ "device %s. You must use fdisk to create and write a new label to this " @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: install 1.84\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-03-05 08:21+0000\n" "Last-Translator: Richard Allen <ra@hp.is>\n" "Language-Team: is <kde-isl@mmedia.is>\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "Allt" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Óeðlilegt ástand" @@ -64,8 +64,8 @@ msgstr "Aðvörun" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -150,7 +150,7 @@ msgstr "" "uppsetningarforritinu. Vinsamlegast afritaðu allann textann hérna og sendu " "inn villutilkynningu á http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -158,11 +158,11 @@ msgstr "" "Vinsamlegast settu diskling í drifið. Öllu innihaldi disklingsins verður " "eytt svo veldu disklinginn vel." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Áfram" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -171,9 +171,9 @@ msgstr "Áfram" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -192,59 +192,59 @@ msgstr "Áfram" msgid "Back" msgstr "Til baka" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Útgáfuupplýsingar" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Sýna hjálp" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Fela hjálp" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Ljúka" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Innbyggð hjálp" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Veljið tungumál" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Loka" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Útgáfuupplýsingar" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Get ekki lesið skrá!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux uppsetningarforritið" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux uppsetningaskel" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux uppsetningarforritið á %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux uppsetningaskel á %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Uppsetningargluggi" @@ -300,17 +300,17 @@ msgstr "Ekki var hægt að tengja geisladiskinn." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -427,7 +427,7 @@ msgstr "Diskurinn þinn er tengdur undir /mnt/sysimage möppunni." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -451,7 +451,7 @@ msgstr "Endurstilla" msgid "Choose the languages to be installed:" msgstr "Veldu tungumálin sem þú villt setja upp:" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Tungumálastuðningur" @@ -471,7 +471,7 @@ msgstr "Sjálfgefið tungumál" msgid "Choose the default language: " msgstr "Veldu sjálfgefna tungumálið: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Stillingar lyklaborðs" @@ -483,7 +483,7 @@ msgstr "Hvernig lyklaborð er tengt þessari vél?" msgid "Upgrade Existing Installation" msgstr "Uppfæra núverandi kerfi" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Tegund uppsetningar" @@ -521,19 +521,19 @@ msgstr "Þú ert ekki með neinar Linux disksneiðar. Það er ekki hægt að uppfæra!" msgid "System to Upgrade" msgstr "Kerfi sem á að uppfæra" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "Uppfæra disksneið" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "Uppfæri disksneið /dev/" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Velja pakka sem skal uppfæra" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -552,7 +552,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -566,17 +566,17 @@ msgstr "Já" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nei" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -596,7 +596,7 @@ msgstr "" "Ef þú hefur keypt opinbert eintak Red Hat Linux mundu þá að skrá það á " "vefsíðu okkar á http://www.redhat.com." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -616,42 +616,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Hætta við" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Útkoma X leitar" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Óþekkt kort" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Val skjákorts" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Hvaða skjákort ertu með?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Val X þjóns" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Veldu þjón" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Uppsetning að hefjast" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -659,11 +659,11 @@ msgstr "" "Eftir að uppsetningunni lýkur verður til annáll sem heitir /tmp/install.log. " "Honum ættir þú að halda til haga." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Uppfærsla að byrja" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -671,7 +671,7 @@ msgstr "" "Eftir að uppfærslunni lýkur verður til annáll sem heitir /tmp/upgrade.log. " "Honum ættir þú að halda til haga." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -679,11 +679,11 @@ msgstr "" " <Return> til að endurræsa " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Lokið" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -705,7 +705,7 @@ msgstr "" "Frekari upplýsingar um hvernig á að stilla vélina eftir uppsetninguna er að " "finna í viðeigandi kafla í Official Red Hat Linux handbókunum." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -713,7 +713,7 @@ msgstr "" " <Return> til að hætta " " " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -732,59 +732,59 @@ msgstr "" "Frekari upplýsingar um hvernig á að stilla vélina eftir uppsetninguna er að " "finna á http://www.redhat.com/support/manuals/" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Uppsetning pakka" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Heiti : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Stærð : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Lýsing : " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Pakkar" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bæti" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Tími" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Alls :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Lokið : " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Eftir : " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Hjálp ekki tiltæk" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Engin hjálp er tiltæk fyrir þessa uppsetningu." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Vista \"Crash Dump\"" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -798,178 +798,178 @@ msgstr "" "hjálpa Red Hat við að lagfæra vandamálið.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Vista" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Aflúsun" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> hjálp | <Tab> milli atriða | <Bilslá> velur | <F12> næsti skjár" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> milli atriða | <Bilslá> velur | <F12> næsti skjár " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Velkomin(n)" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Stillingar vélarheitis" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Stillingar nets" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Stillingar eldveggjar" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Stillingar tímabeltis" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Rótarlykilorð" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Búa til notanda" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Auðkenning" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Stillingum lokið" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Stillingar SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Stillingar LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Sjálfvirk disksneiðing" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Disksneið" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Sneiða handvirkt" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Stærð rótarskráarkerfisins" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Diskminni" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Ræsisneiðaraðvörun" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Forsníða skráakerfi" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Stillingar músar" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Sjálfgefið tungumál" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Pakkahópar" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Stakir pakkar" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Pakkaskilyrði" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Stillingar X" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Byrjun uppsetningar" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Setja upp kerfið" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Ræsidisklingur" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Uppsetningu lokið" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Skoða kerfið" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Sérsníða uppfærslu" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Uppfærsla hefst" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Uppfæra kerfi" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Uppfærslu lokið" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Hætt við" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Þú kemst ekki í fyrra þrep uppsetningar héðan. Þú þarft að byrja upp á nýtt." @@ -1072,7 +1072,7 @@ msgstr "" "valdir. Þú þarft meira pláss í eftirtöldum skráarkerfum:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Tengipunktur" @@ -1080,7 +1080,7 @@ msgstr "Tengipunktur" msgid "Space Needed" msgstr "Þarfnast diskrýmis" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1090,19 +1090,19 @@ msgstr "" "valdir. Þú þarft fleiri lausar skrár (inóður) í eftirtöldum skráarkerfum:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Vantar inóður" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Diskpláss" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Eftir uppsetningu" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Breyta stillingum eftir uppsetningu..." @@ -1129,35 +1129,35 @@ msgstr "" "máta. Vinsamlegast ræstu upp Linux kerfið þitt, láttu yfirfara skráarkerfin " "og keyrðu svo vélina rétt niður til að uppfæra." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Skjákort" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Skjáminni" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X þjónn" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Finn ekki skjákort" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Skjár" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "'Plug and Play' samhæfður skjár" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Lárétt tíðnisvið" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Lóðrétt tíðnisvið" @@ -1408,7 +1408,7 @@ msgid "Total install size: %s" msgstr "Samanlögð stærð uppsetningar: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Pakki" @@ -1788,43 +1788,43 @@ msgstr "Set inn pakka" msgid "%s KBytes" msgstr "%s Kbæti" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Stærð" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Lýsing" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Framvinda pakka: " -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Framvinda: " -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Staða" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Pakkar" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Tími" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Alls" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Lokið" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Eftir" @@ -3762,7 +3762,7 @@ msgstr "Les inn %s RAM-disklinginn..." msgid "Error loading ramdisk." msgstr "Villa við lestur RAM-disklings." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Gat ekki lesið möppuna %s: %s" @@ -3864,20 +3864,20 @@ msgstr "Á hverskonar miðli er neyðardisklingurinn?" msgid "What type of media contains the packages to be installed?" msgstr "Hverskonar kerfi viltu setja upp?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Gat ekki fundið ks.cfg á ræsidisklingnum." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Uppfærsludiskur" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" "Settu uppfærsludisklinginn í drifið og veldu \"Í lagi\" til að halda áfram." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3885,27 +3885,27 @@ msgstr "" "Disklingurinn sem þú settir í drifið er ekki gildur uppfærsludisklingur " "fyrir þessa útgáfu af Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Gat ekki tengt disklinginn." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Uppfærslur" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Les inn uppfærslur fyrir anaconda..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" "Það er ekki nægjanlegt vinnsluminni í vélinni til að setja upp Red Hat Linux" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "Keyri anaconda - Vinsamlegast bíðið...\n" @@ -4324,3 +4324,698 @@ msgstr "Kjarnaþróun" msgid "Utilities" msgstr "Tól" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Auðkenning" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Suður Ameríka" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Staðsetning" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Ljúka" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Ljúka" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Eftir" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Leita" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Ljúka" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: anacondapo $Revision$\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-01-29 17:00+1\n" "Last-Translator: Bettina De Monti <bdemonti@redhat.it>\n" "Language-Team: Italian <it@li.org>\n" @@ -17,7 +17,7 @@ msgstr "" msgid "Everything" msgstr "Tutto" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Errore" @@ -68,8 +68,8 @@ msgstr "Attenzione" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -155,7 +155,7 @@ msgstr "" "copiate il testo completo ed inviatelo al bug report " "all'indirizzohttp://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -163,11 +163,11 @@ msgstr "" "Inserire un dischetto nel drive. Il contenuto del dischetto sarà\n" "cancellato." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Avanti" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -176,9 +176,9 @@ msgstr "Avanti" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -197,59 +197,59 @@ msgstr "Avanti" msgid "Back" msgstr "Indietro" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Release Note" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Mostra Help" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Nascondi Help" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Fine" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Help Online" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Selezione delle lingue di supporto" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Chiudi" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Release Note" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Impossibile caricare file!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux Installer" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux Install Shell" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux Installer su %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux Install Shell su %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Finestra di installazione" @@ -305,17 +305,17 @@ msgstr "Il CDROM non può essere montato." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -433,7 +433,7 @@ msgstr "Il sistema è stato montato sotto /mnt/sysimage directory." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -458,7 +458,7 @@ msgid "Choose the languages to be installed:" msgstr "Scegliere le lingue da installare:" # ../comps/comps-master:151 -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Lingua di supporto" @@ -478,7 +478,7 @@ msgstr "Lingua di default" msgid "Choose the default language: " msgstr "Selezione della lingua di default:" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Selezione del tipo di tastiera" @@ -490,7 +490,7 @@ msgstr "Quale modello di tastiera è collegato al computer?" msgid "Upgrade Existing Installation" msgstr "Aggiornamento di un'installazione esistente" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Tipo di installazione" @@ -529,19 +529,19 @@ msgstr "Non ci sono partizioni Linux. Non è possibile aggiornare il sistema!" msgid "System to Upgrade" msgstr "Sistema da aggiornare" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "Aggiorna la partizione" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "Aggiornamento della partizione /dev/" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Personalizzazione dei pacchetti da aggiornare" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -560,7 +560,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -574,17 +574,17 @@ msgstr "Sì" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "No" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -604,7 +604,7 @@ msgstr "" "Se avete acquistato il prodotto Official Red Hat Linux, registrate il vostro " "prodotto all'indirizzo http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -623,42 +623,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Cancella" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Risultati del rilevamento di X" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Scheda non presente nell'elenco" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Selezione della scheda video" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Che scheda video avete?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Selezione del server X" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Selezione del server" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Processo di installazione" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -666,11 +666,11 @@ msgstr "" "Al riavvio del sistema troverete il file di log dell'installazione " "/tmp/install.log nel filesystem. " -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "L'aggiornamento sta per iniziare" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -678,7 +678,7 @@ msgstr "" "Al riavvio del sistema troverete il file di log dell'aggiornamento " "/tmp/upgrade.log nel filesystem. " -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -686,11 +686,11 @@ msgstr "" " <Invio> per riavviare " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Completato" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -712,7 +712,7 @@ msgstr "" "Le informazioni riguardanti la configurazione del sistema Red Hat Linux sono " "reperibili nei manuali Red Hat." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -720,7 +720,7 @@ msgstr "" " <Invio> per uscire " " " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -738,59 +738,59 @@ msgstr "" "Informazioni ulteriori sulla configurazione del vostro sistema sono " "reperibili al seguente indirizzo http://www.redhat.com/support/manuals/." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Installazione dei pacchetti" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Nome: " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Dimensioni: " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Riepilogo: " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Pacchetti" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Byte" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Tempo" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Totale:" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Completato: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Rimanente: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Help non disponibile" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Nessun help è disponibile per questa installazione" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Salva Crash Dump" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -804,178 +804,178 @@ msgstr "" "dischetto e inviate via web.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Salva" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Debug" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> per help> | <Tab> fra elementi | <Space> seleziona | <F12> schermo " "successivo" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr " <Tab> fra elementi | <Space> seleziona | <F12> schermo successivo" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Benvenuti" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Configurazione dell'hostnmae" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Configurazione della rete" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Configurazione del firewall" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Configurazione del fuso orario" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Password di root" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Impostazione dell' account utente" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autenticazione" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Configurazione completata" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Configurazione di SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Configurazione di LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Partizionamento automatico" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partizione" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Partizionamento manuale" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Grandezza filesystem di root" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Avviso partizione di avvio" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formattazione del filesystem" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Configurazione del mouse" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Selezione della lingua di default" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Gruppi di pacchetti" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Pacchetti individuali" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Dipendenze fra pacchetti" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Configurazione di X" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Avvio dell'installazione" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Installazione del sistema" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Dischetto di avvio" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Installazione completa" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Esamina sistema" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Personalizza l'aggiornamento" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Avvio dell'aggiornamento" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Aggiornamento del sistema" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Aggiornamento completato" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Cancellato" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Non è possibile tornare al passo precedente. Provare nuovamente." @@ -1079,7 +1079,7 @@ msgstr "" "necessario avere più spazio libero sui seguenti filesystem:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Mount Point" @@ -1087,7 +1087,7 @@ msgstr "Mount Point" msgid "Space Needed" msgstr "Spazio necessario" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1097,19 +1097,19 @@ msgstr "" "necessario avere più spazio libero sui seguenti filesystem:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Nodi necessario" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Spazio su disco" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Post installazione" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Configurazione post installazione..." @@ -1137,35 +1137,35 @@ msgstr "" "controllare i filesystem e di compiere uno shutdown completo prima di " "iniziare il processo di aggiornamento del sistema operativo." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Scheda video" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Ram Video" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "Server X" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Non è stato possibile riconoscere il tipo di scheda video" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Range di frequenze orizzontali" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Range di frequenze verticali" @@ -1414,7 +1414,7 @@ msgid "Total install size: %s" msgstr "Dimensione totale installazione: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Pacchetto" @@ -1795,43 +1795,43 @@ msgstr "Installazione dei pacchetti" msgid "%s KBytes" msgstr "%s KByte" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Dimensioni" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Riepilogo" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Stato pacchetto:" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Stato totale:" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Stato" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Pacchetti" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Tempo" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Totale" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Completato" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Rimanente" @@ -3773,7 +3773,7 @@ msgstr "Caricamento ramdisk %s..." msgid "Error loading ramdisk." msgstr "Errore durante il caricamento del ramdisk." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Errore durante la lettura della directory %s: %s" @@ -3872,19 +3872,19 @@ msgstr "Quale dispositivo contiene l'immagine rescue?" msgid "What type of media contains the packages to be installed?" msgstr "Quale dispositivo contiene i pacchetti da installare?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Non è possibile trovare il file ks.cfg sul dischetto di avvio." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Disco degli aggiornamenti" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Inserire il disco degli aggiornamenti e premere \"OK\" per continuare" -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3892,26 +3892,26 @@ msgstr "" "Il floppy disk che è stato inserito non contiene un disco di aggiornamento " "valido per questa release di Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Errore durante l'accesso al disco floppy." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Aggiornamenti" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Lettura in corso degli aggiornamenti di anaconda..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "Memoria non sufficiente per l'installazione di Red Hat." -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "Esecuzione di anaconda - attendere...\n" @@ -4358,6 +4358,701 @@ msgstr "Sviluppo del kernel" msgid "Utilities" msgstr "Utilità" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autenticazione" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Sud America" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Località" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Fine" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Fine" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Rimanente" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Ricerca in corso" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Fine" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "America/New_York" #~ msgstr "Europe/Rome" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: anaconda 7.1\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-03-02 16:39-05:00\n" "Last-Translator: Matt Wilson <msw@redhat.com>\n" "Language-Team: Japanese <eng-jp@redhat.com>\n" @@ -17,7 +17,7 @@ msgstr "" msgid "Everything" msgstr "¤¹¤Ù¤Æ" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Îã³°¤¬È¯À¸¤·¤Þ¤·¤¿¡£" @@ -49,7 +49,7 @@ msgstr "" msgid "Warning" msgstr "·Ù¹ð" -#: ../fstab.py:316 ../fstab.py:510 ../fstab.py:610 ../fstab.py:814 ../harddrive.py:173 ../image.py:64 ../image.py:141 ../libfdisk/newtfsedit.c:1743 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 ../todo.py:1493 ../upgrade.py:22 ../upgrade.py:50 +#: ../fstab.py:316 ../fstab.py:510 ../fstab.py:610 ../fstab.py:814 ../harddrive.py:173 ../image.py:64 ../image.py:141 ../libfdisk/newtfsedit.c:1743 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 ../todo.py:1493 ../upgrade.py:22 ../upgrade.py:50 msgid "Error" msgstr "¥¨¥é¡¼" @@ -116,69 +116,69 @@ msgstr "" msgid "An exceptional condition has occured. This is most likely a bug. Please copy the full text of this exception and file a bug report at http://bugzilla.redhat.com/bugzilla" msgstr "Îã³°¾ò·ï¤¬È¯À¸¤·¤Þ¤·¤¿¡£¥Ð¥°¤Î²ÄǽÀ¤¬¹Í¤¨¤é¤ì¤Þ¤¹¡£¤³¤ÎÎã³°¥á¥Ã¥»¡¼¥¸¤ÎÁ´¥Æ¥¥¹¥È¤ò¥³¥Ô¡¼¤·¡¢http://bugzilla.redhat.com/bugzilla ¤Ë¥Ð¥°¥ì¥Ý¡¼¥È¤·¤Æ¤¯¤À¤µ¤¤¡£" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "Please insert a floppy now. All contents of the disk will be erased, so please choose your diskette carefully." msgstr "¤³¤³¤Ç¥Õ¥í¥Ã¥Ô¡¼¤òÁÞÆþ¤·¤Æ¤¯¤À¤µ¤¤¡£ ¥Ç¥£¥¹¥¯¤ÎÆâÍÆ¤Ï¤¹¤Ù¤Æ¾Ãµî¤µ¤ì¤ë¤Î¤Ç¡¢Ãí°Õ¤·¤Æ¥Ç¥£¥¹¥±¥Ã¥È¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "¼¡" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1516 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 ../textw/mouse_text.py:28 ../textw/mouse_text.py:55 ../textw/mouse_text.py:81 ../textw/network_text.py:102 ../textw/network_text.py:161 ../textw/network_text.py:164 ../textw/packages_text.py:55 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/packages_text.py:353 ../textw/partitioning_text.py:24 ../textw/partitioning_text.py:65 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/silo_text.py:26 ../textw/silo_text.py:99 ../textw/silo_text.py:206 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:165 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1516 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 ../textw/mouse_text.py:28 ../textw/mouse_text.py:55 ../textw/mouse_text.py:81 ../textw/network_text.py:102 ../textw/network_text.py:161 ../textw/network_text.py:164 ../textw/packages_text.py:55 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/packages_text.py:353 ../textw/partitioning_text.py:24 ../textw/partitioning_text.py:65 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/silo_text.py:26 ../textw/silo_text.py:99 ../textw/silo_text.py:206 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:165 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 msgid "Back" msgstr "Ìá¤ë" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "¥ê¥ê¡¼¥¹¥Î¡¼¥È" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "¥Ø¥ë¥×¤òɽ¼¨" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "¥Ø¥ë¥×¤ò±£¤¹" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "´°Î»" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "¸À¸ì¤ÎÁªÂò" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1405 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "ÊĤ¸¤ë" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "¥ê¥ê¡¼¥¹¥Î¡¼¥È" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "¥Õ¥¡¥¤¥ë¤òÆÉ¤ß¹þ¤á¤Þ¤»¤ó!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux ¥¤¥ó¥¹¥È¡¼¥é" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux ¥¤¥ó¥¹¥È¡¼¥ë¥·¥§¥ë" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "%s ¾å¤Î Red Hat Linux ¥¤¥ó¥¹¥È¡¼¥é" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "%s ¾å¤Î Red Hat Linux ¥¤¥ó¥¹¥È¡¼¥ë ¥·¥§¥ë" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¦¥£¥ó¥É¥¦" @@ -220,7 +220,7 @@ msgstr "Àµ¤·¤¤ Red Hat CD-ROM ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£" msgid "The CDROM could not be mounted." msgstr "CD-ROM ¤Î¥Þ¥¦¥ó¥È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£" -#: ../loader/cdrom.c:34 ../loader/devices.c:92 ../loader/devices.c:237 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:335 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/devices.c:530 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:99 ../loader/lang.c:294 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:907 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 ../textw/lilo_text.py:93 ../textw/lilo_text.py:152 ../textw/lilo_text.py:158 ../textw/mouse_text.py:55 ../textw/network_text.py:102 ../textw/network_text.py:123 ../textw/network_text.py:161 ../textw/packages_text.py:55 ../textw/packages_text.py:89 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/partitioning_text.py:352 ../textw/partitioning_text.py:360 ../textw/partitioning_text.py:367 ../textw/silo_text.py:25 ../textw/silo_text.py:99 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:44 ../textw/userauth_text.py:49 ../textw/userauth_text.py:84 ../textw/userauth_text.py:99 ../textw/userauth_text.py:105 ../textw/userauth_text.py:111 ../textw/userauth_text.py:119 ../textw/userauth_text.py:128 ../textw/userauth_text.py:135 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 ../xserver.py:34 +#: ../loader/cdrom.c:34 ../loader/devices.c:92 ../loader/devices.c:237 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:335 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/devices.c:530 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:99 ../loader/lang.c:294 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:907 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 ../textw/lilo_text.py:93 ../textw/lilo_text.py:152 ../textw/lilo_text.py:158 ../textw/mouse_text.py:55 ../textw/network_text.py:102 ../textw/network_text.py:123 ../textw/network_text.py:161 ../textw/packages_text.py:55 ../textw/packages_text.py:89 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/partitioning_text.py:352 ../textw/partitioning_text.py:360 ../textw/partitioning_text.py:367 ../textw/silo_text.py:25 ../textw/silo_text.py:99 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:44 ../textw/userauth_text.py:49 ../textw/userauth_text.py:84 ../textw/userauth_text.py:99 ../textw/userauth_text.py:105 ../textw/userauth_text.py:111 ../textw/userauth_text.py:119 ../textw/userauth_text.py:128 ../textw/userauth_text.py:135 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 ../xserver.py:34 msgid "OK" msgstr "OK" @@ -281,7 +281,7 @@ msgid "Your system is mounted under the /mnt/sysimage directory." msgstr "¥·¥¹¥Æ¥à¤Ï /mnt/sysimage ¥Ç¥£¥ì¥¯¥È¥ê¤Î²¼¤Ë¥Þ¥¦¥ó¥È¤µ¤ì¤Þ¤·¤¿" #. code to create dialog in gtk+ -#: ../iw/package_gui.py:470 ../libfdisk/fsedit.c:921 ../libfdisk/fsedit.c:928 ../libfdisk/fsedit.c:935 ../libfdisk/fsedit.c:944 ../libfdisk/fsedit.c:971 ../libfdisk/fsedit.c:984 ../libfdisk/fsedit.c:994 ../libfdisk/fsedit.c:1023 ../libfdisk/fsedit.c:1033 ../libfdisk/fsedit.c:1050 ../libfdisk/fsedit.c:1467 ../libfdisk/gnomefsedit.c:756 ../libfdisk/gnomefsedit.c:788 ../libfdisk/gnomefsedit.c:879 ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:1262 ../libfdisk/gnomefsedit.c:1299 ../libfdisk/gnomefsedit.c:1333 ../libfdisk/gnomefsedit.c:1352 ../libfdisk/gnomefsedit.c:1526 ../libfdisk/gnomefsedit.c:1601 ../libfdisk/gnomefsedit.c:1651 ../libfdisk/gnomefsedit.c:1719 ../libfdisk/gnomefsedit.c:1737 ../libfdisk/gnomefsedit.c:2015 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2270 ../libfdisk/gnomefsedit.c:2278 ../libfdisk/gnomefsedit.c:2322 ../libfdisk/gnomefsedit.c:2332 ../libfdisk/gnomefsedit.c:2339 ../libfdisk/gnomefsedit.c:2354 ../libfdisk/gnomefsedit.c:2364 ../libfdisk/gnomefsedit.c:2374 ../libfdisk/gnomefsedit.c:2413 ../libfdisk/gnomefsedit.c:2544 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:170 ../libfdisk/newtfsedit.c:347 ../libfdisk/newtfsedit.c:577 ../libfdisk/newtfsedit.c:639 ../libfdisk/newtfsedit.c:672 ../libfdisk/newtfsedit.c:698 ../libfdisk/newtfsedit.c:717 ../libfdisk/newtfsedit.c:848 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../libfdisk/newtfsedit.c:1610 ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 ../textw/silo_text.py:149 ../textw/silo_text.py:205 +#: ../iw/package_gui.py:470 ../libfdisk/fsedit.c:921 ../libfdisk/fsedit.c:928 ../libfdisk/fsedit.c:935 ../libfdisk/fsedit.c:944 ../libfdisk/fsedit.c:971 ../libfdisk/fsedit.c:984 ../libfdisk/fsedit.c:994 ../libfdisk/fsedit.c:1023 ../libfdisk/fsedit.c:1033 ../libfdisk/fsedit.c:1050 ../libfdisk/fsedit.c:1467 ../libfdisk/gnomefsedit.c:756 ../libfdisk/gnomefsedit.c:788 ../libfdisk/gnomefsedit.c:879 ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:1262 ../libfdisk/gnomefsedit.c:1299 ../libfdisk/gnomefsedit.c:1333 ../libfdisk/gnomefsedit.c:1352 ../libfdisk/gnomefsedit.c:1526 ../libfdisk/gnomefsedit.c:1601 ../libfdisk/gnomefsedit.c:1651 ../libfdisk/gnomefsedit.c:1719 ../libfdisk/gnomefsedit.c:1737 ../libfdisk/gnomefsedit.c:2015 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2270 ../libfdisk/gnomefsedit.c:2278 ../libfdisk/gnomefsedit.c:2322 ../libfdisk/gnomefsedit.c:2332 ../libfdisk/gnomefsedit.c:2339 ../libfdisk/gnomefsedit.c:2354 ../libfdisk/gnomefsedit.c:2364 ../libfdisk/gnomefsedit.c:2374 ../libfdisk/gnomefsedit.c:2413 ../libfdisk/gnomefsedit.c:2544 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:170 ../libfdisk/newtfsedit.c:347 ../libfdisk/newtfsedit.c:577 ../libfdisk/newtfsedit.c:639 ../libfdisk/newtfsedit.c:672 ../libfdisk/newtfsedit.c:698 ../libfdisk/newtfsedit.c:717 ../libfdisk/newtfsedit.c:848 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../libfdisk/newtfsedit.c:1610 ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 ../textw/silo_text.py:149 ../textw/silo_text.py:205 msgid "Ok" msgstr "OK" @@ -302,7 +302,7 @@ msgid "Choose the languages to be installed:" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¸À¸ì¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤" # ../comps/comps-master:446 -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "¸À¸ì¥µ¥Ý¡¼¥È" @@ -322,7 +322,7 @@ msgstr "¥Ç¥Õ¥©¥ë¥È¸À¸ì" msgid "Choose the default language: " msgstr "¥Ç¥Õ¥©¥ë¥È¸À¸ì¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "¥¡¼¥Ü¡¼¥É¤ÎÁªÂò" @@ -334,7 +334,7 @@ msgstr "¥³¥ó¥Ô¥å¡¼¥¿¤ËÀܳ¤µ¤ì¤Æ¤¤¤ë¥¡¼¥Ü¡¼¥É¥â¥Ç¥ë¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£" msgid "Upgrade Existing Installation" msgstr "´û¸¥·¥¹¥Æ¥à¤Î¥¢¥Ã¥×¥°¥ì¡¼¥É" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¼ïÎà" @@ -364,35 +364,35 @@ msgstr "Linux ¥Ñ¡¼¥Æ¥£¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤»¤ó¡£¤³¤Î¥·¥¹¥Æ¥à¤ò¥¢¥Ã¥×¥°¥ì¡¼¥É¤¹¤ë¤³¤È¤Ï msgid "System to Upgrade" msgstr "¥¢¥Ã¥×¥°¥ì¡¼¥ÉÂоݥ·¥¹¥Æ¥à" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "¥¢¥Ã¥×¥°¥ì¡¼¥É¥Ñ¡¼¥Æ¥£¥·¥ç¥ó" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "¥¢¥Ã¥×¥°¥ì¡¼¥É¤¹¤ë¥Ñ¡¼¥Æ¥£¥·¥ç¥ó /dev/" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "¥¢¥Ã¥×¥°¥ì¡¼¥ÉÂоݥѥ屡¼¥¸¤Î¥«¥¹¥¿¥Þ¥¤¥º" -#: ../text.py:421 +#: ../text.py:416 msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?" msgstr "¥¤¥ó¥¹¥È¡¼¥ëºÑ¤Î¥Ñ¥Ã¥±¡¼¥¸¡¢¤ª¤è¤Ó°Í¸´Ø·¸¤ò²ò·è¤¹¤ë¤¿¤á¤ËɬÍפʤ½¤Î¾¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¥¤¥ó¥¹¥È¡¼¥ëÍѤËÁªÂò¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¥¢¥Ã¥×¥°¥ì¡¼¥ÉÂоݤΥѥ屡¼¥¸¤ò¥«¥¹¥¿¥Þ¥¤¥º¤·¤Þ¤¹¤«?" -#: ../iw/rootpartition_gui.py:503 ../iw/welcome_gui.py:89 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:402 +#: ../iw/rootpartition_gui.py:503 ../iw/welcome_gui.py:89 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:402 msgid "Yes" msgstr "¤Ï¤¤" -#: ../iw/rootpartition_gui.py:505 ../iw/welcome_gui.py:92 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 +#: ../iw/rootpartition_gui.py:505 ../iw/welcome_gui.py:92 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "¤¤¤¤¤¨" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -406,7 +406,7 @@ msgstr "" "\n" "Official Red Hat Linux ¤ò¤ªÇ㤤µá¤á¤¤¤¿¤À¤¤¤¿¾ì¹ç¤Ï¡¢ÊÀ¼Ò¤Î Web ¥µ¥¤¥Èhttp://www.redhat.com/ ¤ÇÅÐÏ¿¤ò¤ªºÑ¤Þ¤»¤¯¤À¤µ¤¤¡£" -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -420,59 +420,59 @@ msgstr "" "\n" "ÀßÄêÆâÍÆ¤òÊѹ¹¤»¤º¤Ë½ªÎ»¤¹¤ë¤Ë¤Ï¡¢²¼¤Î [¥¥ã¥ó¥»¥ë] ¥Ü¥¿¥ó¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£" -#: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 ../textw/silo_text.py:154 ../textw/userauth_text.py:63 +#: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "¼è¤ê¾Ã¤·" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "X ÀßÄê¤Î¸¡½Ð·ë²Ì" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "ÉÔÌÀ¤Ê¥Ó¥Ç¥ª¥«¡¼¥É¤Ç¤¹" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "¥Ó¥Ç¥ª¥«¡¼¥É¤ÎÁªÂò" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "¤ª»È¤¤¤Î¥Ó¥Ç¥ª¥«¡¼¥É¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "X ¥µ¡¼¥Ð¤ÎÁªÂò" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "¥µ¡¼¥Ð¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î³«»Ï" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference." msgstr "´°Á´¤Ê¥¤¥ó¥¹¥È¡¼¥ë¥í¥°¤Ï¡¢¥·¥¹¥Æ¥à¤ÎºÆµ¯Æ°¸å¤Ë /tmp/install.log ¤ËÊݸ¤µ¤ì¤Þ¤¹¡£¸å¤Ç»²¾È¤Ç¤¤ë¤è¤¦¤Ë¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤òÊݴɤ·¤Æ¤ª¤¯¤³¤È¤ò¤ª´«¤á¤·¤Þ¤¹¡£" -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "¥¢¥Ã¥×¥Ç¡¼¥È¤Î³«»Ï" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting your system. You may want to keep this file for later reference." msgstr "´°Á´¤Ê¥¢¥Ã¥×¥°¥ì¡¼¥É¥í¥°¤Ï¡¢¥·¥¹¥Æ¥à¤ÎºÆµ¯Æ°¸å /tmp/upgrade.log ¤ËÊݸ¤µ¤ì¤Þ¤¹¡£¸å¤Ç»²¾È¤Ç¤¤ë¤è¤¦¤Ë¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤òÊݴɤ·¤Æ¤ª¤¯¤³¤È¤ò¤ª´«¤á¤·¤Þ¤¹¡£" -#: ../text.py:657 +#: ../text.py:651 msgid " <Return> to reboot " msgstr " ºÆµ¯Æ°¤¹¤ë¤Ë¤Ï <Return> ¤ò²¡¤·¤Æ¤¯¤À¤µ¤¤ " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "´°Î»" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -486,11 +486,11 @@ msgstr "" "\n" "Red Hat Linux ¤ÎÀßÄê¤È»ÈÍÑÊýË¡¤Ë´Ø¤¹¤ë¾ðÊó¤Ï¡¢Red Hat Linux ¤Î¥Þ¥Ë¥å¥¢¥ë¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£" -#: ../text.py:678 +#: ../text.py:672 msgid " <Return> to exit " msgstr " ½ªÎ»¤¹¤ë¤Ë¤Ï <Return> ¤ò²¡¤·¤Æ¤¯¤À¤µ¤¤ " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -504,59 +504,59 @@ msgstr "" "\n" "¥·¥¹¥Æ¥à¤ÎÄɲÃÀßÄê¤Ë¤Ä¤¤¤Æ¤Ï¡¢¡ØOfficial Red Hat Linux ¥æ¡¼¥¶¡¼¥º¥¬¥¤¥É¡Ù¤Î¥¤¥ó¥¹¥È¡¼¥ë¸å¤Îºî¶È¤Ë¤Ä¤¤¤Æ¤Î¾Ï¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "̾Á°: " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "¥µ¥¤¥º : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "ÀâÌÀ: " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " ¥Ñ¥Ã¥±¡¼¥¸" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " ¥Ð¥¤¥È" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " »þ´Ö" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "¹ç·× :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "´°Î»: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "»Ä¤ê: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "¥Ø¥ë¥×¾ðÊó¤Ï¤¢¤ê¤Þ¤»¤ó¡£" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "¤³¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ë´Ø¤¹¤ë¥Ø¥ë¥×¤Ï¤¢¤ê¤Þ¤»¤ó¡£" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "¥¯¥é¥Ã¥·¥å¥À¥ó¥×¤ÎÊݸ" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this error to Red Hat (through the bugzilla.redhat.com web site) as soon as possible. The information on this failure may be saved to a floppy disk, and will help Red Hat in fixing the problem.\n" "\n" @@ -564,167 +564,167 @@ msgstr "" "¥¤¥ó¥¹¥È¡¼¥ë¥×¥í¥°¥é¥à¤ÇÆâÉô¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿¡£¤Ç¤¤ë¤À¤±Á᤯¤³¤Î¥¨¥é¡¼¤ò Red Hat ¤Þ¤Ç¤ªÃΤ餻¤¯¤À¤µ¤¤ (Web ¥µ¥¤¥È bugzilla.redhat.com ¤ò¤´ÍøÍѤ¯¤À¤µ¤¤)¡£¤³¤Î¥¨¥é¡¼¤Ë´Ø¤¹¤ë¾ðÊó¤ò¥Õ¥í¥Ã¥Ô¡¼¥Ç¥£¥¹¥¯¤ËÊݸ¤·¤Æ¤¤¤¿¤À¤±¤ì¤Ð¡¢Red Hat ¤¬ÌäÂê¤ò²ò·è¤¹¤ë¾å¤Ç»²¹Í¤Ë¤Ê¤ê¤Þ¤¹¡£\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Êݸ" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "¥Ç¥Ð¥Ã¥°" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr " <F1> ¥Ø¥ë¥×| <Tab> ¹àÌÜ´Ö¤Î°ÜÆ°| <Space> ÁªÂò| <F12> ¼¡¤Î²èÌÌ" -#: ../text.py:1010 +#: ../text.py:1004 msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen" msgstr " <Tab>/<Alt-Tab> ¹àÌÜ´Ö¤Î°ÜÆ°| <Space> ÁªÂò | <F12> ¼¡¤Î²èÌÌ" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 ../text.py:1080 msgid "Welcome" msgstr "¤è¤¦¤³¤½" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "¥Û¥¹¥È̾¤ÎÀßÄê" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "¥Í¥Ã¥È¥ï¡¼¥¯¤ÎÀßÄê" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 ../textw/firewall_text.py:11 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "¥Õ¥¡¥¤¥¢¥¦¥©¡¼¥ë¤ÎÀßÄê" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "¥¿¥¤¥à¥¾¡¼¥ó¤ÎÀßÄê" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "root ¥Ñ¥¹¥ï¡¼¥É" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "¥æ¡¼¥¶¥¢¥«¥¦¥ó¥È¤ÎÀßÄê" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "ǧ¾Ú" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "ÀßÄ괰λ" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 ../textw/silo_text.py:213 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO ¤ÎÀßÄê" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 ../textw/lilo_text.py:217 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO ¤ÎÀßÄê" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "¼«Æ°¥Ñ¡¼¥Æ¥£¥·¥ç¥óÀßÄê" -#: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "¥Ñ¡¼¥Æ¥£¥·¥ç¥ó" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "¼êư¥Ñ¡¼¥Æ¥£¥·¥ç¥óÀßÄê" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "¥ë¡¼¥È¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥µ¥¤¥º" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "¥¹¥ï¥Ã¥×" -#: ../text.py:1117 ../textw/partitioning_text.py:390 ../textw/partitioning_text.py:410 +#: ../text.py:1111 ../textw/partitioning_text.py:390 ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "µ¯Æ°¥Ñ¡¼¥Æ¥£¥·¥ç¥ó·Ù¹ð" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ò¥Õ¥©¡¼¥Þ¥Ã¥È¤·¤Æ¤¤¤Þ¤¹" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "¥Þ¥¦¥¹¤ÎÀßÄê" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "¥Ç¥Õ¥©¥ë¥È¸À¸ì" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "¥Ñ¥Ã¥±¡¼¥¸¥°¥ë¡¼¥×" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "¸ÄÊ̥ѥ屡¼¥¸" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X ¤ÎÀßÄê" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î³«»Ï" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "¥·¥¹¥Æ¥à¤Î¥¤¥ó¥¹¥È¡¼¥ë" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "¥Ö¡¼¥È¥Ç¥£¥¹¥¯" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "¥¤¥ó¥¹¥È¡¼¥ë´°Î»" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "¥·¥¹¥Æ¥à¤Î¥Æ¥¹¥È" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "¥¢¥Ã¥×¥°¥ì¡¼¥É¤Î¥«¥¹¥¿¥Þ¥¤¥º" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "¥¢¥Ã¥×¥°¥ì¡¼¥É¤Î³«»Ï" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "¥·¥¹¥Æ¥à¤Î¥¢¥Ã¥×¥°¥ì¡¼¥É" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "¥¢¥Ã¥×¥°¥ì¡¼¥É´°Î»" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "¼è¤ê¾Ã¤µ¤ì¤Þ¤·¤¿" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "¤³¤³¤«¤éľÁ°¤Î¥¹¥Æ¥Ã¥×¤ËÌá¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó¡£¤â¤¦°ìÅÙ¤ä¤êľ¤·¤Æ¤¯¤À¤µ¤¤¡£" @@ -812,7 +812,7 @@ msgstr "" "ÁªÂò¤·¤¿¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¤ËɬÍפʥǥ£¥¹¥¯ÍÆÎ̤¬ÉÔ¤·¤Æ¤¤¤ë¤è¤¦¤Ç¤¹¡£°Ê²¼¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å¤Ë¶õ¤Îΰ褬ɬÍפǤ¹¡£\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "¥Þ¥¦¥ó¥È¥Ý¥¤¥ó¥È" @@ -820,7 +820,7 @@ msgstr "¥Þ¥¦¥ó¥È¥Ý¥¤¥ó¥È" msgid "Space Needed" msgstr "ÎΰèÉÔÂ" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've selected. You need more file nodes on the following filesystems:\n" "\n" @@ -828,19 +828,19 @@ msgstr "" "ÁªÂò¤·¤¿¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¤ËɬÍפʥե¡¥¤¥ë¥Î¡¼¥É¿ô¤¬ÉÔ¤·¤Æ¤¤¤ë¤è¤¦¤Ç¤¹¡£°Ê²¼¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å¤Ë¤è¤ê¿¤¯¤Î¥Õ¥¡¥¤¥ë¥Î¡¼¥É¤¬É¬ÍפǤ¹¡£\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "¥Î¡¼¥É¿ôÉÔÂ" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "¥Ç¥£¥¹¥¯ÍÆÎÌ" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¸å¤ÎÀßÄê" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "¥¤¥ó¥¹¥È¡¼¥ë¸å¤ÎÀßÄê¤ò¼Â¹Ô¤·¤Æ¤¤¤Þ¤¹..." @@ -861,35 +861,35 @@ msgstr "%s ¾å¤Ë ext2 ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ò¥Þ¥¦¥ó¥È¤·¤è¤¦¤È¤·¤Æ¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿: msgid "One or more of the filesystems for your Linux system was not unmounted cleanly. Please boot your Linux installation, let the filesystems be checked, and shut down cleanly to upgrade." msgstr "Àµ¾ï¤Ë¥¢¥ó¥Þ¥¦¥ó¥È¤µ¤ì¤Ê¤«¤Ã¤¿ Linux ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤¬¤¢¤ê¤Þ¤¹¡£¥¢¥Ã¥×¥°¥ì¡¼¥É¤¹¤ë¤¿¤á¤Ë¤Ï¡¢Linux ¥¤¥ó¥¹¥È¡¼¥ë¤òµ¯Æ°¤·¡¢¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥Á¥§¥Ã¥¯¤ò¼Â¹Ô¤·¤Æ¤«¤éÀµ¾ï¤Ë¥·¥ã¥Ã¥È¥À¥¦¥ó¤ò¹Ô¤Ã¤Æ¤¯¤À¤µ¤¤¡£" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "¥Ó¥Ç¥ª¥«¡¼¥É" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "¥Ó¥Ç¥ª¥á¥â¥ê" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X ¥µ¡¼¥Ð" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "¥Ó¥Ç¥ª¥«¡¼¥É¤ò¸¡½Ð¤Ç¤¤Þ¤»¤ó" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "¥â¥Ë¥¿¡¼" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "¥×¥é¥°¥¢¥ó¥É¥×¥ì¥¤¥â¥Ë¥¿¡¼" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "¿åÊ¿¼þÇÈ¿ô¤ÎÈϰÏ" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "¿âľ¼þÇÈ¿ô¤ÎÈϰÏ" @@ -1108,7 +1108,7 @@ msgstr "̤²ò·è¤Î°Í¸" msgid "Total install size: %s" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¹ç·×ÍÆÎÌ¡§ %s" -#: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "¥Ñ¥Ã¥±¡¼¥¸" @@ -1472,43 +1472,43 @@ msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë" msgid "%s KBytes" msgstr "%s K ¥Ð¥¤¥È" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "¥µ¥¤¥º" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "ÀâÌÀ" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "¥Ñ¥Ã¥±¡¼¥¸¿ÊĽ¾õ¶·" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "¿ÊĽ¾õ¶·Áí·×: " -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "¾õÂÖ" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "¥Ñ¥Ã¥±¡¼¥¸" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "»þ´Ö" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "¹ç·×" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "´°Î»" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "»Ä¤ê" @@ -3053,7 +3053,7 @@ msgstr "%s ramdisk ¤òÆÉ¤ß¹þ¤ßÃæ¤Ç¤¹" msgid "Error loading ramdisk." msgstr "ramdisk ¤ÎÆÉ¤ß¹þ¤ß¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿" -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "%s ¥Ç¥£¥ì¥¯¥È¥ê¤ÎÆÉ¤ß¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" @@ -3135,42 +3135,42 @@ msgstr "¥ì¥¹¥¥å¡¼¥¤¥á¡¼¥¸¤¬Êݸ¤µ¤ì¤Æ¤¤¤ë¥á¥Ç¥£¥¢¥¿¥¤¥×¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£" msgid "What type of media contains the packages to be installed?" msgstr "¥¤¥ó¥¹¥È¡¼¥ëÂоݤΥѥ屡¼¥¸¤¬Êݸ¤µ¤ì¤Æ¤¤¤ë¥á¥Ç¥£¥¢¥¿¥¤¥×¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "¥Ö¡¼¥È¥Õ¥í¥Ã¥Ô¡¼¤Ë¤Ï ks.cfg ¤¬¤¢¤ê¤Þ¤»¤ó¡£" -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "¥Ç¥£¥¹¥¯¤Î¥¢¥Ã¥×¥Ç¡¼¥È" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "¥¢¥Ã¥×¥Ç¡¼¥È¥Ç¥£¥¹¥¯¤òÁÞÆþ¤·¤Æ¤«¤é [OK] ¤ò²¡¤·¤ÆÂ³¹Ô¤·¤Æ¤¯¤À¤µ¤¤¡£" -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "The floppy disk you inserted is not a valid update disk for this release of Red Hat Linux." msgstr "ÁÞÆþ¤µ¤ì¤¿¥Õ¥í¥Ã¥Ô¡¼¥Ç¥£¥¹¥¯¤ÏËÜ¥ê¥ê¡¼¥¹¤Î Red Hat Linux ¤Ç͸ú¤Ê¥É¥é¥¤¥Ð¥Ç¥£¥¹¥¯¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£" -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "¥Õ¥í¥Ã¥Ô¡¼¥Ç¥£¥¹¥¯¤Î¥Þ¥¦¥ó¥È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£" #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "¥¢¥Ã¥×¥Ç¡¼¥È" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "anaconda ¥¢¥Ã¥×¥Ç¡¼¥È¤òÆÉ¤ß¹þ¤ó¤Ç¤¤¤Þ¤¹..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "Red Hat ¤ò¤³¤Î¥Þ¥·¥ó¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤Î¤Ë½½Ê¬¤Ê¥á¥â¥ê¤¬¤¢¤ê¤Þ¤»¤ó¡£" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "anaconda ¤òµ¯Æ°Ãæ - ¤·¤Ð¤é¤¯¤ªÂÔ¤Á²¼¤µ¤¤...\n" @@ -3594,6 +3594,698 @@ msgstr "¥«¡¼¥Í¥ë³«È¯" msgid "Utilities" msgstr "¥æ¡¼¥Æ¥£¥ê¥Æ¥£" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "ǧ¾Ú" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Æî¥¢¥á¥ê¥«" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "¾ì½ê" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "´°Î»" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "´°Î»" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "»Ä¤ê" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "¸¡º÷Ãæ" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "´°Î»" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "America/New_York" #~ msgstr "¥¢¥á¥ê¥«/¥Ë¥å¡¼¥è¡¼¥¯" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-02-11 12:55+0900\n" "Last-Translator: Byeong-Chan Kim <redhands@linux.sarang.net>\n" "Language-Team: Korean <ko@li.org>\n" @@ -18,7 +18,7 @@ msgstr "" msgid "Everything" msgstr "°Ë»ö Áß" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -48,7 +48,7 @@ msgstr "" msgid "Warning" msgstr "°Ë»ö Áß" -#: ../fstab.py:316 ../fstab.py:510 ../fstab.py:610 ../fstab.py:814 ../harddrive.py:173 ../image.py:64 ../image.py:141 ../libfdisk/newtfsedit.c:1743 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 ../todo.py:1493 ../upgrade.py:22 ../upgrade.py:50 +#: ../fstab.py:316 ../fstab.py:510 ../fstab.py:610 ../fstab.py:814 ../harddrive.py:173 ../image.py:64 ../image.py:141 ../libfdisk/newtfsedit.c:1743 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 ../todo.py:1493 ../upgrade.py:22 ../upgrade.py:50 msgid "Error" msgstr "¿À·ù" @@ -110,69 +110,69 @@ msgstr "" msgid "An exceptional condition has occured. This is most likely a bug. Please copy the full text of this exception and file a bug report at http://bugzilla.redhat.com/bugzilla" msgstr "" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "Please insert a floppy now. All contents of the disk will be erased, so please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "´ÙÀ½" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1516 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 ../textw/mouse_text.py:28 ../textw/mouse_text.py:55 ../textw/mouse_text.py:81 ../textw/network_text.py:102 ../textw/network_text.py:161 ../textw/network_text.py:164 ../textw/packages_text.py:55 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/packages_text.py:353 ../textw/partitioning_text.py:24 ../textw/partitioning_text.py:65 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/silo_text.py:26 ../textw/silo_text.py:99 ../textw/silo_text.py:206 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:165 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1516 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 ../textw/mouse_text.py:28 ../textw/mouse_text.py:55 ../textw/mouse_text.py:81 ../textw/network_text.py:102 ../textw/network_text.py:161 ../textw/network_text.py:164 ../textw/packages_text.py:55 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/packages_text.py:353 ../textw/partitioning_text.py:24 ../textw/partitioning_text.py:65 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/silo_text.py:26 ../textw/silo_text.py:99 ../textw/silo_text.py:206 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:165 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 msgid "Back" msgstr "µÚ·Î" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "µµ¿ò¸» º¸ÀÓ" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "µµ¿ò¸» ¼û±è" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "¿Ï·á" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "¿Â¶óÀÎ µµ¿ò¸»" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "¾ð¾î ¼±ÅÃ" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1405 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "´Ý±â" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "·¹µåÇÞ ¸®´ª½º ¼³Ä¡±â" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "·¹µåÇÞ ¸®´ª½º ¼³Ä¡ ½©" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "%s¿ë ·¹µåÇÞ ¸®´ª½º ¼³Ä¡±â" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "%s¿ë ·¹µåÇÞ ¸®´ª½º ¼³Ä¡ ½©" -#: ../gui.py:873 +#: ../gui.py:872 #, fuzzy msgid "Install Window" msgstr "¼³Ä¡" @@ -217,7 +217,7 @@ msgstr "" msgid "The CDROM could not be mounted." msgstr "" -#: ../loader/cdrom.c:34 ../loader/devices.c:92 ../loader/devices.c:237 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:335 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/devices.c:530 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:99 ../loader/lang.c:294 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:907 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 ../textw/lilo_text.py:93 ../textw/lilo_text.py:152 ../textw/lilo_text.py:158 ../textw/mouse_text.py:55 ../textw/network_text.py:102 ../textw/network_text.py:123 ../textw/network_text.py:161 ../textw/packages_text.py:55 ../textw/packages_text.py:89 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/partitioning_text.py:352 ../textw/partitioning_text.py:360 ../textw/partitioning_text.py:367 ../textw/silo_text.py:25 ../textw/silo_text.py:99 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:44 ../textw/userauth_text.py:49 ../textw/userauth_text.py:84 ../textw/userauth_text.py:99 ../textw/userauth_text.py:105 ../textw/userauth_text.py:111 ../textw/userauth_text.py:119 ../textw/userauth_text.py:128 ../textw/userauth_text.py:135 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 ../xserver.py:34 +#: ../loader/cdrom.c:34 ../loader/devices.c:92 ../loader/devices.c:237 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:335 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/devices.c:530 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:99 ../loader/lang.c:294 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:907 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 ../textw/lilo_text.py:93 ../textw/lilo_text.py:152 ../textw/lilo_text.py:158 ../textw/mouse_text.py:55 ../textw/network_text.py:102 ../textw/network_text.py:123 ../textw/network_text.py:161 ../textw/packages_text.py:55 ../textw/packages_text.py:89 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/partitioning_text.py:352 ../textw/partitioning_text.py:360 ../textw/partitioning_text.py:367 ../textw/silo_text.py:25 ../textw/silo_text.py:99 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:44 ../textw/userauth_text.py:49 ../textw/userauth_text.py:84 ../textw/userauth_text.py:99 ../textw/userauth_text.py:105 ../textw/userauth_text.py:111 ../textw/userauth_text.py:119 ../textw/userauth_text.py:128 ../textw/userauth_text.py:135 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 ../xserver.py:34 msgid "OK" msgstr "È®ÀÎ" @@ -275,7 +275,7 @@ msgid "Your system is mounted under the /mnt/sysimage directory." msgstr "" #. code to create dialog in gtk+ -#: ../iw/package_gui.py:470 ../libfdisk/fsedit.c:921 ../libfdisk/fsedit.c:928 ../libfdisk/fsedit.c:935 ../libfdisk/fsedit.c:944 ../libfdisk/fsedit.c:971 ../libfdisk/fsedit.c:984 ../libfdisk/fsedit.c:994 ../libfdisk/fsedit.c:1023 ../libfdisk/fsedit.c:1033 ../libfdisk/fsedit.c:1050 ../libfdisk/fsedit.c:1467 ../libfdisk/gnomefsedit.c:756 ../libfdisk/gnomefsedit.c:788 ../libfdisk/gnomefsedit.c:879 ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:1262 ../libfdisk/gnomefsedit.c:1299 ../libfdisk/gnomefsedit.c:1333 ../libfdisk/gnomefsedit.c:1352 ../libfdisk/gnomefsedit.c:1526 ../libfdisk/gnomefsedit.c:1601 ../libfdisk/gnomefsedit.c:1651 ../libfdisk/gnomefsedit.c:1719 ../libfdisk/gnomefsedit.c:1737 ../libfdisk/gnomefsedit.c:2015 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2270 ../libfdisk/gnomefsedit.c:2278 ../libfdisk/gnomefsedit.c:2322 ../libfdisk/gnomefsedit.c:2332 ../libfdisk/gnomefsedit.c:2339 ../libfdisk/gnomefsedit.c:2354 ../libfdisk/gnomefsedit.c:2364 ../libfdisk/gnomefsedit.c:2374 ../libfdisk/gnomefsedit.c:2413 ../libfdisk/gnomefsedit.c:2544 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:170 ../libfdisk/newtfsedit.c:347 ../libfdisk/newtfsedit.c:577 ../libfdisk/newtfsedit.c:639 ../libfdisk/newtfsedit.c:672 ../libfdisk/newtfsedit.c:698 ../libfdisk/newtfsedit.c:717 ../libfdisk/newtfsedit.c:848 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../libfdisk/newtfsedit.c:1610 ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 ../textw/silo_text.py:149 ../textw/silo_text.py:205 +#: ../iw/package_gui.py:470 ../libfdisk/fsedit.c:921 ../libfdisk/fsedit.c:928 ../libfdisk/fsedit.c:935 ../libfdisk/fsedit.c:944 ../libfdisk/fsedit.c:971 ../libfdisk/fsedit.c:984 ../libfdisk/fsedit.c:994 ../libfdisk/fsedit.c:1023 ../libfdisk/fsedit.c:1033 ../libfdisk/fsedit.c:1050 ../libfdisk/fsedit.c:1467 ../libfdisk/gnomefsedit.c:756 ../libfdisk/gnomefsedit.c:788 ../libfdisk/gnomefsedit.c:879 ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:1262 ../libfdisk/gnomefsedit.c:1299 ../libfdisk/gnomefsedit.c:1333 ../libfdisk/gnomefsedit.c:1352 ../libfdisk/gnomefsedit.c:1526 ../libfdisk/gnomefsedit.c:1601 ../libfdisk/gnomefsedit.c:1651 ../libfdisk/gnomefsedit.c:1719 ../libfdisk/gnomefsedit.c:1737 ../libfdisk/gnomefsedit.c:2015 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2270 ../libfdisk/gnomefsedit.c:2278 ../libfdisk/gnomefsedit.c:2322 ../libfdisk/gnomefsedit.c:2332 ../libfdisk/gnomefsedit.c:2339 ../libfdisk/gnomefsedit.c:2354 ../libfdisk/gnomefsedit.c:2364 ../libfdisk/gnomefsedit.c:2374 ../libfdisk/gnomefsedit.c:2413 ../libfdisk/gnomefsedit.c:2544 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:170 ../libfdisk/newtfsedit.c:347 ../libfdisk/newtfsedit.c:577 ../libfdisk/newtfsedit.c:639 ../libfdisk/newtfsedit.c:672 ../libfdisk/newtfsedit.c:698 ../libfdisk/newtfsedit.c:717 ../libfdisk/newtfsedit.c:848 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../libfdisk/newtfsedit.c:1610 ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 ../textw/silo_text.py:149 ../textw/silo_text.py:205 msgid "Ok" msgstr "È®ÀÎ" @@ -298,7 +298,7 @@ msgstr "´Ù½Ã(_R)" msgid "Choose the languages to be installed:" msgstr "¼³Ä¡ÇÒ ÆÐŰÁö°¡ ¾î¶² ÀúÀå ÀåÄ¡¿¡ ÀÖ½À´Ï±î?" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "¾ð¾î ¼±ÅÃ" @@ -323,7 +323,7 @@ msgstr "¾ð¾î¸¦ ¼±ÅÃÇϼ¼¿ä" msgid "Choose the default language: " msgstr "¾ð¾î¸¦ ¼±ÅÃÇϼ¼¿ä" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Űº¸µå ¼±ÅÃ" @@ -335,7 +335,7 @@ msgstr "¾î¶² ¸ðµ¨ÀÇ Å°º¸µå¸¦ »ç¿ëÇϽʴϱî?" msgid "Upgrade Existing Installation" msgstr "¼³Ä¡µÈ ½Ã½ºÅÛ ¾÷±×·¹À̵å" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "¼³Ä¡ À¯Çü" @@ -365,36 +365,36 @@ msgstr "¸®´ª½º ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù. ½Ã½ºÅÛ ¾÷±×·¹À̵带 ÇÒ ¼ö ¾ø½À´Ï´Ù!" msgid "System to Upgrade" msgstr "¾÷±×·¹À̵å ÇÒ ½Ã½ºÅÛ" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "ÆÄƼ¼Ç ¼öÁ¤" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "¾÷±×·¹À̵å ÇÒ ÆÐŰÁö ¼±ÅÃ" -#: ../text.py:421 +#: ../text.py:416 msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?" msgstr "¼³Ä¡µÈ ÆÐŰÁö³ª, ¼³Ä¡Çϱâ À§ÇØ ¼±ÅÃµÈ ÆÐŰÁö´Â ÀÇÁ¸¼ºÀ» ¸¸Á· ÇØ¾ß ÇÕ´Ï´Ù.¾÷±×·¹À̵å ÇÒ ÆÐŰÁö¸¦ Á÷Á¢ ¼±Åà ÇϽðڽÀ´Ï±î?" -#: ../iw/rootpartition_gui.py:503 ../iw/welcome_gui.py:89 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:402 +#: ../iw/rootpartition_gui.py:503 ../iw/welcome_gui.py:89 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:402 msgid "Yes" msgstr "¿¹" -#: ../iw/rootpartition_gui.py:505 ../iw/welcome_gui.py:92 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 +#: ../iw/rootpartition_gui.py:505 ../iw/welcome_gui.py:92 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "¾Æ´Ï¿À" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "·¹µåÇÞ ¸®´ª½º" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -407,7 +407,7 @@ msgstr "" "¼³Ä¡ ÀýÂ÷´Â °ø½Ä ·¹µåÇÞ ¸®´ª½º ¼³Ä¡ °¡À̵忡 ÀÚ¼¼È÷ ¾È³»µÇ¾î ÀÖÀ¸¸ç ·¹µåÇÞ ¼ÒÇÁÆ®¿þ¾î¸¦ ÅëÇØ ±¸ÇÒ ¼ö ÀÖ½À´Ï´Ù. ¸Å´º¾óÀ» °¡Áö°í ÀÖÀ¸½Ã¸é Áö±Ý ¼³Ä¡ºÎºÐÀ» ÀÐÀ¸½Ã°í ¼³Ä¡¸¦ °è¼ÓÇØ Áֽʽÿä\n" "°ø½Ä ·¹µåÇÞ ¸®´ª½º¸¦ ±¸ÀÔÇÏ¼Ì´Ù¸é ·¹µåÇÞ ¸®´ª½º À¥ »çÀÌÆ® http://www.redhat.com/¿¡¼ »ç¿ëÀÚ µî·ÏÀ» ÇØ Áֽñ⠹ٶø´Ï´Ù." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -416,61 +416,61 @@ msgid "" "To exit without changing your setup select the Cancel button below." msgstr "" -#: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 ../textw/silo_text.py:154 ../textw/userauth_text.py:63 +#: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Ãë¼Ò" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "X °Ë»ö °á°ú" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "¸ñ·Ï¿¡ ¾ø´Â Ä«µå" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "ºñµð¿À Ä«µå ¼±ÅÃ" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "¾î¶² ºñµð¿À Ä«µå¸¦ »ç¿ëÇϽʴϱî?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "X ¼¹ö ¼±ÅÃ" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "¼¹ö¸¦ ¼±ÅÃÇϼ¼¿ä" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "¼³Ä¡ ½ÃÀÛ" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference." msgstr "¼³Ä¡¿¡ ´ëÇÑ ±â·ÏÀº ÀçºÎÆÃ ÈÄ /tmp/install.log ¸¦ Âü°íÇϽñ⠹ٶø´Ï´Ù. ÃßÈÄ Âü°íÇϱâ À§ÇØ ÀÌ ÆÄÀÏÀ» º¸°ü ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù." -#: ../text.py:637 +#: ../text.py:631 #, fuzzy msgid "Upgrade to begin" msgstr "½Ã½ºÅÛ ¾÷±×·¹À̵å" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 #, fuzzy msgid "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting your system. You may want to keep this file for later reference." msgstr "¼³Ä¡¿¡ ´ëÇÑ ±â·ÏÀº ÀçºÎÆÃ ÈÄ /tmp/install.log ¸¦ Âü°íÇϽñ⠹ٶø´Ï´Ù. ÃßÈÄ Âü°íÇϱâ À§ÇØ ÀÌ ÆÄÀÏÀ» º¸°ü ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù." -#: ../text.py:657 +#: ../text.py:651 msgid " <Return> to reboot " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "¿Ï·á" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -485,11 +485,11 @@ msgstr "" "\n" "¼³Ä¡ ÈÄÀÇ ½Ã½ºÅÛ ¼³Á¤¿¡ ´ëÇØ¼´Â °ø½Ä ·¹µåÇÞ ¸®´ª½º »ç¿ëÀÚ ¾È³»¼¸¦ Âü°í ÇϽʽÿÀ" -#: ../text.py:678 +#: ../text.py:672 msgid " <Return> to exit " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -504,230 +504,230 @@ msgstr "" "\n" "¼³Ä¡ ÈÄÀÇ ½Ã½ºÅÛ ¼³Á¤¿¡ ´ëÇØ¼´Â °ø½Ä ·¹µåÇÞ ¸®´ª½º »ç¿ëÀÚ ¾È³»¼¸¦ Âü°í ÇϽʽÿÀ" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "ÆÐŰÁö ¼³Ä¡" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "À̸§ : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Å©±â : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "¼³¸í : " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " ÆÐŰÁö" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " ¹ÙÀÌÆ®" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " ½Ã°£" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "ÇÕ°è :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "¿Ï·á: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "³²À½: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this error to Red Hat (through the bugzilla.redhat.com web site) as soon as possible. The information on this failure may be saved to a floppy disk, and will help Red Hat in fixing the problem.\n" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "µð¹ö±×" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 #, fuzzy msgid " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr " <Tab>/<Alt-Tab> ´ÙÀ½ Ç׸ñ | <Space> ¼±Åà | <F12> ´ÙÀ½ ȸé" -#: ../text.py:1010 +#: ../text.py:1004 msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen" msgstr " <Tab>/<Alt-Tab> ´ÙÀ½ Ç׸ñ | <Space> ¼±Åà | <F12> ´ÙÀ½ ȸé" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 ../text.py:1080 msgid "Welcome" msgstr "ȯ¿µÇÕ´Ï´Ù." -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "È£½ºÆ®¸í ¼³Á¤" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "³×Æ®¿öÅ© ¼³Á¤" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 ../textw/firewall_text.py:11 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "LILO ¼³Á¤" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Áö¿ª ½Ã°£´ë ¼³Á¤" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "ROOT ÆÐ½º¿öµå" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "»ç¿ëÀÚ °èÁ¤ ¼³Á¤" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "ÀÎÁõ" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "¼³Á¤ ¿Ï·á" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 ../textw/silo_text.py:213 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO ¼³Á¤" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 ../textw/lilo_text.py:217 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO ¼³Á¤" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "ÆÄƼ¼Ç ÀÚµ¿ ¼³Á¤" -#: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "ÆÄƼ¼Ç" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "ÆÄƼ¼Ç ¼öµ¿ ¼³Á¤" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "ÃÖ»óÀ§ ÆÄÀϽýºÅÛ Å©±â" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "½º¿Ò" -#: ../text.py:1117 ../textw/partitioning_text.py:390 ../textw/partitioning_text.py:410 +#: ../text.py:1111 ../textw/partitioning_text.py:390 ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "ÆÄƼ¼Ç ÀÚµ¿ ¼³Á¤" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "ÆÄÀϽýºÅÆ Æ÷¸Ë Áß" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "¸¶¿ì½º ¼³Á¤" -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "¾ð¾î ¼±ÅÃ" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "ÆÐŰÁö ±×·ì" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "°³º° ÆÐŰÁö" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "ÆÐŰÁö ÀÇÁ¸¼º" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X ¼³Á¤" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "¼³Ä¡ ½ÃÀÛ" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "½Ã½ºÅÛ ¼³Ä¡" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "ºÎÆ® µð½ºÅ©" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "¼³Ä¡ ¿Ï·á" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "½Ã½ºÅÛ °Ë»ç" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "»ç¿ëÀÚ Á¤ÀÇ ¾÷±×·¹À̵å" -#: ../text.py:1187 +#: ../text.py:1181 #, fuzzy msgid "Upgrade Begins" msgstr "¾÷±×·¹ÀÌµå °Ë»ç" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "½Ã½ºÅÛ ¾÷±×·¹À̵å" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "¾÷±×·¹ÀÌµå ¿Ï·á" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Ãë¼ÒµÊ" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "ÀÌÀü ´Ü°è·Î °¥ ¼ö ¾ø½À´Ï´Ù. Àç½ÃµµÇϽʽÿÀ." @@ -811,7 +811,7 @@ msgid "" "\n" msgstr "" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "¸¶¿îÆ® À§Ä¡" @@ -819,27 +819,27 @@ msgstr "¸¶¿îÆ® À§Ä¡" msgid "Space Needed" msgstr "ÇÊ¿äÇÑ °ø°£" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've selected. You need more file nodes on the following filesystems:\n" "\n" msgstr "" -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "ÇÊ¿äÇÑ °ø°£" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "µð½ºÅ© °ø°£" -#: ../todo.py:1847 +#: ../todo.py:1849 #, fuzzy msgid "Post Install" msgstr "¼³Ä¡" -#: ../todo.py:1848 +#: ../todo.py:1850 #, fuzzy msgid "Performing post install configuration..." msgstr "ÇöÀç ¼³Á¤À» Å×½ºÆ®" @@ -861,35 +861,35 @@ msgstr "%s¿¡ ext2 ÆÄÀϽýºÅÛ ¸¶¿îÆ® Áß ¿À·ù: %s" msgid "One or more of the filesystems for your Linux system was not unmounted cleanly. Please boot your Linux installation, let the filesystems be checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "ºñµð¿ÀÄ«µå" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "ºñµð¿À ·¥" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X ¼¹ö" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "ºñµð¿À Ä«µå¸¦ ¹ß°ßÇÏÁö ¸øÇÔ" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "¸ð´ÏÅÍ" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Ç÷¯±× ¾Ø Ç÷¡ÀÌ ¸ð´ÏÅÍ" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "¼öÆò Á֯ļö ¹üÀ§" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "¼öÁ÷ Á֯ļö ¹üÀ§" @@ -1120,7 +1120,7 @@ msgstr "È®ÀεÇÁö ¾ÊÀº ÀÇÁ¸¼º" msgid "Total install size: %s" msgstr "" -#: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "ÆÐŰÁö" @@ -1494,45 +1494,45 @@ msgstr "ÆÐŰÁö ¼³Ä¡ Áß" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Å©±â" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "¼³¸í" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "ÆÐŰÁö ±×·ì" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 #, fuzzy msgid "Total Progress: " msgstr "ÇÕ°è :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "»óÅÂ" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "ÆÐŰÁö" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "½Ã°£" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "ÇÕ°è" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "¿Ï·á" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "³²À½" @@ -3093,7 +3093,7 @@ msgstr "µÎ¹øÂ° ´Ü°è ·¥µð½ºÅ© Àд Áß..." msgid "Error loading ramdisk." msgstr "·¥µð½ºÅ© Àд Áß ¿À·ù" -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "%s µð·ºÅ͸®¸¦ ÀÐ¾î ¿ÀÁö ¸øÇÔ: %s" @@ -3181,44 +3181,44 @@ msgstr "ÀÀ±Þ º¹±¸ À̹ÌÁö°¡ ¾î¶² ÀúÀå ÀåÄ¡¿¡ ÀÖ½À´Ï±î?" msgid "What type of media contains the packages to be installed?" msgstr "¼³Ä¡ÇÒ ÆÐŰÁö°¡ ¾î¶² ÀúÀå ÀåÄ¡¿¡ ÀÖ½À´Ï±î?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "ºÎÆ® Ç÷ÎÇÇ¿¡¼ ks.cfg¸¦ ãÁö ¸øÇß½À´Ï´Ù." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 #, fuzzy msgid "Updates Disk" msgstr "¾÷µ¥ÀÌÆ®" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "°è¼ÓÇÏ·Á¸é ¾÷µ¥ÀÌÆ® µð½ºÅ©¸¦ ³Ö°í \"OK\"¸¦ ´©¸£½Ê½Ã¿À." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 #, fuzzy msgid "The floppy disk you inserted is not a valid update disk for this release of Red Hat Linux." msgstr "³ÖÀ¸½Å Ç÷ÎÇÇ µð½ºÅ©´Â ÇöÀç ¹öÁ¯ÀÇ ·¹µåÇÞ ¸®´ª½º¿¡ ¸Â´Â µå¶óÀ̹ö µð½ºÅ©°¡ ¾Æ´Õ´Ï´Ù." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Ç÷ÎÇÇ µð½ºÅ© ¸¶¿îÆ®¿¡ ½ÇÆÐÇß½À´Ï´Ù." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "¾÷µ¥ÀÌÆ®" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "¾Æ³ªÄÜ´Ù ¾÷µ¥ÀÌÆ® Àд Áß..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "¾Æ³ªÄÜ´Ù ¾÷µ¥ÀÌÆ® Àд Áß..." @@ -3650,6 +3650,698 @@ msgstr "Ä¿³Î ¸Å°³ º¯¼ö" msgid "Utilities" msgstr "" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "ÀÎÁõ" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +msgid "South Australia" +msgstr "" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "À§Ä¡" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "¿Ï·á" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "¿Ï·á" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Hungarian" +msgstr "±âŸ ¼³Á¤" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "³²À½" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "°Ë»ö Áß" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "¿Ï·á" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "Horizontal Sync" #~ msgstr "¼öÆò Á֯ļö" @@ -3739,9 +4431,6 @@ msgstr "" #~ msgid "Rebuilding" #~ msgstr "³²À½" -#~ msgid "Variant" -#~ msgstr "±âŸ ¼³Á¤" - #~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device." #~ msgstr "ºí·° ÀåÄ¡ %s¸¦ ÀдÂÁß¿¡ À߸øµÈ ¼± µð½ºÅ©·¹À̺íÀÌ ¹ß°ß µÇ¾ú½À´Ï´Ù.ÀÌ ÀåÄ¡¿¡ »õ·Î¿î ·¹À̺íÀ» ¸¸µé°í ¾²±â À§Çؼ´Â fdisk¸¦ »ç¿ëÇØ¾ß ÇÕ´Ï´Ù." @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Arjan van de Ven <arjanv@redhat.com>\n" "Language-Team: Dutch <LL@li.org>\n" @@ -17,7 +17,7 @@ msgstr "" msgid "Everything" msgstr "Alles" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -65,8 +65,8 @@ msgstr "Waarschuwing" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -154,17 +154,17 @@ msgstr "" "om de volledige 'exception' tekst te kopieren een de fout te rapporteren op " "http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Volgende" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -173,9 +173,9 @@ msgstr "Volgende" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -194,59 +194,59 @@ msgstr "Volgende" msgid "Back" msgstr "Terug" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Hulptekst weergeven" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Hulptekst verbergen" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Beeindigen" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Online helptekst" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Taalkeuze" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Sluiten" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux Installatieprogramma" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux Installatie shell" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux Installer op %s" -#: ../gui.py:728 +#: ../gui.py:727 #, fuzzy, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux Installatie Shell op %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Installatie Venster" @@ -302,17 +302,17 @@ msgstr "De CDROM kon niet gemount worden." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -431,7 +431,7 @@ msgstr "Uw systeem is gemount als de /mnt/sysimage directory" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -455,7 +455,7 @@ msgstr "" msgid "Choose the languages to be installed:" msgstr "Kies de talen die geinstalleerd moeten worden" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Taal Ondersteuning" @@ -475,7 +475,7 @@ msgstr "Standaard taal" msgid "Choose the default language: " msgstr "Kies de standaard taal: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Toetsenbord Keuze" @@ -487,7 +487,7 @@ msgstr "Wat voor toetsenbord gebruikt U voor deze computer?" msgid "Upgrade Existing Installation" msgstr "Een bestaande installatie upgraden" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Type Installatie" @@ -520,20 +520,20 @@ msgstr "U heeft geen Linux partities. U kunt dit systeem niet upgraden!" msgid "System to Upgrade" msgstr "Systeem om te upgraden" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "RAID Partitie" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Aanpassen van de uptegraden pakketten" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -549,7 +549,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -563,17 +563,17 @@ msgstr "Ja" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nee" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -594,7 +594,7 @@ msgstr "" "Als u een 'Official Red Hat Linux' heeft gekocht, bevelen wij U aan om uw " "aanschaf te registreren via onze website, http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -607,68 +607,68 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Afbreken" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Onbekende kaart" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Videokaart keuze" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Welke videokaart heeft Uw computer?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "X Server Keuze" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Kies een server" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." msgstr "" -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." msgstr "" -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Voltooid" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -681,13 +681,13 @@ msgid "" "in the Red Hat Linux manuals." msgstr "" -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -698,59 +698,59 @@ msgid "" "http://www.redhat.com/support/manuals/" msgstr "" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Pakket Installatie" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Naam : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Grootte :" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Beschr.:" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Pakketten" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bytes" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Tijd" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Totaal :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Voltooid :" -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Resterend:" -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Hulptekst niet beschikbaar" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Voor deze installatie is geen hulptekst beschikbaar" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -759,177 +759,177 @@ msgid "" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Bewaren" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Foutzoeken" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> hulp | <Tab> volgende regel | <Space> selecteren | <F12> volgend scherm" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Welkom" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Machinenaam Instelling" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Netwerk Instellingen" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Firewall Instellingen" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Tijdzone Keuze" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Root Wachtwoord" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Gebruikers Account Setup" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Configuratie Voltooid" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO Configuratie" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO Configuratie" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatische Partitionering" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partitie" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Handmatig Partitioneren" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Root Bestandssysteem Grootte" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Boot Partitie Waarschuwing" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Bestandssysteem Formateren" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Muis Configureren" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Standaard Taal" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Pakket Groepen" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Individuele Pakketten" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Pakket Afhankelijkheden" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X Configuratie" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "De installatie begint" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Installeer systeem" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Boot Disk" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Installatie Voltooid" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Systeem Onderzoeken" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Upgrade Aanpassen" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "De upgrade begint" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Systeem Upgraden" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Upgrade Voltooid" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Afgebroken" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Het is niet mogelijk om naar de vorige stap terug te gaan. Probeer opniew." @@ -1021,7 +1021,7 @@ msgid "" "\n" msgstr "" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "" @@ -1029,26 +1029,26 @@ msgstr "" msgid "Space Needed" msgstr "Benodigde schijfruimte" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" "\n" msgstr "" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Schijfruimte" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "" @@ -1072,35 +1072,35 @@ msgid "" "checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Video Kaart" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Beeldscherm" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Plug en Play Beeldscherm" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "" @@ -1333,7 +1333,7 @@ msgid "Total install size: %s" msgstr "" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Pakket" @@ -1705,43 +1705,43 @@ msgstr "Pakketten Installeren" msgid "%s KBytes" msgstr "%s KByte" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Grootte" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Overzicht" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Pakket Voortgang:" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Algemene Voortgang:" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Status" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Pakketten" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Tijd" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Totaal" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Voltooid" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Resterend" @@ -3445,7 +3445,7 @@ msgstr "" msgid "Error loading ramdisk." msgstr "" -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "" @@ -3536,44 +3536,44 @@ msgstr "" msgid "What type of media contains the packages to be installed?" msgstr "" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "" -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." msgstr "" -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "" #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "" -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "" @@ -3993,3 +3993,696 @@ msgstr "Kernel Ontwikkeling" # ../comps/comps-master:1006 msgid "Utilities" msgstr "" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +msgid "Ruthenia" +msgstr "" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Zuid Amerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Lokatie" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Beeindigen" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Beeindigen" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Resterend" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +msgid "Serbian" +msgstr "" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Beeindigen" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: install 7.1\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-02-18 20:15+01:00\n" "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n" "Language-Team: Norwegian <no@li.org>\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "Alt" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Uventet hendelse oppstod" @@ -63,8 +63,8 @@ msgstr "Advarsel" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -149,7 +149,7 @@ msgstr "" "hele teksten fra unntaksmeldingen og send inn en feilrapport på " "http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -157,11 +157,11 @@ msgstr "" "Sett inn en diskett: Alt innhold på disketten vil slettes, så vær forsiktig " "når du velger diskett." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Neste" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -170,9 +170,9 @@ msgstr "Neste" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -191,59 +191,59 @@ msgstr "Neste" msgid "Back" msgstr "Tilbake" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Kommentarer til denne utgaven" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Vis hjelp" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Skjul hjelp" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Fullfør" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Online hjelp" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Valg av språk" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Lukk" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Kommentarer til denne utgaven" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Kan ikke lese filen!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux installasjon" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux installasjonsskall" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux installasjon på %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux installasjonsskall på %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Installasjonsvindu" @@ -299,17 +299,17 @@ msgstr "Denne CD-ROMen kunne ikke monteres." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -426,7 +426,7 @@ msgstr "Systemet er montert under katalogen \"/mnt/sysimage\"." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -450,7 +450,7 @@ msgstr "Nullstill" msgid "Choose the languages to be installed:" msgstr "Velg språk som skal installeres:" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Språkstøtte" @@ -470,7 +470,7 @@ msgstr "Standardspråk" msgid "Choose the default language: " msgstr "Velg standard språk: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Tastaturvalg" @@ -482,7 +482,7 @@ msgstr "Hvilken type tastatur brukes på denne datamaskinen?" msgid "Upgrade Existing Installation" msgstr "Oppgrader ditt eksisterende system" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Installasjonstype" @@ -521,19 +521,19 @@ msgstr "Du har ingen Linux-partisjoner. Du kan ikke oppgradere dette systemet!" msgid "System to Upgrade" msgstr "System som skal oppgraderes" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "Oppgradér partisjon" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "Skal oppgradere \"/dev\"-partisjonen." -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Tilpass pakker som skal oppgraderes" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -552,7 +552,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -566,17 +566,17 @@ msgstr "Ja" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nei" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -598,7 +598,7 @@ msgstr "" "Hvis du har kjøpt Official Red Hat Linux bør du registrere kjøpet gjennom " "vårt web-sted, http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -617,42 +617,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Avbryt" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Resultater etter X-søk" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Kort som ikke er listet" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Valg av skjermkort" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Hvilket skjermkort har du?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Valg av X-tjener" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Velg en tjener" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Installeringen startes" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -661,11 +661,11 @@ msgstr "" "omstart av systemet. Du vil kanskje beholde denne filen som et " "referansepunkt til senere." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Oppgraderingen startes" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -674,17 +674,17 @@ msgstr "" "omstart av systemet. Du vil kanskje beholde denne filen som referansepunkt " "til senere." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr " <Enter> for å starte på nytt" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Ferdig" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -707,14 +707,14 @@ msgstr "" "Informasjon om konfigurasjon av systemet er tilgjengelig i brukerhåndbøkene " "for Red Hat Linux." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" " <Enter> for å avslutte " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -732,59 +732,59 @@ msgstr "" "Informasjon om videre konfigurasjon av systemet er tilgjengelig i på " "http://www.redhat.com/support/manuals/" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Pakkeinstallasjon" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Navn : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Størr. : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Sammendrag: " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Pakker" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bytes" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Tid" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Total :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Ferdig: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Gjenstår: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Hjelp ikke tilgjengelig" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Ingen hjelp tilgjengelig for denne installeringen." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Lagre krasjdump" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -798,30 +798,30 @@ msgstr "" "hjelpe Red Hat med å rette opp feilen.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Lagre" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Debug" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> for hjelp | <Tab> mellom elementer | <Mellomrom> velger | <F12> neste " "skjerm" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" @@ -829,149 +829,149 @@ msgstr "" " <Tab>/Alt-Tab> mellom elementer | <Mellomrom> velger | <F12> neste " "skjerm " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Velkommen" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Oppsett av vertsnavn" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Oppsett av nettverk" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Brannvegg-konfigurasjon" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Oppsett av tidssone" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Root-passord" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Oppsett av brukerkonto" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autentisering" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Konfigurering fullført" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO-konfigurasjon" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO-konfigurasjon" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatisk partisjonering" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partisjon" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Manuell partisjonering" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Størrelse på rot-filsystem" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Advarsel om oppstartspartisjon" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formatering av filsystem" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Konfigurasjon av mus" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Standardspråk" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Pakkegrupper" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Individuelle pakker" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Pakkeavhengigheter" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Konfigurering av X" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Installasjonen starter" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Installér system" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Oppstartsdiskett" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Installasjon ferdig" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Undersøk system" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Tilpass oppgradering" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Oppgradering starter" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Oppgradér system" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Oppgradering ferdig" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Avbrutt" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Kan ikke gå tilbake til forrige steg herfra. Du må forsøke igjen." @@ -1074,7 +1074,7 @@ msgstr "" "valgt. Du må ha mer plass på følgende filsystemer:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Monteringspunkt" @@ -1082,7 +1082,7 @@ msgstr "Monteringspunkt" msgid "Space Needed" msgstr "Nødvendig plass" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1091,19 +1091,19 @@ msgstr "" "Det ser ikke ut til at du har nok filnoder til å installere pakkene du har " "valgt. Du må ha flere filnoder på følgende filsystemer:\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Manglende noder" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Diskplass" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Etter-installasjon" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Utfører etter-installasjons konfigurasjon..." @@ -1130,35 +1130,35 @@ msgstr "" "avmontert. Vennligst start opp din Linux-installasjon, la filsystemene gå " "gjennom sjekk, og steng ned på riktig måte før du prøver å oppgradere." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Skjermkort" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Minne på skjermkort" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X-tjener" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Kunne ikke finne skjermkort" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Skjerm" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Plug and Play-skjerm" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Horisontalt frekvensområde" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Vertikalt frekvensområde" @@ -1408,7 +1408,7 @@ msgid "Total install size: %s" msgstr "Total størrelse for installasjon: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Pakke" @@ -1788,43 +1788,43 @@ msgstr "Installerer pakker" msgid "%s KBytes" msgstr "%s kBytes" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Størrelse" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Sammendrag" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Pakke for pakker: " -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Fremgang totalt: " -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Status" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Pakker" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Tid" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Total" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Ferdig" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Gjenstår" @@ -3759,7 +3759,7 @@ msgstr "Laster %s-ramdisk..." msgid "Error loading ramdisk." msgstr "Feil under lasting av ramdisk." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Kunne ikke lese katalog %s: %s" @@ -3859,19 +3859,19 @@ msgstr "Hvilken type media inneholder redningsbildet?" msgid "What type of media contains the packages to be installed?" msgstr "Hvilken type media inneholder pakkene som skal installeres?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Kan ikke finne ks.cfg på oppstartsdisketten." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Oppdateringsdiskett" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Sett inn oppdateringsdisketten og trykk \"OK\" for å fortsette." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3879,27 +3879,27 @@ msgstr "" "Disketten du satte inn er ikke en gyldig oppdateringsdiskett for denne " "utgaven av Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Kunne ikke montere disketten." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Oppdateringer" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Leser anaconda-oppdateringer..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" "Du har ikke nok systemminne til å installere Red Hat på denne maskinen." -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "Kjører anaconda - snart tilbake...\n" @@ -4323,3 +4323,698 @@ msgstr "Kjerneutvikling" msgid "Utilities" msgstr "Verktøy" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autentisering" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Sør-Amerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Plassering" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Fullfør" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Fullfør" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Gjenstår" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Søker" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Fullfør" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Red Hat installation\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-02-21 21:00+0100\n" "Last-Translator: Rafa³ Maszkowski <rzm@icm.edu.pl>\n" "Language-Team: Polish\n" @@ -18,7 +18,7 @@ msgstr "" msgid "Everything" msgstr "Szukanie" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -60,8 +60,8 @@ msgstr "Szukanie" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -135,17 +135,17 @@ msgid "" "http://bugzilla.redhat.com/bugzilla" msgstr "" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Nastêpny" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -154,9 +154,9 @@ msgstr "Nastêpny" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -175,59 +175,59 @@ msgstr "Nastêpny" msgid "Back" msgstr "Powrót" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Poka¿ pomoc" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Schowaj pomoc" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Zakoñcz" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Pomoc" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Wybór jêzyka" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Zamknij" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Instalator Linuxa Red Hat" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Shell instalatora Linuxa Red Hat" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Instalator Linuxa Red Hat na %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Shell instalatora Linuxa Red Hat na %s" -#: ../gui.py:873 +#: ../gui.py:872 #, fuzzy msgid "Install Window" msgstr "Instalacja" @@ -284,17 +284,17 @@ msgstr "" #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -403,7 +403,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -430,7 +430,7 @@ msgstr "_Zresetowanie" msgid "Choose the languages to be installed:" msgstr "Jaki rodzaj no¶nika zawiera pakiety do instalacji?" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Wybór jêzyka" @@ -455,7 +455,7 @@ msgstr "Wybierz jêzyk" msgid "Choose the default language: " msgstr "Wybierz jêzyk" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Wybór klawiatury" @@ -467,7 +467,7 @@ msgstr "Jaki jest typ klawiatury?" msgid "Upgrade Existing Installation" msgstr "Uaktualnienie istniej±cej instalacji" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Rodzaj instalacji" @@ -501,20 +501,20 @@ msgstr "" msgid "System to Upgrade" msgstr "System do uaktualnienia" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Edycja partycji" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Wybierz pakiety do uaktualnienia" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -533,7 +533,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -547,17 +547,17 @@ msgstr "Tak" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nie" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Witamy w Linuxie Red Hat" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -577,7 +577,7 @@ msgstr "" "Je¿eli naby³e¶ Oficjalnego Linuxa Red Hat, zarejestruj go na naszej stronie " "WWW: http://www.redhat.com/ ." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -595,42 +595,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Anuluj" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Wyniki próbkowania X-Window" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Inna karta" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Wybór karty graficznej" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Jaki jest typ Twojej karty graficznej?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Wybór serwera X-Window" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Wybierz rodzaj serwera" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Pocz±tek instalacji" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -639,12 +639,12 @@ msgstr "" "/tmp/install.log. Mo¿e bêdziesz chcia³ go zachowaæ do pó¼niejszego " "przejrzenia." -#: ../text.py:637 +#: ../text.py:631 #, fuzzy msgid "Upgrade to begin" msgstr "Uaktualnienie systemu" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 #, fuzzy msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " @@ -654,17 +654,17 @@ msgstr "" "/tmp/install.log. Mo¿e bêdziesz chcia³ go zachowaæ do pó¼niejszego " "przejrzenia." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Zakoñczone" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -685,13 +685,13 @@ msgstr "" "\n" "Informacje o konfiguracji systemu umieszczone s± w manualach Linuxa Red Hat." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -710,59 +710,59 @@ msgstr "" "Informacje o dalszej konfiguracji systemu umieszczone s± w rozdziale o " "postêpowaniu po instalacji w Official Red Hat Linux User's Guide." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Instalacja pakietu" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Nazwa :" -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Rozmiar:" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Opis :" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Pakiety" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bajty" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Czas" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Razem :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Gotowe : " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Pozosta³o: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -771,183 +771,183 @@ msgid "" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Debugowanie" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Linux Red Hat (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 #, fuzzy msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <Tab>/<Alt-Tab> nastêpny element | <Space> wybór | <F12> nastêpny ekran " -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> nastêpne pole | <Spacja> wybór | <F12> nastêpny ekran " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Witamy" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Nazwa komputera" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Konfiguracja sieci" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "Konfiguracja LILO" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Konfiguracja strefy czaswoej" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Has³o roota" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Konfiguracja konta u¿ytkownika" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autentykacja" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Konfiguracja zakoñczona" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Konfiguracja SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Konfiguracja LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatyczny podzia³ na partycje" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partycja" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Rêczny podzia³ na partycje" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Rozmiar filesystemu root" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "Automatyczny podzia³ dysku" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formatowanie systemu plików" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Konfiguracja myszy" -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "Wybór jêzyka" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Grupy pakietów" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Poszczególne pakiety" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Zale¿no¶ci miêdzy pakietami" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Konfiguracja X-Window" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Instalowanie siê zaczyna" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Zainstaluj system" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Dyskietka startowa" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Instalacja zakoñczona" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Sprawdzenie systemu" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Dobranie pakietów do aktualizacji" -#: ../text.py:1187 +#: ../text.py:1181 #, fuzzy msgid "Upgrade Begins" msgstr "Uaktualnienie" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Uaktualnienie systemu" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Uaktualnienie zakoñczone" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Anulowane" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Nie mogê cofn±æ siê do poprzedniego kroku. Mo¿esz spróbowaæ jeszcze raz." @@ -1042,7 +1042,7 @@ msgstr "" "Nie ma wystarczaj±cej ilo¶ci miejsca ¿eby zainstalowac wybrane pakiety. " "Potrzeba wiêcej miejsca w nastepuj±cych systemach plików:\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Miejsce zamontowania" @@ -1050,7 +1050,7 @@ msgstr "Miejsce zamontowania" msgid "Space Needed" msgstr "Wymagane miejsce" -#: ../todo.py:1803 +#: ../todo.py:1805 #, fuzzy msgid "" "You don't appear to have enough file nodes to install the packages you've " @@ -1060,20 +1060,20 @@ msgstr "" "Nie ma wystarczaj±cej ilo¶ci miejsca ¿eby zainstalowac wybrane pakiety. " "Potrzeba wiêcej miejsca w nastepuj±cych systemach plików:\n" -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "Wymagane miejsce" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Miejsce na dysku" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Po instalacji" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Konfiguracja po instalacji..." @@ -1097,35 +1097,35 @@ msgid "" "checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Karta graficzna" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Pamiêæ RAM karty graficznej" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "Serwer X" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Nie uda³o siê wykryæ karty graficznej" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Zakres czêstotliwo¶ci synchronizacji poziomej" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Zakres czêstotliwo¶ci synchronizacji pionowej" @@ -1382,7 +1382,7 @@ msgid "Total install size: %s" msgstr "" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Pakiet" @@ -1771,45 +1771,45 @@ msgstr "Instalacja pakietów" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Rozmiar" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Podsumowanie" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Grupy pakietów" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 #, fuzzy msgid "Total Progress: " msgstr "Razem :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Stan" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Pakiety" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Czas" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Razem" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Zakoñczone" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Pozosta³o" @@ -3689,7 +3689,7 @@ msgstr "£adowanie ramdysku second stage..." msgid "Error loading ramdisk." msgstr "B³±d ³adowania ramdysku." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Nie mo¿na przeczytaæ katalogu %s: %s" @@ -3793,20 +3793,20 @@ msgstr "Jakiego rodzaju no¶nik zawiera dyskietke ratunkow±?" msgid "What type of media contains the packages to be installed?" msgstr "Jaki rodzaj no¶nika zawiera pakiety do instalacji?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Nie mogê znale¼æ ks.cfg na dyskietce startowej." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 #, fuzzy msgid "Updates Disk" msgstr "Aktualizacja" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "W³ó¿ dyskietkê aktualizuj±c± i naci¶nij \"OK\" ¿eby kontynuowaæ." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 #, fuzzy msgid "" "The floppy disk you inserted is not a valid update disk for this release of " @@ -3815,26 +3815,26 @@ msgstr "" "Dyskietka, któr± w³o¿y³e¶ nie jest prawid³ow± dyskietk± ze staerownikami dla " "tej wersji Linuxa Red Hat." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Nie uda³o siê zamontowaæ dyskietki." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Aktualizacja" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Wczytywanie aktualizacji anacondy..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "Wczytywanie aktualizacji anacondy..." @@ -4283,6 +4283,700 @@ msgstr "Parametry j±dra" msgid "Utilities" msgstr "" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autentykacja" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +msgid "South Australia" +msgstr "" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Po³o¿enie" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Zakoñcz" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Zakoñcz" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Pozosta³o" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Szukanie" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Zakoñcz" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "Horizontal Sync" #~ msgstr "Synchronizacja pozioma" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: install\n" -"POT-Creation-Date: 2001-02-19 18:55-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-02-18 18:57+00:00\n" "Last-Translator: Pedro Morais <morais@kde.org>\n" "Language-Team: Portuguese <morais@kde.org>\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "Tudo" -#: ../exception.py:13 ../text.py:926 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Ocorreu uma Excepção" @@ -56,23 +56,23 @@ msgstr "" msgid "Warning" msgstr "Aviso" -#: ../fstab.py:320 ../fstab.py:514 ../fstab.py:614 ../fstab.py:823 +#: ../fstab.py:316 ../fstab.py:510 ../fstab.py:610 ../fstab.py:814 #: ../harddrive.py:173 ../image.py:64 ../image.py:141 #: ../libfdisk/newtfsedit.c:1743 ../loader/devices.c:259 #: ../loader/devices.c:266 ../loader/devices.c:433 ../loader/devices.c:478 #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2152 ../loader/loader.c:2182 -#: ../loader/loader.c:2260 ../loader/loader.c:2472 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 -#: ../text.py:357 ../textw/bootdisk_text.py:69 ../todo.py:1148 ../todo.py:1161 -#: ../todo.py:1484 ../upgrade.py:22 ../upgrade.py:50 +#: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 +#: ../todo.py:1493 ../upgrade.py:22 ../upgrade.py:50 msgid "Error" msgstr "Erro" -#: ../fstab.py:321 +#: ../fstab.py:317 msgid "" "The kernel is unable to read your new partitioning information, probably " "because you modified extended partitions. While this is not critical, you " @@ -84,47 +84,47 @@ msgstr "" "reiniciar o seu computador antes de continuar. Insira a disquete de arranque " "do Red Hat e carregue em \"Ok\" para reiniciar o seu computador.\n" -#: ../fstab.py:503 ../fstab.py:772 ../fstab.py:1209 +#: ../fstab.py:499 ../fstab.py:761 ../fstab.py:1199 msgid "Formatting" msgstr "Formatando" -#: ../fstab.py:504 +#: ../fstab.py:500 #, c-format msgid "Formatting swap space on /dev/%s..." msgstr "A formatar memória virtual em /dev/%s..." -#: ../fstab.py:514 +#: ../fstab.py:510 msgid "Error creating swap on device " msgstr "Erro ao criar memória virtual no dispositivo " -#: ../fstab.py:615 +#: ../fstab.py:611 #, c-format msgid "Error unmounting %s: %s" msgstr "Erro ao desmontar %s: %s" -#: ../fstab.py:666 ../todo.py:697 +#: ../fstab.py:662 ../todo.py:702 msgid "Creating" msgstr "A criar" -#: ../fstab.py:666 +#: ../fstab.py:662 msgid "Creating RAID devices..." msgstr "A criar dispositivos RAID..." -#: ../fstab.py:707 +#: ../fstab.py:703 msgid "Loopback" msgstr "\"Loopback\"" -#: ../fstab.py:708 +#: ../fstab.py:704 #, c-format msgid "Creating loopback filesystem on device /dev/%s..." msgstr "A criar sistema de ficheiros \"loopback\" no dispositivo /dev/%s..." -#: ../fstab.py:773 ../fstab.py:1210 +#: ../fstab.py:762 ../fstab.py:1200 #, c-format msgid "Formatting %s filesystem..." msgstr "A formatar o sistema de ficheiros %s..." -#: ../fstab.py:824 +#: ../fstab.py:815 #, c-format msgid "" "Error mounting device %s as %s: %s\n" @@ -148,7 +148,7 @@ msgstr "" "Ocorreu um erro. Provavelmente encontrou um 'bug'. Por favor copie o texto " "da excepção ocorrida e reporte um erro em http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:316 ../text.py:944 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -156,24 +156,24 @@ msgstr "" "Por favor insira uma disquete. Todo o conteúdo desta será apagado, por isso " "escolha cuidadosamente a disquete." -#: ../gui.py:412 ../gui.py:779 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Próximo" -#: ../gui.py:413 ../gui.py:778 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 -#: ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1511 +#: ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1516 #: ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 -#: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:99 ../text.py:58 +#: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 -#: ../text.py:225 ../text.py:305 ../text.py:360 ../text.py:378 ../text.py:381 -#: ../text.py:400 ../text.py:403 ../text.py:425 ../text.py:428 ../text.py:485 -#: ../text.py:488 ../text.py:514 ../text.py:518 ../text.py:527 ../text.py:600 -#: ../text.py:602 ../text.py:612 ../text.py:614 ../textw/bootdisk_text.py:30 -#: ../textw/firewall_text.py:9 ../textw/lilo_text.py:34 -#: ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 +#: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 +#: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 +#: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 #: ../textw/mouse_text.py:28 ../textw/mouse_text.py:55 #: ../textw/mouse_text.py:81 ../textw/network_text.py:102 @@ -190,59 +190,59 @@ msgstr "Próximo" msgid "Back" msgstr "Anterior" -#: ../gui.py:414 ../gui.py:784 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Mostrar Ajuda" -#: ../gui.py:415 ../gui.py:783 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Esconder Ajuda" -#: ../gui.py:416 ../gui.py:782 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Terminar" -#: ../gui.py:419 ../gui.py:814 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Ajuda \"Online\"" -#: ../gui.py:420 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1016 ../text.py:1049 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Seleccione a língua" -#: ../gui.py:527 ../iw/firewall_gui.py:125 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Fechar" -#: ../gui.py:532 ../gui.py:781 +#: ../gui.py:541 ../gui.py:790 msgid "Release Notes" msgstr "Notas de Lançamento" -#: ../gui.py:563 +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Não consegui carregar ficheiro!" -#: ../gui.py:702 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Instalação do Red Hat Linux" -#: ../gui.py:706 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Instalador do Red Hat Linux" -#: ../gui.py:717 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Instalador do Red Hat Linux em %s" -#: ../gui.py:718 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Instalador do Red Hat Linux em %s" -#: ../gui.py:863 +#: ../gui.py:872 msgid "Install Window" msgstr "Janela de Instalação" @@ -297,18 +297,18 @@ msgstr "Não foi possível montar CDROM." #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:907 #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 -#: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1511 -#: ../loader/loader.c:2152 ../loader/loader.c:2182 ../loader/loader.c:2245 -#: ../loader/loader.c:2260 ../loader/loader.c:2472 ../loader/net.c:185 -#: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:668 -#: ../loader/net.c:701 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 +#: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 +#: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 -#: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:17 ../rescue.py:67 -#: ../rescue.py:85 ../rescue.py:93 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:378 ../text.py:425 ../text.py:443 -#: ../text.py:485 ../text.py:514 ../text.py:600 ../text.py:612 ../text.py:641 -#: ../text.py:662 ../text.py:832 ../text.py:886 ../text.py:912 ../text.py:938 -#: ../text.py:946 ../text.py:961 ../text.py:1205 ../textw/bootdisk_text.py:52 +#: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 +#: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -331,32 +331,32 @@ msgstr "Não foi possível montar CDROM." msgid "OK" msgstr "OK" -#: ../rescue.py:36 +#: ../rescue.py:38 msgid "WARNING: no valid block devices were found.\n" msgstr "AVISO: não foi encontrada nenhum dispositivo de bloco válido.\n" -#: ../rescue.py:38 +#: ../rescue.py:40 msgid "ERROR: unknown error encountered reading partition tables.\n" msgstr "ERRO: erro desconhecido ao ler tabelas de partições.\n" -#: ../rescue.py:64 +#: ../rescue.py:88 msgid "System to Rescue" msgstr "Sistema a Recuperar" -#: ../rescue.py:65 ../text.py:376 +#: ../rescue.py:89 ../text.py:393 msgid "What partition holds the root partition of your installation?" msgstr "Em que partição está o directório root de sua máquina?" -#: ../iw/congrats_gui.py:13 ../iw/congrats_gui.py:62 ../rescue.py:67 -#: ../rescue.py:71 +#: ../iw/congrats_gui.py:13 ../iw/congrats_gui.py:62 ../rescue.py:91 +#: ../rescue.py:95 ../text.py:348 msgid "Exit" msgstr "Sair" -#: ../rescue.py:81 ../rescue.py:88 +#: ../rescue.py:105 ../rescue.py:112 msgid "Rescue" msgstr "Recuperação" -#: ../rescue.py:82 +#: ../rescue.py:106 msgid "" "Your system has been mounted under /mnt/sysimage.\n" "\n" @@ -368,7 +368,7 @@ msgstr "" "Carregue em <return> para obter uma 'shell'. O sistema será reiniciado " "automaticamente quando sair da 'shell'." -#: ../rescue.py:89 +#: ../rescue.py:113 msgid "" "An error occured trying to mount some or all of your system. Some of it may " "be mounted under /mnt/sysimage.\n" @@ -382,11 +382,11 @@ msgstr "" "Carregue em <return> para obter uma 'shell'. O sistema irá reiniciar-se " "automaticamente quando sair da 'shell'." -#: ../rescue.py:95 +#: ../rescue.py:119 msgid "Rescue Mode" msgstr "Método de Recuperação" -#: ../rescue.py:96 +#: ../rescue.py:120 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." @@ -394,16 +394,16 @@ msgstr "" "Não tem nenhuma partição de Linux. Carregue em return para obter uma " "'shell'. O sistema irá reiniciar-se automaticamente quando sair da 'shell'." -#: ../rescue.py:108 +#: ../rescue.py:132 msgid "Your system is mounted under the /mnt/sysimage directory." msgstr "O seu sistema está montado na directoria /mnt/sysimage." #. code to create dialog in gtk+ -#: ../iw/package_gui.py:470 ../libfdisk/fsedit.c:918 ../libfdisk/fsedit.c:925 -#: ../libfdisk/fsedit.c:932 ../libfdisk/fsedit.c:941 ../libfdisk/fsedit.c:968 -#: ../libfdisk/fsedit.c:981 ../libfdisk/fsedit.c:991 ../libfdisk/fsedit.c:1020 -#: ../libfdisk/fsedit.c:1030 ../libfdisk/fsedit.c:1047 -#: ../libfdisk/fsedit.c:1464 ../libfdisk/gnomefsedit.c:756 +#: ../iw/package_gui.py:470 ../libfdisk/fsedit.c:921 ../libfdisk/fsedit.c:928 +#: ../libfdisk/fsedit.c:935 ../libfdisk/fsedit.c:944 ../libfdisk/fsedit.c:971 +#: ../libfdisk/fsedit.c:984 ../libfdisk/fsedit.c:994 ../libfdisk/fsedit.c:1023 +#: ../libfdisk/fsedit.c:1033 ../libfdisk/fsedit.c:1050 +#: ../libfdisk/fsedit.c:1467 ../libfdisk/gnomefsedit.c:756 #: ../libfdisk/gnomefsedit.c:788 ../libfdisk/gnomefsedit.c:879 #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:1262 #: ../libfdisk/gnomefsedit.c:1299 ../libfdisk/gnomefsedit.c:1333 @@ -425,11 +425,11 @@ msgstr "O seu sistema está montado na directoria /mnt/sysimage." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:527 ../textw/lilo_text.py:123 -#: ../textw/lilo_text.py:208 ../textw/mouse_text.py:27 -#: ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:420 -#: ../textw/silo_text.py:136 ../textw/silo_text.py:149 -#: ../textw/silo_text.py:205 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 +#: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 +#: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 +#: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 +#: ../textw/silo_text.py:149 ../textw/silo_text.py:205 msgid "Ok" msgstr "Ok" @@ -449,7 +449,7 @@ msgstr "Reiniciar" msgid "Choose the languages to be installed:" msgstr "Escolha as línguas a instalar:" -#: ../text.py:135 ../text.py:1112 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Suporte a Línguas" @@ -469,7 +469,7 @@ msgstr "Escolha a Língua" msgid "Choose the default language: " msgstr "Escolha a língua por omissão: " -#: ../text.py:220 ../text.py:1018 ../text.py:1055 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Seleccione o teclado" @@ -481,7 +481,7 @@ msgstr "Que tipo de teclado está ligado a este computador?" msgid "Upgrade Existing Installation" msgstr "Actualizar instalação actual" -#: ../text.py:303 ../text.py:1058 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Tipo de instalação" @@ -489,21 +489,47 @@ msgstr "Tipo de instalação" msgid "What type of system would you like to install?" msgstr "Que tipo de sistema deseja instalar?" -#: ../text.py:358 +#: ../iw/lilo_gui.py:50 ../text.py:340 +msgid "Proceed with upgrade?" +msgstr "" + +#: ../iw/lilo_gui.py:51 ../text.py:341 +msgid "" +"The filesystems of the Linux installation you have chosen to upgrade have " +"already been mounted. You cannot go back past this point. \n" +"\n" +msgstr "" + +#: ../text.py:345 +msgid "" +"If you would like to exit the upgrade select Exit, or choose Ok to continue " +"with the upgrade." +msgstr "" + +#: ../text.py:375 msgid "You don't have any Linux partitions. You can't upgrade this system!" msgstr "" "Nenhuma partição Linux foi encontrada. Não é possível actualizar o seu " "sistema!" -#: ../text.py:375 +#: ../text.py:392 msgid "System to Upgrade" msgstr "Sistema a Actualizar" -#: ../text.py:392 +#: ../text.py:405 +#, fuzzy +msgid "Upgrade Partition" +msgstr "Partição Raid" + +#: ../text.py:406 +msgid "Going to upgrade partition /dev/" +msgstr "" + +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Modificar pacotes a actualizar" -#: ../text.py:393 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -514,39 +540,39 @@ msgstr "" "instalação. Deseja escolher o conjunto de pacotes a ser actualizado?" #: ../iw/rootpartition_gui.py:503 ../iw/welcome_gui.py:89 -#: ../libfdisk/fsedit.c:949 ../libfdisk/gnomefsedit.c:829 +#: ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 #: ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 #: ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 #: ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:835 -#: ../text.py:400 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" msgstr "Sim" #: ../iw/rootpartition_gui.py:505 ../iw/welcome_gui.py:92 -#: ../libfdisk/fsedit.c:949 ../libfdisk/gnomefsedit.c:829 +#: ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 #: ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 #: ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 #: ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:835 ../text.py:400 ../text.py:406 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Não" -#: ../text.py:416 ../text.py:435 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:417 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -566,7 +592,7 @@ msgstr "" "Se você comprou o Red Hat Linux, certifique-se que registra a sua compra " "através do servidor www, http://www.redhat.com." -#: ../text.py:436 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -585,42 +611,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2245 ../loader/pcmcia.c:104 -#: ../text.py:443 ../text.py:446 ../text.py:832 ../text.py:833 ../text.py:946 -#: ../text.py:948 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Cancelar" -#: ../text.py:483 +#: ../text.py:506 msgid "X probe results" msgstr "Resultado da busca" -#: ../text.py:503 ../text.py:523 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Placa desconhecida" -#: ../text.py:511 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Selecção da Placa Gráfica" -#: ../text.py:512 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Qual é a placa gráfica que possui?" -#: ../text.py:525 +#: ../text.py:548 msgid "X Server Selection" msgstr "Selecção do servidor X" -#: ../text.py:525 +#: ../text.py:548 msgid "Choose a server" msgstr "Escolha um servidor" -#: ../text.py:596 +#: ../text.py:619 msgid "Installation to begin" msgstr "Instalar prestes a iniciar" -#: ../iw/confirm_gui.py:45 ../text.py:597 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -629,11 +655,11 @@ msgstr "" "reinicialização de seu sistema. Pode desejar manter este arquivo para " "referência futura." -#: ../text.py:608 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Actualização vai começar" -#: ../iw/confirm_gui.py:41 ../text.py:609 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -642,18 +668,18 @@ msgstr "" "reinicialização de seu sistema. Pode desejar manter este arquivo para " "referência futura." -#: ../text.py:628 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" " <Return> para reiniciar " -#: ../text.py:630 ../text.py:653 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Instalação Terminada com Sucesso" -#: ../iw/congrats_gui.py:34 ../text.py:631 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -677,7 +703,7 @@ msgstr "" "Informações sobre a configuração do seu sistema estão disponíveis nos " "manuais do Red Hat Linux." -#: ../text.py:649 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -685,7 +711,7 @@ msgstr "" " <Return> para sair " " " -#: ../text.py:654 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -703,59 +729,59 @@ msgstr "" "Informações sobre a configuração do seu sistema estão disponíveis em\n" "http://www.redhat.com/support/manuals/" -#: ../text.py:721 +#: ../text.py:744 msgid "Package Installation" msgstr "Instalação de Pacotes" -#: ../text.py:723 +#: ../text.py:746 msgid "Name : " msgstr "Nome : " -#: ../text.py:724 +#: ../text.py:747 msgid "Size : " msgstr "Tamanho: " -#: ../text.py:725 +#: ../text.py:748 msgid "Summary: " msgstr "Sumário: " -#: ../text.py:751 +#: ../text.py:774 msgid " Packages" msgstr " Pacotes" -#: ../text.py:752 +#: ../text.py:775 msgid " Bytes" msgstr " Bytes" -#: ../text.py:753 +#: ../text.py:776 msgid " Time" msgstr " Tempo" -#: ../text.py:755 +#: ../text.py:778 msgid "Total :" msgstr "Total :" -#: ../text.py:762 +#: ../text.py:785 msgid "Completed: " msgstr "Concluído: " -#: ../text.py:772 +#: ../text.py:795 msgid "Remaining: " msgstr "Falta: " -#: ../text.py:884 +#: ../text.py:907 msgid "Help not available" msgstr "Ajuda não disponível" -#: ../text.py:885 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Nenhuma ajuda disponível nesta instalação." -#: ../text.py:943 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Gravar Informações do Estoiro" -#: ../text.py:954 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -768,209 +794,209 @@ msgstr "" "depressa possível. Os dados deste erro podem ser gravados para uma disquete, " "e isso poderá ajudar a Red Hat a corrigir o problema.\n" -#: ../text.py:961 ../text.py:964 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Gravar" -#: ../text.py:961 ../text.py:962 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Depuração" -#: ../text.py:972 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:976 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:979 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> ajuda | <Tab> entre elementos | <Espaço> selecciona | <F12> continuar " -#: ../text.py:981 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> entre elementos | <Espaço> selecciona | <F12> continuar " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1014 -#: ../text.py:1057 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Bem vindo" -#: ../text.py:1020 ../text.py:1103 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Configuração do Nome da Máquina" -#: ../text.py:1022 ../text.py:1100 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Configuração da Rede" -#: ../iw/firewall_gui.py:12 ../text.py:1024 ../text.py:1105 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Configuração de \"Firewall\"" -#: ../text.py:1032 ../text.py:1117 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Configuração do Fuso Horário" -#: ../text.py:1034 ../text.py:1119 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Senha de Root" -#: ../text.py:1036 ../text.py:1121 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Configuração de contas de utilizadores" -#: ../text.py:1038 ../text.py:1123 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autenticação" -#: ../text.py:1044 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Configuração Completa" -#: ../text.py:1066 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Configuração do SILO" -#: ../text.py:1072 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Configuração do LILO" -#: ../text.py:1076 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Particionamento Automático" -#: ../iw/lilo_gui.py:205 ../iw/lilo_gui.py:364 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1078 ../text.py:1082 +#: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partição" -#: ../text.py:1080 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Particionamento Manual" -#: ../text.py:1084 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Tamanho do sistema de ficheiros \"root\"" -#: ../text.py:1086 +#: ../text.py:1109 msgid "Swap" msgstr "Memória Virtual" -#: ../text.py:1088 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Aviso da Partição de Arranque" -#: ../text.py:1090 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formatando" -#: ../iw/mouse_gui.py:56 ../text.py:1107 ../text.py:1109 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Configuração do Rato" -#: ../text.py:1114 +#: ../text.py:1137 msgid "Language Default" msgstr "Língua por omissão" -#: ../text.py:1125 +#: ../text.py:1148 msgid "Package Groups" msgstr "Grupos de Pacotes" -#: ../text.py:1127 ../text.py:1155 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Pacotes Individuais" -#: ../text.py:1129 ../text.py:1156 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Dependências dos Pacotes" -#: ../iw/xconfig_gui.py:899 ../text.py:1131 ../text.py:1139 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Configuração do X" -#: ../text.py:1133 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Inicio da Instalação" -#: ../text.py:1135 +#: ../text.py:1158 msgid "Install System" msgstr "Instalar sistema" -#: ../text.py:1136 ../text.py:1138 ../text.py:1161 ../text.py:1163 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Disquete de Arranque" -#: ../text.py:1141 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Instalação Concluída" -#: ../text.py:1146 +#: ../text.py:1169 msgid "Examine System" msgstr "Examinar Sistema" -#: ../text.py:1153 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Personalizar Actualização" -#: ../text.py:1158 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Actualização Começou" -#: ../text.py:1160 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Actualizar Sistema" -#: ../text.py:1164 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Actualização Concluída" -#: ../text.py:1202 +#: ../text.py:1225 msgid "Cancelled" msgstr "Cancelado" -#: ../text.py:1203 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Não posso ir para o passo anterior a partir daqui. Vai ter que tentar " "novamente." -#: ../todo.py:697 +#: ../todo.py:702 msgid "Creating boot disk..." msgstr "A criar disquete de arranque..." -#: ../todo.py:716 +#: ../todo.py:721 msgid "Reading" msgstr "A ler" -#: ../todo.py:717 +#: ../todo.py:722 msgid "Reading package information..." msgstr "A ler informações sobre pacotes..." -#: ../todo.py:990 +#: ../todo.py:999 msgid "Dependency Check" msgstr "Verificação de Dependências" -#: ../todo.py:991 +#: ../todo.py:1000 msgid "Checking dependencies in packages selected for installation..." msgstr "A verificar as dependências dos pacotes seleccionados..." -#: ../todo.py:1016 ../todo.py:1061 ../todo.py:1067 ../todo.py:1084 -#: ../todo.py:1214 +#: ../todo.py:1025 ../todo.py:1070 ../todo.py:1076 ../todo.py:1093 +#: ../todo.py:1223 msgid "no suggestion" msgstr "sem sugestão" -#: ../todo.py:1100 +#: ../todo.py:1109 msgid "" "One or more of the filesystems listed in the /etc/fstab on your Linux system " "cannot be mounted. Please fix this problem and try to upgrade again." @@ -979,7 +1005,7 @@ msgstr "" "sistema Linux não pode ser montado. Corrija este problema e tente novamente " "a actualização." -#: ../todo.py:1118 +#: ../todo.py:1127 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 " @@ -991,32 +1017,32 @@ msgstr "" "simbólicas relativas e reinicie a actualização.\n" "\n" -#: ../todo.py:1133 +#: ../todo.py:1142 msgid "Finding" msgstr "A procurar" -#: ../todo.py:1134 +#: ../todo.py:1143 msgid "Finding packages to upgrade..." msgstr "A procurar pacotes para actualizar..." -#: ../todo.py:1149 +#: ../todo.py:1158 msgid "Rebuild of RPM database failed. You may be out of disk space?" msgstr "" "Reconstrução da base de dados de RPMs falhou. Falta de espaço em disco?" -#: ../todo.py:1162 +#: ../todo.py:1171 msgid "An error occured when finding the packages to upgrade." msgstr "Ocorreu um erro ao procurar pacotes para actualizar." -#: ../todo.py:1450 +#: ../todo.py:1459 msgid "Processing" msgstr "A processar" -#: ../todo.py:1451 +#: ../todo.py:1460 msgid "Preparing to install..." msgstr "A preparar para instalar..." -#: ../todo.py:1485 +#: ../todo.py:1494 #, c-format msgid "" "The file %s cannot be opened. This is due to a missing file, a bad package, " @@ -1026,17 +1052,17 @@ msgstr "" "pacote estragado ou a erro no meio físico de distribuição. Carregue em " "<return> para tentar novamente." -#: ../todo.py:1731 +#: ../todo.py:1740 #, c-format msgid "Upgrading %s.\n" msgstr "A actualizar %s.\n" -#: ../todo.py:1733 +#: ../todo.py:1742 #, c-format msgid "Installing %s.\n" msgstr "A instalar %s.\n" -#: ../todo.py:1778 +#: ../todo.py:1787 msgid "" "You don't appear to have enough disk space to install the packages you've " "selected. You need more space on the following filesystems:\n" @@ -1045,15 +1071,15 @@ msgstr "" "Parece que não tem espaço em disco suficiente para instalar todos os pacotes " "que seleccionou. Precisa de mais espaço nas seguintes partições:\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1781 ../todo.py:1797 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Ponto de Montagem" -#: ../todo.py:1781 +#: ../todo.py:1790 msgid "Space Needed" msgstr "Espaço Necessário" -#: ../todo.py:1794 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1062,19 +1088,19 @@ msgstr "" "Parece que não tem nodos de ficheiro suficientes para instalar os pacotes " "que seleccionou. Precisa de mais nodos de ficheiro nas seguintes partições:\n" -#: ../todo.py:1797 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Nodos Necessários" -#: ../todo.py:1803 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Espaço em Disco" -#: ../todo.py:1838 +#: ../todo.py:1849 msgid "Post Install" msgstr "Pós-Instalação" -#: ../todo.py:1839 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "A executar a configuração pós-instalação..." @@ -1091,7 +1117,7 @@ msgstr "A procurar instalações de Red Hat Linux..." msgid "Error mounting ext2 filesystem on %s: %s" msgstr "Erro ao montar sistema de ficheiro ext2 em %s: %s" -#: ../upgrade.py:97 +#: ../upgrade.py:98 msgid "" "One or more of the filesystems for your Linux system was not unmounted " "cleanly. Please boot your Linux installation, let the filesystems be " @@ -1102,35 +1128,35 @@ msgstr "" "que os sistemas de ficheiros sejam verificados, e desligue o sistema de " "forma correcta antes de tentar actualizá-lo." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:960 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Placa Gráfica" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:962 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Memória Vídeo" -#: ../xf86config.py:965 +#: ../xf86config.py:939 msgid "X server" msgstr "Servidor X" -#: ../xf86config.py:968 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Não consegui detectar placa gráfica" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:975 ../xf86config.py:977 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:977 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor \"Plug and Play\"" -#: ../xf86config.py:979 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Gama de frequências horizontais" -#: ../xf86config.py:981 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Gama de frequências verticais" @@ -1154,6 +1180,10 @@ msgstr "" msgid "Use text mode" msgstr "Utilizar modo texto" +#: ../xserver.py:69 +msgid "Probing for mouse type..." +msgstr "" + #: ../iw/account_gui.py:15 msgid "Account Configuration" msgstr "Configuração de Contas" @@ -1424,43 +1454,43 @@ msgstr "fdisk" msgid "Select drive to run fdisk on" msgstr "Escolha a unidade onde quer correr o fdisk" -#: ../iw/firewall_gui.py:119 +#: ../iw/firewall_gui.py:117 msgid "Warning: " msgstr "Aviso: " -#: ../iw/firewall_gui.py:119 +#: ../iw/firewall_gui.py:117 msgid " is an invalid port." msgstr " é um porto inválida." -#: ../iw/firewall_gui.py:122 +#: ../iw/firewall_gui.py:120 msgid "The format is 'port:protocol'. For example, '1234:udp'" msgstr "O formato é 'porto:protocolo'. Por exemplo, '1234:udp'" -#: ../iw/firewall_gui.py:206 +#: ../iw/firewall_gui.py:204 msgid "Please choose your security level: " msgstr "Por favor escolha o nível de segurança: " -#: ../iw/firewall_gui.py:215 ../textw/firewall_text.py:33 +#: ../iw/firewall_gui.py:213 ../textw/firewall_text.py:33 msgid "High" msgstr "Alto" -#: ../iw/firewall_gui.py:216 ../textw/firewall_text.py:36 +#: ../iw/firewall_gui.py:214 ../textw/firewall_text.py:36 msgid "Medium" msgstr "Médio" -#: ../iw/firewall_gui.py:217 ../textw/firewall_text.py:39 +#: ../iw/firewall_gui.py:215 ../textw/firewall_text.py:39 msgid "No firewall" msgstr "Sem \"firewall\"" -#: ../iw/firewall_gui.py:233 +#: ../iw/firewall_gui.py:231 msgid "Use default firewall rules" msgstr "Utilizar regras de \"firewall\" por omissão" -#: ../iw/firewall_gui.py:234 ../textw/firewall_text.py:9 +#: ../iw/firewall_gui.py:232 ../textw/firewall_text.py:9 msgid "Customize" msgstr "Personalizar" -#: ../iw/firewall_gui.py:247 +#: ../iw/firewall_gui.py:245 msgid "Trusted devices:" msgstr "Dispositivos de Confiança:" @@ -1496,27 +1526,27 @@ msgstr "Actualizar" msgid "Keyboard Configuration" msgstr "Configuração do Teclado" -#: ../iw/keyboard_gui.py:86 +#: ../iw/keyboard_gui.py:87 msgid "Model" msgstr "Modelo" -#: ../iw/keyboard_gui.py:106 +#: ../iw/keyboard_gui.py:107 msgid "Layout" msgstr "Disposição" -#: ../iw/keyboard_gui.py:126 +#: ../iw/keyboard_gui.py:127 msgid "Dead Keys" msgstr "Teclas \"Mortas\" (acentos)" -#: ../iw/keyboard_gui.py:135 +#: ../iw/keyboard_gui.py:137 msgid "Enable dead keys" msgstr "Activar teclas \"mortas\"" -#: ../iw/keyboard_gui.py:136 +#: ../iw/keyboard_gui.py:138 msgid "Disable dead keys" msgstr "Desactivar teclas \"mortas\"" -#: ../iw/keyboard_gui.py:145 +#: ../iw/keyboard_gui.py:151 msgid "Test your selection here:" msgstr "Teste a sua configuração aqui:" @@ -1540,69 +1570,79 @@ msgstr "Escolher todas" msgid "Select as default" msgstr "Seleccionar por omissão" -#: ../iw/lilo_gui.py:30 +#: ../iw/lilo_gui.py:32 msgid "Lilo Configuration" msgstr "Configuração do LILO" -#: ../iw/lilo_gui.py:208 ../iw/lilo_gui.py:365 ../iw/silo_gui.py:132 +#: ../iw/lilo_gui.py:55 +#, fuzzy +msgid "Would you like to continue with the upgrade?" +msgstr "Quer configurar o seu computador?" + +#: ../iw/lilo_gui.py:64 +#, fuzzy +msgid "Aborting upgrade" +msgstr "Prestes a Actualizar" + +#: ../iw/lilo_gui.py:233 ../iw/lilo_gui.py:394 ../iw/silo_gui.py:132 #: ../iw/silo_gui.py:281 ../libfdisk/gnomefsedit.c:3136 msgid "Type" msgstr "Tipo" -#: ../iw/lilo_gui.py:253 +#: ../iw/lilo_gui.py:282 msgid "Install LILO boot record on:" msgstr "Instalar LILO no:" -#: ../iw/lilo_gui.py:260 ../iw/silo_gui.py:173 ../textw/lilo_text.py:87 +#: ../iw/lilo_gui.py:289 ../iw/silo_gui.py:173 ../textw/lilo_text.py:87 #: ../textw/silo_text.py:64 msgid "Master Boot Record (MBR)" msgstr "Master Boot Record (MBR)" -#: ../iw/lilo_gui.py:264 ../iw/silo_gui.py:176 ../textw/lilo_text.py:88 +#: ../iw/lilo_gui.py:293 ../iw/silo_gui.py:176 ../textw/lilo_text.py:88 #: ../textw/silo_text.py:65 msgid "First sector of boot partition" msgstr "Primeiro sector da partição de arranque" -#: ../iw/lilo_gui.py:268 ../textw/lilo_text.py:27 +#: ../iw/lilo_gui.py:297 ../textw/lilo_text.py:27 msgid "Use linear mode (needed for some SCSI drives)" msgstr "Utilizar modo linear (necessário para alguns dispositivos SCSI)" -#: ../iw/lilo_gui.py:279 ../iw/silo_gui.py:208 +#: ../iw/lilo_gui.py:308 ../iw/silo_gui.py:208 msgid "Kernel parameters" msgstr "Parâmetros do núcleo" -#: ../iw/lilo_gui.py:296 ../iw/silo_gui.py:226 +#: ../iw/lilo_gui.py:325 ../iw/silo_gui.py:226 msgid "Create boot disk" msgstr "Criar disquete de arranque" -#: ../iw/lilo_gui.py:310 +#: ../iw/lilo_gui.py:339 msgid "Install LILO" msgstr "Instalar LILO" -#: ../iw/lilo_gui.py:337 ../iw/silo_gui.py:257 ../textw/lilo_text.py:199 +#: ../iw/lilo_gui.py:366 ../iw/silo_gui.py:257 ../textw/lilo_text.py:199 #: ../textw/silo_text.py:196 msgid "Default" msgstr "Por omissão" -#: ../iw/lilo_gui.py:337 ../iw/mouse_gui.py:145 ../iw/silo_gui.py:257 +#: ../iw/lilo_gui.py:366 ../iw/mouse_gui.py:145 ../iw/silo_gui.py:257 #: ../libfdisk/gnomefsedit.c:3133 ../textw/lilo_text.py:118 #: ../textw/lilo_text.py:199 ../textw/mouse_text.py:25 #: ../textw/silo_text.py:131 ../textw/silo_text.py:196 msgid "Device" msgstr "Dispositivo" -#: ../iw/lilo_gui.py:337 ../iw/silo_gui.py:257 ../textw/lilo_text.py:199 +#: ../iw/lilo_gui.py:366 ../iw/silo_gui.py:257 ../textw/lilo_text.py:199 #: ../textw/silo_text.py:196 msgid "Partition type" msgstr "Tipo da partição" -#: ../iw/lilo_gui.py:337 ../iw/lilo_gui.py:376 ../iw/silo_gui.py:257 +#: ../iw/lilo_gui.py:366 ../iw/lilo_gui.py:405 ../iw/silo_gui.py:257 #: ../iw/silo_gui.py:292 ../textw/lilo_text.py:119 ../textw/lilo_text.py:199 #: ../textw/silo_text.py:132 ../textw/silo_text.py:196 msgid "Boot label" msgstr "Nome" -#: ../iw/lilo_gui.py:372 ../iw/silo_gui.py:288 +#: ../iw/lilo_gui.py:401 ../iw/silo_gui.py:288 msgid "Default boot image" msgstr "Imagem de arranque por omissão" @@ -1646,7 +1686,7 @@ msgstr "Activar ao arrancar" msgid "IP Address" msgstr "Endereço IP" -#: ../iw/network_gui.py:194 ../loader/net.c:752 +#: ../iw/network_gui.py:194 ../loader/net.c:762 msgid "Netmask" msgstr "Máscara" @@ -1658,24 +1698,24 @@ msgstr "Rede" msgid "Broadcast" msgstr "Broadcast" -#: ../iw/network_gui.py:242 ../loader/net.c:556 ../loader/net.c:754 +#: ../iw/network_gui.py:248 ../loader/net.c:566 ../loader/net.c:764 #: ../textw/network_text.py:161 msgid "Hostname" msgstr "Máquina" -#: ../iw/network_gui.py:243 +#: ../iw/network_gui.py:249 msgid "Gateway" msgstr "Gateway" -#: ../iw/network_gui.py:243 +#: ../iw/network_gui.py:249 msgid "Primary DNS" msgstr "DNS primário" -#: ../iw/network_gui.py:243 +#: ../iw/network_gui.py:249 msgid "Secondary DNS" msgstr "DNS secundário" -#: ../iw/network_gui.py:243 +#: ../iw/network_gui.py:249 msgid "Ternary DNS" msgstr "DNS terciário" @@ -2030,75 +2070,75 @@ msgstr "Teste Falhou" msgid "Customize Graphics Configuration" msgstr "Personalizar Configuração Gráfica" -#: ../iw/xconfig_gui.py:255 +#: ../iw/xconfig_gui.py:233 msgid "Color Depth:" msgstr "Cores:" -#: ../iw/xconfig_gui.py:283 +#: ../iw/xconfig_gui.py:256 msgid "Screen Resolution:" msgstr "Resolução do Ecrã:" -#: ../iw/xconfig_gui.py:393 +#: ../iw/xconfig_gui.py:358 msgid " Test Setting " msgstr "Testar Configuração" -#: ../iw/xconfig_gui.py:410 +#: ../iw/xconfig_gui.py:375 msgid "Please choose your default desktop environment:" msgstr "Por favor escolha o seu ambiente de trabalho por omissão:" -#: ../iw/xconfig_gui.py:420 ../iw/xconfig_gui.py:481 +#: ../iw/xconfig_gui.py:385 ../iw/xconfig_gui.py:443 msgid "GNOME" msgstr "GNOME" -#: ../iw/xconfig_gui.py:422 ../iw/xconfig_gui.py:495 +#: ../iw/xconfig_gui.py:387 ../iw/xconfig_gui.py:457 msgid "KDE" msgstr "KDE" -#: ../iw/xconfig_gui.py:461 +#: ../iw/xconfig_gui.py:426 msgid "Your desktop environment is:" msgstr "O seu ambiente de trabalho é:" -#: ../iw/xconfig_gui.py:506 +#: ../iw/xconfig_gui.py:467 msgid "Please choose your login type:" msgstr "Por favor escolha o tipo de autenticação:" -#: ../iw/xconfig_gui.py:515 +#: ../iw/xconfig_gui.py:474 msgid "Text" msgstr "Texto" -#: ../iw/xconfig_gui.py:516 +#: ../iw/xconfig_gui.py:475 msgid "Graphical" msgstr "Gráfico" -#: ../iw/xconfig_gui.py:564 +#: ../iw/xconfig_gui.py:513 msgid "Bits per Pixel" msgstr "Bits por Pixel" -#: ../iw/xconfig_gui.py:584 +#: ../iw/xconfig_gui.py:531 msgid "Monitor Configuration" msgstr "Configuração do Monitor" -#: ../iw/xconfig_gui.py:853 ../iw/xconfig_gui.py:1649 +#: ../iw/xconfig_gui.py:800 ../iw/xconfig_gui.py:1530 msgid "Restore original values" msgstr "Repor valores originais" -#: ../iw/xconfig_gui.py:861 +#: ../iw/xconfig_gui.py:808 msgid "Horizontal Sync:" msgstr "Sinc. Horizontal:" -#: ../iw/xconfig_gui.py:863 +#: ../iw/xconfig_gui.py:810 msgid "Vertical Sync:" msgstr "Sinc. Vertical:" -#: ../iw/xconfig_gui.py:869 +#: ../iw/xconfig_gui.py:816 msgid "kHz" msgstr "kHz" -#: ../iw/xconfig_gui.py:872 +#: ../iw/xconfig_gui.py:819 msgid "Hz" msgstr "Hz" -#: ../iw/xconfig_gui.py:1057 +#: ../iw/xconfig_gui.py:980 msgid "" "Your video ram size can not be autodetected. Choose your video ram size " "from the choices below:" @@ -2106,7 +2146,7 @@ msgstr "" "A quantidade de memória na sua placa gráfica não pode ser auto-detectada. " "Escolha a quantidade de memória:" -#: ../iw/xconfig_gui.py:1068 ../iw/xconfig_gui.py:1089 +#: ../iw/xconfig_gui.py:991 ../iw/xconfig_gui.py:1012 msgid "" "In most cases your video hardware can be probed to automatically determine " "the best settings for your display." @@ -2114,21 +2154,21 @@ msgstr "" "Na maior parte dos casos o seu hardware de vídeo pode ser detectado para " "determinar automaticamente a melhor configuração." -#: ../iw/xconfig_gui.py:1077 +#: ../iw/xconfig_gui.py:1000 msgid "" "If the probed settings do not match your hardware select the correct setting " "below:" msgstr "Se a configuração detectada é incorrecta, escolha a correcta:" -#: ../iw/xconfig_gui.py:1098 +#: ../iw/xconfig_gui.py:1021 msgid "Autoprobe results:" msgstr "Detecção Automática:" -#: ../iw/xconfig_gui.py:1584 +#: ../iw/xconfig_gui.py:1465 msgid "Video card RAM: " msgstr "RAM da Placa Gráfica: " -#: ../iw/xconfig_gui.py:1653 +#: ../iw/xconfig_gui.py:1534 msgid "Skip X Configuration" msgstr "Não efectuar a configuração do X" @@ -2699,18 +2739,18 @@ msgstr "Estação de trabalho" msgid "partitioning did not meet requirements" msgstr "o particionamento não satisfez requisitos" -#: ../libfdisk/fsedit.c:918 ../libfdisk/fsedit.c:925 ../libfdisk/fsedit.c:932 -#: ../libfdisk/fsedit.c:941 ../libfdisk/fsedit.c:968 ../libfdisk/fsedit.c:981 -#: ../libfdisk/fsedit.c:991 +#: ../libfdisk/fsedit.c:921 ../libfdisk/fsedit.c:928 ../libfdisk/fsedit.c:935 +#: ../libfdisk/fsedit.c:944 ../libfdisk/fsedit.c:971 ../libfdisk/fsedit.c:984 +#: ../libfdisk/fsedit.c:994 msgid "Bad Mount Point" msgstr "Mount Point Inválido" -#: ../libfdisk/fsedit.c:919 +#: ../libfdisk/fsedit.c:922 #, c-format msgid "The %s directory must be on the root filesystem." msgstr "O directório %s deve estar no sistema de arquivos raiz." -#: ../libfdisk/fsedit.c:926 +#: ../libfdisk/fsedit.c:929 #, c-format msgid "" "The mount point %s is illegal.\n" @@ -2721,7 +2761,7 @@ msgstr "" "\n" "Mount points devem começar com /." -#: ../libfdisk/fsedit.c:933 +#: ../libfdisk/fsedit.c:936 #, c-format msgid "" "The mount point %s is illegal.\n" @@ -2732,7 +2772,7 @@ msgstr "" "\n" "Mount points não podem terminar com uma /." -#: ../libfdisk/fsedit.c:942 +#: ../libfdisk/fsedit.c:945 #, c-format msgid "" "The mount point %s is illegal.\n" @@ -2743,7 +2783,7 @@ msgstr "" "\n" "Mount points só podem conter caracteres imprimíveis." -#: ../libfdisk/fsedit.c:950 +#: ../libfdisk/fsedit.c:953 msgid "" "You've asked to put your root (/) filesystem on a DOS-style FAT partition. " "You can do this, but you may not use any other filesystems for your Linux " @@ -2755,7 +2795,7 @@ msgstr "" "sistema Linux. Para além disso, vai haver uma perca de performance por não " "utilizar partições nativas Linux. Quer mesmo continuar?" -#: ../libfdisk/fsedit.c:969 +#: ../libfdisk/fsedit.c:972 #, c-format msgid "" "The mount point %s is illegal.\n" @@ -2766,12 +2806,12 @@ msgstr "" "\n" "Partições de sistema devem ser do tipo Linux Native." -#: ../libfdisk/fsedit.c:982 +#: ../libfdisk/fsedit.c:985 #, c-format msgid "On this platform, /boot must be on a DOS-compatible filesystem %x." msgstr "Nesta plataforma, /boot deve esta num sistema de ficheiro DOS %x." -#: ../libfdisk/fsedit.c:992 +#: ../libfdisk/fsedit.c:995 #, c-format msgid "" "The mount point %s is illegal.\n" @@ -2782,11 +2822,11 @@ msgstr "" "\n" "/usr deve ser do tipo Linux Native ou um volume NFS." -#: ../libfdisk/fsedit.c:1020 +#: ../libfdisk/fsedit.c:1023 msgid "Too Many Drives" msgstr "Demasiadas Drives" -#: ../libfdisk/fsedit.c:1021 +#: ../libfdisk/fsedit.c:1024 msgid "" "You have more drives than this program supports. Please use the standard " "fdisk program to setup your drives and please notify Red Hat Software that " @@ -2796,11 +2836,11 @@ msgstr "" "fdisk para configurar as suas drives e por favor notifique a Red Hat " "Software que você viu esta mensagem." -#: ../libfdisk/fsedit.c:1030 +#: ../libfdisk/fsedit.c:1033 msgid "Error Creating Device Nodes" msgstr "Erro ao Criar Ficheiros de Dispositivos" -#: ../libfdisk/fsedit.c:1031 +#: ../libfdisk/fsedit.c:1034 msgid "" "An error has occurred while trying to create device nodes for the hard " "drives in your system. This may be because you have run out of disk space " @@ -2810,11 +2850,11 @@ msgstr "" "computador. Isto pode ter acontecido por ter ficado sem espaço livre na " "partição /tmp." -#: ../libfdisk/fsedit.c:1047 +#: ../libfdisk/fsedit.c:1050 msgid "No Drives Found" msgstr "Nenhuma Drive Encontrada" -#: ../libfdisk/fsedit.c:1048 +#: ../libfdisk/fsedit.c:1051 msgid "" "An error has occurred - no valid devices were found on which to create new " "filesystems. Please check your hardware for the cause of this problem." @@ -2823,7 +2863,7 @@ msgstr "" "sistemas de arquivos. Por favor verifique o seu hardware para encontrar a " "causa deste problema." -#: ../libfdisk/fsedit.c:1376 ../libfdisk/fsedit.c:1439 +#: ../libfdisk/fsedit.c:1379 ../libfdisk/fsedit.c:1442 #, c-format msgid "" "An error occurred reading the partition table for the block device %s. The " @@ -2832,17 +2872,17 @@ msgstr "" "Um erro ocorreu durante a leitura da tabela de partições do dispositivo tipo " "bloco %s. O erro foi " -#: ../libfdisk/fsedit.c:1379 ../libfdisk/fsedit.c:1451 ../loader/net.c:277 +#: ../libfdisk/fsedit.c:1382 ../libfdisk/fsedit.c:1454 ../loader/net.c:277 #: ../loader/net.c:402 msgid "Retry" msgstr "Repetir" -#: ../libfdisk/fsedit.c:1379 ../libfdisk/fsedit.c:1422 -#: ../libfdisk/fsedit.c:1444 ../libfdisk/fsedit.c:1451 +#: ../libfdisk/fsedit.c:1382 ../libfdisk/fsedit.c:1425 +#: ../libfdisk/fsedit.c:1447 ../libfdisk/fsedit.c:1454 msgid "Skip Drive" msgstr "Ignorar Drive" -#: ../libfdisk/fsedit.c:1416 +#: ../libfdisk/fsedit.c:1419 #, c-format msgid "" "The partition table on device %s is corrupted. To create new partitions it " @@ -2852,19 +2892,19 @@ msgstr "" "partições ela precisa ser inicializada, o que causará a perda de TODOS OS " "DADOS neste disco." -#: ../libfdisk/fsedit.c:1421 +#: ../libfdisk/fsedit.c:1424 msgid "Bad Partition Table" msgstr "Tabela de Partições Inválida" -#: ../libfdisk/fsedit.c:1422 +#: ../libfdisk/fsedit.c:1425 msgid "Initialize" msgstr "Inicializar" -#: ../libfdisk/fsedit.c:1464 +#: ../libfdisk/fsedit.c:1467 msgid "BSD Disklabel" msgstr "BSD Disklabel" -#: ../libfdisk/fsedit.c:1464 +#: ../libfdisk/fsedit.c:1467 msgid "" "A disk with a BSD disklabel has been found. The Red Hat installation only " "supports BSD Disklabels in read-only mode, so you must use a custom install " @@ -2875,17 +2915,17 @@ msgstr "" "instalação personalizada e fdisk (em vez do Disk Druid) em máquinas com " "disklabels BSD." -#: ../libfdisk/fsedit.c:1494 ../libfdisk/fsedit.c:1517 +#: ../libfdisk/fsedit.c:1497 ../libfdisk/fsedit.c:1520 #, c-format msgid "System error %d" msgstr "Erro de sistema %d" -#: ../libfdisk/fsedit.c:1503 ../libfdisk/fsedit.c:1505 -#: ../libfdisk/fsedit.c:1532 +#: ../libfdisk/fsedit.c:1506 ../libfdisk/fsedit.c:1508 +#: ../libfdisk/fsedit.c:1535 msgid "Fdisk Error" msgstr "Erro no Fdisk" -#: ../libfdisk/fsedit.c:1527 +#: ../libfdisk/fsedit.c:1530 msgid "" "This occurs because the drive geometry detected by the kernel used by the " "installer is different than the drive geometry used when the drive was " @@ -3727,7 +3767,7 @@ msgstr "A carregar o ramdisk %s..." msgid "Error loading ramdisk." msgstr "Erro ao carregar o ramdisk." -#: ../loader/loader.c:585 ../loader/loader.c:2183 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Não conseguir ler directoria %s: %s" @@ -3812,36 +3852,36 @@ msgstr "Não consegui obter a segunda imagem de instalação" msgid "FTP and HTTP installs require 20MB or more of system memory." msgstr "Instalações FTP ou HTTP necessitam de pelo menos 20MB de memória." -#: ../loader/loader.c:1503 +#: ../loader/loader.c:1508 msgid "Rescue Method" msgstr "Método de Recuperação" -#: ../loader/loader.c:1504 +#: ../loader/loader.c:1509 msgid "Installation Method" msgstr "Método de Instalação" -#: ../loader/loader.c:1506 +#: ../loader/loader.c:1511 msgid "What type of media contains the rescue image?" msgstr "Que tipo de media contém a imagem de recuperação?" -#: ../loader/loader.c:1508 +#: ../loader/loader.c:1513 msgid "What type of media contains the packages to be installed?" msgstr "Em que tipo de formato estão os pacotes que vão ser instalados?" -#: ../loader/loader.c:2153 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Não consegui encontrar o ficheiro ks.cfg na disquete de arranque." -#: ../loader/loader.c:2245 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Disquete de Actualizações" -#: ../loader/loader.c:2246 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" "Insira a disquete com as actualizações e carregue em \"OK\" para continuar." -#: ../loader/loader.c:2251 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3849,25 +3889,30 @@ msgstr "" "A disquete que inseriu não é uma disquete de actualizações válida para esta " "versão do Red Hat Linux." -#: ../loader/loader.c:2261 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Não consegui montar disquete." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2266 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Actualizações" -#: ../loader/loader.c:2266 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "A ler actualizações ao anaconda..." -#: ../loader/loader.c:2472 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "Não tem memória suficiente nesta máquina para instalar o Red Hat." +#: ../loader/loader.c:2940 +#, fuzzy +msgid "Running anaconda - please wait...\n" +msgstr "A ler actualizações ao anaconda..." + #: ../loader/net.c:170 msgid "NFS server name:" msgstr "Nome do servidor NFS:" @@ -3898,7 +3943,7 @@ msgstr "" msgid "Nameserver IP" msgstr "Servidor de nomes IP" -#: ../loader/net.c:266 ../loader/net.c:750 +#: ../loader/net.c:266 ../loader/net.c:760 msgid "Nameserver" msgstr "Servidor de nomes" @@ -3946,69 +3991,69 @@ msgstr "Informação em Falta" msgid "You must enter both a valid IP address and a netmask." msgstr "Deve inserir um endereço IP válido e uma máscara" -#: ../loader/net.c:411 ../loader/net.c:684 +#: ../loader/net.c:411 ../loader/net.c:694 msgid "Dynamic IP" msgstr "IP dinâmico" -#: ../loader/net.c:412 ../loader/net.c:685 +#: ../loader/net.c:412 ../loader/net.c:695 msgid "Sending request for IP information..." msgstr "A enviar pedido para informações sobre IP..." -#: ../loader/net.c:557 +#: ../loader/net.c:567 msgid "Determining host name and domain..." msgstr "A determinar o nome e domínio da máquina..." -#: ../loader/net.c:668 ../loader/net.c:701 +#: ../loader/net.c:678 ../loader/net.c:711 msgid "kickstart" msgstr "kickstart" -#: ../loader/net.c:669 +#: ../loader/net.c:679 #, c-format msgid "bad argument to kickstart network command %s: %s" msgstr "argumento inválido para o comando network do kickstart %s: %s" -#: ../loader/net.c:702 +#: ../loader/net.c:712 #, c-format msgid "Bad bootproto %s specified in network command" msgstr "bootproto %s inválido especificado no comando network" -#: ../loader/net.c:744 +#: ../loader/net.c:754 msgid "Boot protocol to use" msgstr "Protocolo de arranque a utilizar" -#: ../loader/net.c:746 +#: ../loader/net.c:756 msgid "Network gateway" msgstr "\"Gateway\" da Rede" -#: ../loader/net.c:748 +#: ../loader/net.c:758 msgid "IP address" msgstr "Endereço IP" -#: ../loader/net.c:757 +#: ../loader/net.c:767 msgid "Domain name" msgstr "Nome do domínio" -#: ../loader/net.c:760 +#: ../loader/net.c:770 msgid "Network device" msgstr "Dispositivo de rede" -#: ../loader/net.c:832 +#: ../loader/net.c:842 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> entre elementos | <Espaço> selecciona | <F12> continuar " -#: ../loader/net.c:833 +#: ../loader/net.c:843 #, c-format msgid "netconfig %s (C) 1999 Red Hat, Inc." msgstr "netconfig %sx (C) 1999 Red Hat, Inc." -#: ../loader/net.c:835 +#: ../loader/net.c:845 msgid "Network configuration" msgstr "Configuração da rede" -#: ../loader/net.c:836 +#: ../loader/net.c:846 msgid "Would you like to set up networking?" msgstr "Quer configurar a rede?" @@ -4286,3 +4331,698 @@ msgstr "Desenvolvimento do Kernel" msgid "Utilities" msgstr "Utilitários" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autenticação" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "América do Sul" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Localização" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Terminar" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Terminar" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Falta" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "A procurar" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Terminar" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 98b706bf8..a2621b491 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Installer 6.2\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-03-01 17:24-0500\n" "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n" "Language-Team: Portugese Brasil <LL@li.org>\n" @@ -18,7 +18,7 @@ msgstr "" msgid "Everything" msgstr "Todos os Pacotes" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -60,8 +60,8 @@ msgstr "Todos os Pacotes" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -137,17 +137,17 @@ msgid "" "http://bugzilla.redhat.com/bugzilla" msgstr "" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -156,9 +156,9 @@ msgstr "" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -177,62 +177,62 @@ msgstr "" msgid "Back" msgstr "Anterior" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 #, fuzzy msgid "Close" msgstr "Limpar" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 #, fuzzy msgid "Unable to load file!" msgstr "Erro de E/S em arquivo local" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "" -#: ../gui.py:716 +#: ../gui.py:715 #, fuzzy msgid "Red Hat Linux Install Shell" msgstr "Bem-vindo ao Red Hat Linux" -#: ../gui.py:727 +#: ../gui.py:726 #, fuzzy, c-format msgid "Red Hat Linux Installer on %s" msgstr "Bem-vindo ao Red Hat Linux" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "" -#: ../gui.py:873 +#: ../gui.py:872 #, fuzzy msgid "Install Window" msgstr "Log de Instalação" @@ -292,17 +292,17 @@ msgstr "A partição %s não pode ser alocada." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -410,7 +410,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -437,7 +437,7 @@ msgstr "" msgid "Choose the languages to be installed:" msgstr "Escolher pacotes para instalação" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Driver Impressora:" @@ -462,7 +462,7 @@ msgstr "Escolha um grupo para examinar:" msgid "Choose the default language: " msgstr "Escolha um grupo para examinar:" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 #, fuzzy msgid "Keyboard Selection" msgstr "Tipo do Teclado" @@ -476,7 +476,7 @@ msgstr "" msgid "Upgrade Existing Installation" msgstr "Instalação do Lilo" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 #, fuzzy msgid "Installation Type" msgstr "Passos da Instalação" @@ -513,21 +513,21 @@ msgstr "" msgid "System to Upgrade" msgstr "Erro de sistema %d" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Editar Partição" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 #, fuzzy msgid "Customize Packages to Upgrade" msgstr "Escolher pacotes para atualização" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -546,7 +546,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -560,18 +560,18 @@ msgstr "Sim" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Não" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 #, fuzzy msgid "Red Hat Linux" msgstr "Bem-vindo ao Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 #, fuzzy msgid "" "Welcome to Red Hat Linux!\n" @@ -592,7 +592,7 @@ msgstr "" "Se você comprou o Red Hat Linux, certifique-se de registrar sua compra " "através de nosso web site, http://www.crhl.com.br." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -605,48 +605,48 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Cancelar" -#: ../text.py:511 +#: ../text.py:506 #, fuzzy msgid "X probe results" msgstr "Deteção Automática" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "" -#: ../text.py:539 +#: ../text.py:534 #, fuzzy msgid "Video Card Selection" msgstr "Tipo do Teclado" -#: ../text.py:540 +#: ../text.py:535 #, fuzzy msgid "Which video card do you have?" msgstr "Que tipo de teclado você tem?" -#: ../text.py:553 +#: ../text.py:548 #, fuzzy msgid "X Server Selection" msgstr "Opções do Módulo" -#: ../text.py:553 +#: ../text.py:548 #, fuzzy msgid "Choose a server" msgstr "Escolha um grupo para examinar:" -#: ../text.py:625 +#: ../text.py:619 #, fuzzy msgid "Installation to begin" msgstr "Passos da Instalação" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -655,12 +655,12 @@ msgstr "" "reinicialização de seu sistema. Você pode desejar manter este arquivo para " "referência futura." -#: ../text.py:637 +#: ../text.py:631 #, fuzzy msgid "Upgrade to begin" msgstr "Log de Atualização" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 #, fuzzy msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " @@ -670,17 +670,17 @@ msgstr "" "reinicialização de seu sistema. Você pode desejar manter este arquivo para " "referência futura." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Instalação Finalizada com Sucesso" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -702,13 +702,13 @@ msgstr "" "Informações sobre configuração de seu sistema estão disponíveis no capítulo " "Depois da Instalação no Guia do Usuário do Red Hat Linux." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -728,65 +728,65 @@ msgstr "" "Informações sobre configuração de seu sistema estão disponíveis no capítulo " "Depois da Instalação no Guia do Usuário do Red Hat Linux." -#: ../text.py:750 +#: ../text.py:744 #, fuzzy msgid "Package Installation" msgstr "Instalação do Lilo" -#: ../text.py:752 +#: ../text.py:746 #, fuzzy msgid "Name : " msgstr "Nome da fila: " -#: ../text.py:753 +#: ../text.py:747 #, fuzzy msgid "Size : " msgstr "Tamanho:" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "" -#: ../text.py:780 +#: ../text.py:774 #, fuzzy msgid " Packages" msgstr "Pacote" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr "" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr "" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "" -#: ../text.py:791 +#: ../text.py:785 #, fuzzy msgid "Completed: " msgstr "Instalação Finalizada com Sucesso" -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "" -#: ../text.py:913 +#: ../text.py:907 #, fuzzy msgid "Help not available" msgstr "(nenhum disponível)" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -795,201 +795,201 @@ msgid "" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "" -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 #, fuzzy msgid "Hostname Setup" msgstr "Resolução do Nome da Máquina" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 #, fuzzy msgid "Network Setup" msgstr "Configuração NFS" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "Configuração SCSI" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Senha do Root" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 #, fuzzy msgid "Authentication" msgstr "Configurar fuso horário" -#: ../text.py:1073 +#: ../text.py:1067 #, fuzzy msgid "Configuration Complete" msgstr "Configuração SCSI" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 #, fuzzy msgid "SILO Configuration" msgstr "Configuração SCSI" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 #, fuzzy msgid "LILO Configuration" msgstr "Configuração SCSI" -#: ../text.py:1105 +#: ../text.py:1099 #, fuzzy msgid "Automatic Partition" msgstr "Editar Partição" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 #, fuzzy msgid "Partition" msgstr "Reparticionar" -#: ../text.py:1109 +#: ../text.py:1103 #, fuzzy msgid "Manually Partition" msgstr "Reparticionar" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 #, fuzzy msgid "Root Filesystem Size" msgstr "Instalar sistema" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "Partição Root" -#: ../text.py:1119 +#: ../text.py:1113 #, fuzzy msgid "Filesystem Formatting" msgstr "Formatando" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 #, fuzzy msgid "Mouse Configuration" msgstr "Configuração SCSI" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "" -#: ../text.py:1154 +#: ../text.py:1148 #, fuzzy msgid "Package Groups" msgstr "Pacote" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 #, fuzzy msgid "Individual Packages" msgstr "Selecionar pacotes individuais" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 #, fuzzy msgid "Package Dependencies" msgstr "Dependências Não Resolvidas" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 #, fuzzy msgid "X Configuration" msgstr "Configuração SCSI" -#: ../text.py:1162 +#: ../text.py:1156 #, fuzzy msgid "Installation Begins" msgstr "Passos da Instalação" -#: ../text.py:1164 +#: ../text.py:1158 #, fuzzy msgid "Install System" msgstr "Instalar sistema" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 #, fuzzy msgid "Boot Disk" msgstr "Disco de Inicialização" -#: ../text.py:1170 +#: ../text.py:1164 #, fuzzy msgid "Installation Complete" msgstr "Tipo de Instalação" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "" -#: ../text.py:1187 +#: ../text.py:1181 #, fuzzy msgid "Upgrade Begins" msgstr "Log de Atualização" -#: ../text.py:1189 +#: ../text.py:1183 #, fuzzy msgid "Upgrade System" msgstr "Atualizar sistema" -#: ../text.py:1193 +#: ../text.py:1187 #, fuzzy msgid "Upgrade Complete" msgstr "Atualizar sistema" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Cancelado" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Não é possível ir para o passo anterior a partir deste. Você deve tentar " @@ -1088,7 +1088,7 @@ msgid "" "\n" msgstr "" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 #, fuzzy msgid "Mount Point" msgstr "Nenhum Mount Point" @@ -1097,28 +1097,28 @@ msgstr "Nenhum Mount Point" msgid "Space Needed" msgstr "" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" "\n" msgstr "" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "" -#: ../todo.py:1812 +#: ../todo.py:1814 #, fuzzy msgid "Disk Space" msgstr "Configuração dos Discos" -#: ../todo.py:1847 +#: ../todo.py:1849 #, fuzzy msgid "Post Install" msgstr "Instalar" -#: ../todo.py:1848 +#: ../todo.py:1850 #, fuzzy msgid "Performing post install configuration..." msgstr "Configuração SCSI" @@ -1144,37 +1144,37 @@ msgid "" "checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "" -#: ../xf86config.py:938 +#: ../xf86config.py:939 #, fuzzy msgid "X server" msgstr "Servidor:" -#: ../xf86config.py:941 +#: ../xf86config.py:942 #, fuzzy msgid "Unable to detect video card" msgstr "Criando ramdisk inicial..." -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "" @@ -1438,7 +1438,7 @@ msgid "Total install size: %s" msgstr "Instalação RPM de %s falhou: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Pacote" @@ -1847,49 +1847,49 @@ msgstr "Instalando" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 #, fuzzy msgid "Size" msgstr "Tamanho:" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 #, fuzzy msgid "Summary" msgstr "(sem sumário)" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Pacote" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 #, fuzzy msgid "Status" msgstr "Status da Instalação" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 #, fuzzy msgid "Packages" msgstr "Pacote" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 #, fuzzy msgid "Completed" msgstr "Instalação Finalizada com Sucesso" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 #, fuzzy msgid "Remaining" msgstr "Buscando" @@ -3788,7 +3788,7 @@ msgstr "Criando ramdisk inicial..." msgid "Error loading ramdisk." msgstr "Criando ramdisk inicial..." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, fuzzy, c-format msgid "Failed to read directory %s: %s" msgstr "Não foi possível criar %s: %s\n" @@ -3891,25 +3891,25 @@ msgstr "" msgid "What type of media contains the packages to be installed?" msgstr "Que tipo de mídia contém os pacotes a serem instalados?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "O ks.cfg não foi encontrado no disquete de boot." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "" -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." msgstr "" -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 #, fuzzy msgid "Failed to mount floppy disk." msgstr "Falha na conexão ao servidor de FTP" @@ -3917,19 +3917,19 @@ msgstr "Falha na conexão ao servidor de FTP" #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "" -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "" @@ -4400,6 +4400,696 @@ msgstr "Parâmetros do Módulo" msgid "Utilities" msgstr "" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Configurar fuso horário" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +msgid "South Australia" +msgstr "" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +msgid "Tocantins" +msgstr "" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +msgid "English" +msgstr "" + +#. generated from lang-table +msgid "Danish" +msgstr "" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Buscando" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Todos os Pacotes" + +#. 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 "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #, fuzzy #~ msgid "Initializing IDE modules..." #~ msgstr "Inicializando CDROM..." @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: sndconfig 3.0\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-02-21 19:27-05:00\n" "Last-Translator: Cristian Gafton <gafton@redhat.com>\n" "Language-Team: Romanian <ro@li.org>\n" @@ -15,7 +15,7 @@ msgstr "" msgid "Everything" msgstr "Toate pachetele" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "S-a detectat o excpeþie în program" @@ -57,8 +57,8 @@ msgstr "Cãutare" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -140,7 +140,7 @@ msgstr "" "copiaþi întregul text al acestei excepþii si sã îl introduceþi în sistemul " "de raportare a erorilor de la adresa http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -148,11 +148,11 @@ msgstr "" "Introduceþi o nouã dischetã în unitatea de floppy. Întregul conþinut al " "dischetei va fi ºters, aºa cã alegeþi discheta cu atenþie." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Înainte" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -161,9 +161,9 @@ msgstr "Înainte" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -182,59 +182,59 @@ msgstr "Înainte" msgid "Back" msgstr "Înapoi" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Explicaþii >>>" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "<<< Explicaþii" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Finalizare" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Detalii instalare" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Selecþie limbã de instalare" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Închide" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Program de Instalare Red Hat Linux" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Shell Instalare Red Hat Linux" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Program de Instalare Red Hat Linux pe %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Shell de Instalare Red Hat Linux pe %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Ecran de Instalare" @@ -290,17 +290,17 @@ msgstr "Acest CD nu poate fi citit." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -409,7 +409,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -438,7 +438,7 @@ msgid "Choose the languages to be installed:" msgstr "Unde sînt aflate aplicaþiile pentru instalare?" # ../comps/comps-master:446 -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Suport Laptop" @@ -463,7 +463,7 @@ msgstr "Limbã program instalare" msgid "Choose the default language: " msgstr "Limbã program instalare" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Tip tastaturã" @@ -475,7 +475,7 @@ msgstr "Ce tip de tastaturã este conectatã la acest calculator?" msgid "Upgrade Existing Installation" msgstr "Actualizare instalare existentã" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Tip instalare" @@ -509,20 +509,20 @@ msgstr "" msgid "System to Upgrade" msgstr "System pentru actualizare" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Partiþie RAID" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Selectaþi pachetele pentru actualizare" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -541,7 +541,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -555,17 +555,17 @@ msgstr "Da" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nu" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -586,7 +586,7 @@ msgstr "" "Dacã aþi cumpãrat Official Red Hat Linux, vã rugam sa ne vizitaþi pagina de " "web la http://www.redhat.com ºi sã vã inregistraþi ca utilizator oficial." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -606,42 +606,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Abandon" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Rrezultate autodetecþie X11" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Placã nelistatã" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Selectare Placã Video" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Ce tip de placã video aveþi?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Selectare Server X Windows" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Selectaþi un server" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Începutul instalãrii" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -650,11 +650,11 @@ msgstr "" "accesibil dupã reiniþializarea sistemului. Este recomandat sã pãstraþi acest " "fiºier pentru referinþe viitoare." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Actualizarea poate porni" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -663,17 +663,17 @@ msgstr "" "accesibil dupã reiniþializarea sistemului. Este recomandat sã pãstraþi acest " "fiºier pentru referinþe viitoare." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Complet" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -697,13 +697,13 @@ msgstr "" "Informaþii despre configurarea sistemului dumneavoastrã se gãsesc în " "capitolul dedicat post-instalãrii din manualele Red Hat Linux." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -724,59 +724,59 @@ msgstr "" "Informaþii despre configurarea sistemului dumneavoastrã se gãsesc în " "capitolul dedicat post-instalãrii din Official Red Hat Linux User's Guide." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Instalare aplicaþii" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Nume :" -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Mãrime :" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Detalii:" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr "Pachet" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bytes" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Timp" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Total :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Completat: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Mai rãmîne: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Ajutor nedisponibil" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Aceastã modalitate de instalare nu are documentaþie de ajutor." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Salvare Text Excepþie" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -792,29 +792,29 @@ msgstr "" "la detectarea acestei erori.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Salvare" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Debug" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> help|<Tab> între elemente|<Space> selecteazã|<F12> urmãtorul ecran" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" @@ -822,152 +822,152 @@ msgstr "" " <Tab>/<Alt-Tab> între elemente | <Space> selecteazã | <F12> urmãtorul " "ecran " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Bun venit" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Setare nume host" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Configurare Reþea" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "Configurare LILO" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Setare Zona de Timp" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Parola de root:" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Setare Conturi Utilizator" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Configurare Autentificare" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Sfîrºit Configurare" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Configurare SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Configurare LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Partiþionare automatã" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partiþionare" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Partiþionare manualã" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Marime Root Filesystem" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "Partiþionare Automatã" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formatare filesystem" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Configurare Mouse" -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "Selecþie limbã de instalare" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Grupuri Aplicaþii" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Selectaþi Aplicaþiile Dorite" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Dependinþe Nerezolvate" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Configurare X Windows" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Instalarea a început" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Instalare Sistem" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Disc de Boot" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Instalare terminatã" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Analizare System" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Actualizare Personalizatã" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Actualizarea a Început" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Actualizare Sistem" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Actualizare Terminatã" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Abandonat" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Nu se poate sãri la o etapã anterioarã de aici. Încercaþi din nou." @@ -1068,7 +1068,7 @@ msgstr "" "urmatoarele sisteme de fisiere:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Mount Point" @@ -1076,7 +1076,7 @@ msgstr "Mount Point" msgid "Space Needed" msgstr "Spaþiu necesar" -#: ../todo.py:1803 +#: ../todo.py:1805 #, fuzzy msgid "" "You don't appear to have enough file nodes to install the packages you've " @@ -1088,20 +1088,20 @@ msgstr "" "urmatoarele sisteme de fisiere:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "Spaþiu necesar" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Spaþiu pe Disc" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Post Instalare" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Se ruleazã procesul de configurare post-instalare..." @@ -1130,35 +1130,35 @@ msgstr "" "verificate pentru erori. Dupã ce verificarea va fi completã puteþi porni din " "nou programul de instalare." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Placã video" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Memorie Video" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X Server" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Nu s-a putut detecta placa video" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Domeniul frecvenþelor orizontale" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Domeniul frecvenþelor verticale" @@ -1410,7 +1410,7 @@ msgid "Total install size: %s" msgstr "Mãrimea instalatã totalã: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Pachet" @@ -1796,45 +1796,45 @@ msgstr "Instalare Aplicaþii" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Mãrime" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Descriere" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Grupuri Aplicaþii" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 #, fuzzy msgid "Total Progress: " msgstr "Total :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Progres Instalare" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Aplicaþii" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Timp" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Total" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Terminat" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Rãmas" @@ -3765,7 +3765,7 @@ msgstr "Încãrcare ramdisk %s" msgid "Error loading ramdisk." msgstr "Eroare la încãrcarea ramdisk-ului" -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Nu se poate citi directorul %s: %s" @@ -3868,19 +3868,19 @@ msgstr "Unde se gãseºte imaginea de restaurare?" msgid "What type of media contains the packages to be installed?" msgstr "Unde sînt aflate aplicaþiile pentru instalare?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Fiºierul ks.cfg nu existã pe discheta de boot." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Actualizãri ale programului de instalare" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Introduceþi discheta cu drivere ºi selectaþi \"OK\" pentru a continua." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 #, fuzzy msgid "" "The floppy disk you inserted is not a valid update disk for this release of " @@ -3889,26 +3889,26 @@ msgstr "" "Discheta introdusã nu este o dischetã de drivere validã pentru aceastã " "versiune de Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Discheta nu are un sistem de fiºiere suportat" #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Actualizãri" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Se încarcã actualizãrile pentru Anaconda..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "Se încarcã actualizãrile pentru Anaconda..." @@ -4356,6 +4356,701 @@ msgstr "Dezvoltare Kernel" msgid "Utilities" msgstr "Utilitare" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Configurare Autentificare" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "America de Sud" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Locaþie" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Finalizare" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Finalizare" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Rãmas" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Cãutare" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Finalizare" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "America/New_York" #~ msgstr "America/New_York" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.1\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-08-08 01:20+0300\n" "Last-Translator: Leon Kanter <leon@blackcatlinux.com>\n" "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n" @@ -14,7 +14,7 @@ msgstr "" msgid "Everything" msgstr "÷ÓÅ" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "ðÒÏÉÚÏÛÌÏ ÉÓËÌÀÞÅÎÉÅ" @@ -63,8 +63,8 @@ msgstr "÷ÎÉÍÁÎÉÅ!" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -149,7 +149,7 @@ msgstr "" "ÓËÏÐÉÒÕÊÔÅ ÐÏÌÎÙÊ ÔÅËÓÔ ÉÓËÌÀÞÅÎÉÑ É ÚÁÐÏÌÎÉÔÅ ÏÔÞÅÔ Ï ÏÛÉÂËÅ ÎÁ " "http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -157,11 +157,11 @@ msgstr "" "÷ÓÔÁרÔÅ, ÐÏÖÁÌÕÊÓÔÁ, ÄÉÓËÅÔÕ. âÕÄØÔÅ ×ÎÉÍÁÔÅÌØÎÙ, ÔÁË ËÁË ×ÓÅ ÓÏÄÅÒÖÉÍÏÅ " "ÜÔÏÊ ÄÉÓËÅÔÙ ÂÕÄÅÔ ÕÄÁÌÅÎÏ." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "äÁÌÅÅ" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -170,9 +170,9 @@ msgstr "äÁÌÅÅ" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -191,59 +191,59 @@ msgstr "äÁÌÅÅ" msgid "Back" msgstr "îÁÚÁÄ" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "þÔÏ ÎÏ×ÏÇÏ" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "ðÏËÁÚÁÔØ ÐÏÍÏÝØ" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "óËÒÙÔØ ÐÏÍÏÝØ" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "çÏÔÏ×Ï" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "ðÏÍÏÝØ" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "÷ÙÂÏÒ ÑÚÙËÁ" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "úÁËÒÙÔØ" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "þÔÏ ÎÏ×ÏÇÏ" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÇÒÕÚÉÔØ ÆÁÊÌ!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "ðÒÏÇÒÁÍÍÁ ÕÓÔÁÎÏ×ËÉ Red Hat Linux" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "ïÂÏÌÏÞËÁ ÐÒÏÇÒÁÍÍÙ ÕÓÔÁÎÏ×ËÉ Red Hat Linux" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "ðÒÏÇÒÁÍÍÁ ÕÓÔÁÎÏ×ËÉ Red Hat Linux ÎÁ %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "ïÂÏÌÏÞËÁ ÐÒÏÇÒÁÍÍÙ ÕÓÔÁÎÏ×ËÉ Red Hat Linux ÎÁ %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "ïËÎÏ ÕÓÔÁÎÏ×ËÉ" @@ -299,17 +299,17 @@ msgstr "CD-ROM ÎÅ ÍÏÖÅÔ ÂÙÔØ ÓÍÏÎÔÉÒÏ×ÁÎ." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -425,7 +425,7 @@ msgstr "÷ÁÛÁ ÓÉÓÔÅÍÁ ÓÍÏÎÔÉÒÏ×ÁÎÁ ÐÏÄ ËÁÔÁÌÏÇÏÍ /mnt/sysimage." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -449,7 +449,7 @@ msgstr "÷ÅÒÎÕÔØ ÐÅÒ×ÏÎÁÞÁÌØÎÙÅ ÚÎÁÞÅÎÉÑ" msgid "Choose the languages to be installed:" msgstr "ðÏÄÄÅÒÖËÕ ËÁËÉÈ ÑÚÙËÏ× ÕÓÔÁÎÏ×ÉÔØ?" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "ðÏÄÄÅÒÖËÁ ÑÚÙËÏ×" @@ -469,7 +469,7 @@ msgstr "ïÓÎÏ×ÎÏÊ ÑÚÙË" msgid "Choose the default language: " msgstr "÷ÙÂÅÒÉÔÅ ÏÓÎÏ×ÎÏÊ ÑÚÙË: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "ôÉÐ ËÌÁ×ÉÁÔÕÒÙ" @@ -481,7 +481,7 @@ msgstr "õËÁÖÉÔÅ ÍÏÄÅÌØ ËÌÁ×ÉÁÔÕÒÙ, ÐÏÄËÌÀÞÅÎÎÏÊ Ë ÜÔÏÍÕ ËÏÍÐØÀÔÅÒÕ" msgid "Upgrade Existing Installation" msgstr "ïÂÎÏ×ÉÔØ ÓÕÝÅÓÔ×ÕÀÝÕÀ ÕÓÔÁÎÏ×ËÕ" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "ôÉÐ ÕÓÔÁÎÏ×ËÉ" @@ -519,19 +519,19 @@ msgstr "îÅ ÚÁÄÁÎ ÎÉ ÏÄÉÎ ÒÁÚÄÅÌ Linux. ïÂÎÏ×ÌÅÎÉÅ ÓÉÓÔÅÍÙ ÎÅ×ÏÚÍÏÖÎÏ!" msgid "System to Upgrade" msgstr "óÉÓÔÅÍÁ ÄÌÑ ÏÂÎÏ×ÌÅÎÉÑ" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "ïÂÎÏ×ÌÅÎÉÅ ÒÁÚÄÅÌÁ" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "ïÂÎÏ×ÌÅÎÉÅ ÒÁÚÄÅÌÁ /dev/" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "õÔÏÞÎÉÔÅ ÐÁËÅÔÙ ÄÌÑ ÏÂÎÏ×ÌÅÎÉÑ" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -549,7 +549,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -563,17 +563,17 @@ msgstr "äÁ" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "îÅÔ" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -593,7 +593,7 @@ msgstr "" "åÓÌÉ ×Ù ÐÒÉÏÂÒÅÌÉ ïÆÉÃÉÁÌØÎÙÊ Red Hat Linux, ÎÅ ÚÁÂÕÄØÔÅ ÚÁÒÅÇÉÓÔÒÉÒÏ×ÁÔØ " "×ÁÛÕ ÐÏËÕÐËÕ ÎÁ ÎÁÛÅÍ web-ÓÁÊÔÅ, http://www.redhat.com." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -612,42 +612,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "ïÔÍÅÎÁ" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "òÅÚÕÌØÔÁÔÙ ÐÒÏ×ÅÒËÉ è" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "îÅÕËÁÚÁÎÎÁÑ ËÁÒÔÁ" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "÷ÙÂÏÒ ×ÉÄÅÏËÁÒÔÙ" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "õËÁÖÉÔÅ ÔÉÐ ×ÉÄÅÏËÁÒÔÙ" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "÷ÙÂÏÒ è-ÓÅÒ×ÅÒÁ" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "÷ÙÂÅÒÉÔÅ ÓÅÒ×ÅÒ" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "îÁÞÁÌÏ ÕÓÔÁÎÏ×ËÉ" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -655,11 +655,11 @@ msgstr "" "ðÏÌÎÙÊ ÐÒÏÔÏËÏÌ ÕÓÔÁÎÏ×ËÉ ×ÁÛÅÊ ÓÉÓÔÅÍÙ ÐÏÓÌÅ ÐÅÒÅÚÁÇÒÕÚËÉ ÂÕÄÅÔ ÎÁÈÏÄÉÔØÓÑ " "× /tmp/install.log. ÷ÏÚÍÏÖÎÏ ×ÁÍ ÐÏÎÁÄÏÂÉÔÓÑ Ë ÎÅÍÕ ÏÂÒÁÔÉÔØÓÑ." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "îÁÞÁÌÏ ÏÂÎÏ×ÌÅÎÉÑ" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -667,7 +667,7 @@ msgstr "" "ðÏÌÎÙÊ ÐÒÏÔÏËÏÌ ÏÂÎÏ×ÌÅÎÉÑ ×ÁÛÅÊ ÓÉÓÔÅÍÙ ÐÏÓÌÅ ÐÅÒÅÚÁÇÒÕÚËÉ ÂÕÄÅÔ ÎÁÈÏÄÉÔØÓÑ " "× /tmp/install.log. ÷ÏÚÍÏÖÎÏ ×ÁÍ ÐÏÎÁÄÏÂÉÔÓÑ Ë ÎÅÍÕ ÏÂÒÁÔÉÔØÓÑ." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -675,11 +675,11 @@ msgstr "" " <Enter> ÄÌÑ ÐÅÒÅÚÁÇÒÕÚËÉ " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "çÏÔÏ×Ï" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -700,7 +700,7 @@ msgstr "" "éÎÆÏÒÍÁÃÉÑ Ï ÎÁÓÔÒÏÊËÅ É ÉÓÐÏÌØÚÏ×ÁÎÉÉ ×ÁÛÅÊ ÓÉÓÔÅÍÙ ÓÏÄÅÒÖÉÔÓÑ × " "ÒÕËÏ×ÏÄÓÔ×ÁÈ ÐÏÌØÚÏ×ÁÔÅÌÑ Red Hat Linux." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -708,7 +708,7 @@ msgstr "" " <Enter> ÄÌÑ ×ÙÈÏÄÁ " " " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -726,59 +726,59 @@ msgstr "" "éÎÆÏÒÍÁÃÉÀ Ï ÄÁÌØÎÅÊÛÅÊ ÎÁÓÔÒÏÊËÅ ×ÁÛÅÊ ÓÉÓÔÅÍÙ ÍÏÖÎÏ ÐÏÞÅÒÐÎÕÔØ × ÒÁÚÄÅÌÅ " "\"post install\" ïÆÉÃÉÁÌØÎÏÇÏ ÒÕËÏ×ÏÄÓÔ×Á ÐÏÌØÚÏ×ÁÔÅÌÑ Red Hat Linux." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "õÓÔÁÎÏ×ËÁ ÐÁËÅÔÁ" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "éÍÑ : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "òÁÚÍÅÒ: " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "ó×ÅÄÅÎÉÑ:" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " ðÁËÅÔÙ" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " âÁÊÔ" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " ÷ÒÅÍÑ" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "÷ÓÅÇÏ :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "úÁ×ÅÒÛÅÎÏ: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr " ïÓÔÁÌÏÓØ: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "ðÏÍÏÝØ ÏÔÓÕÔÓÔ×ÕÅÔ" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "äÌÑ ÜÔÏÊ ÕÓÔÁÎÏ×ËÉ ÐÏÍÏÝØ ÏÔÓÕÔÓÔ×ÕÅÔ." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "óÏÈÒÁÎÅÎÉÅ Á×ÁÒÉÊÎÏÇÏ ÏÂÒÁÚÁ" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -792,178 +792,178 @@ msgstr "" "ÄÉÓËÅÔÕ, É ÐÏÍÏÞØ Red Hat ÕÓÔÒÁÎÉÔØ ÐÒÏÂÌÅÍÕ.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "óÏÈÒÁÎÉÔØ" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "ïÔÌÁÄËÁ" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> ÐÏÍÏÝØ | <Tab> ÍÅÖÄÕ ÜÌÅÍÅÎÔÁÍÉ | <Space> ×ÙÂÏÒ | <F12> ÓÌÅÄÕÀÝÉÊ ÜËÒÁÎ" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> ÍÅÖÄÕ ÜÌÅÍÅÎÔÁÍÉ | <Space> ×ÙÂÏÒ | <F12> ÓÌÅÄÕÀÝÉÊ ÜËÒÁÎ " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Welcome" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "éÍÑ ËÏÍÐØÀÔÅÒÁ" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "îÁÓÔÒÏÊËÁ ÓÅÔÉ" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "ëÏÎÆÉÇÕÒÁÃÉÑ ÂÒÁÎÄÍÁÕÜÒÁ" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "÷ÙÂÏÒ ÞÁÓÏ×ÏÇÏ ÐÏÑÓÁ" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "ðÁÒÏÌØ ÐÏÌØÚÏ×ÁÔÅÌÑ root" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "óÏÚÄÁÎÉÅ ÕÞÅÔÎÏÊ ÚÁÐÉÓÉ ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "áÕÔÅÎÔÉÆÉËÁÃÉÑ" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "îÁÓÔÒÏÊËÁ ÚÁ×ÅÒÛÅÎÁ" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "ëÏÎÆÉÇÕÒÁÃÉÑ SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "ëÏÎÆÉÇÕÒÁÃÉÑ LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "á×ÔÏÍÁÔÉÞÅÓËÏÅ ÒÁÚÂÉÅÎÉÅ" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "òÁÚÄÅÌ" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "òÕÞÎÏÅ ÒÁÚÂÉÅÎÉÅ" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "òÁÚÍÅÒ ËÏÒÎÅ×ÏÊ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÙ" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "÷ÎÉÍÁÎÉÅ: ÚÁÇÒÕÚÏÞÎÙÊ ÒÁÚÄÅÌ" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "æÏÒÍÁÔÉÒÏ×ÁÎÉÅ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "÷ÙÂÏÒ ÍÙÛÉ" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "ïÓÎÏ×ÎÏÊ ÑÚÙË" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "çÒÕÐÐÙ ÐÁËÅÔÏ×" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "éÎÄÉ×ÉÄÕÁÌØÎÙÊ ×ÙÂÏÒ ÐÁËÅÔÏ×" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "úÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÏ×" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "îÁÓÔÒÏÊËÁ è" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "îÁÞÁÌÏ ÕÓÔÁÎÏ×ËÉ" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "õÓÔÁÎÏ×ËÁ ÓÉÓÔÅÍÙ" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "úÁÇÒÕÚÏÞÎÙÊ ÄÉÓË" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "õÓÔÁÎÏ×ËÁ ÚÁ×ÅÒÛÅÎÁ" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "ðÒÏ×ÅÒËÁ ÓÉÓÔÅÍÙ" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "õÔÏÞÎÉÔØ ÏÂÎÏ×ÌÅÎÉÅ" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "ïÂÎÏ×ÌÅÎÉÅ ÎÁÞÉÎÁÅÔÓÑ" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "ïÂÎÏ×ÌÅÎÉÅ ÓÉÓÔÅÍÙ" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "ïÂÎÏ×ÌÅÎÉÅ ÚÁ×ÅÒÛÅÎÏ" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "ïÔÍÅÎÅÎÏ" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "ó ÜÔÏÇÏ ÍÅÓÔÁ ÎÅ×ÏÚÍÏÖÎÏ ×ÅÒÎÕÔØÓÑ Ë ÐÒÅÄÙÄÕÝÅÍÕ ÜÔÁÐÕ. ÷ÁÍ ÐÒÉÄÅÔÓÑ " @@ -1069,7 +1069,7 @@ msgstr "" "÷ÁÍ ÎÅÏÂÈÏÄÉÍÏ ÂÏÌØÛÅ ÍÅÓÔÁ ÎÁ ÓÌÅÄÕÀÝÉÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍÁÈ:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "ôÏÞËÁ ÍÏÎÔÉÒÏ×ÁÎÉÑ" @@ -1077,7 +1077,7 @@ msgstr "ôÏÞËÁ ÍÏÎÔÉÒÏ×ÁÎÉÑ" msgid "Space Needed" msgstr "íÁÌÏ ÍÅÓÔÁ" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1087,19 +1087,19 @@ msgstr "" "×ÁÍÉ ÐÁËÅÔÏ×. ÷ÁÍ ÎÅÏÂÈÏÄÉÍÏ ÂÏÌØÛÅ ÍÅÓÔÁ ÎÁ ÓÌÅÄÕÀÝÉÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍÁÈ:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "îÅÄÏÓÔÁÔÏÞÎÏ ÄÅÓËÒÉÐÔÏÒÏ× ÆÁÊÌÏ×" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "äÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "îÁÓÔÒÏÊËÁ ÐÏÓÌÅ ÕÓÔÁÎÏ×ËÉ" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "÷ÙÐÏÌÎÑÅÔÓÑ ÎÁÓÔÒÏÊËÁ ÐÏÓÌÅ ÕÓÔÁÎÏ×ËÉ..." @@ -1126,35 +1126,35 @@ msgstr "" "×ÁÛÕ ÓÉÓÔÅÍÕ Linux, ÐÏÚ×ÏÌØÔÅ ÅÊ ÐÒÏ×ÅÒÉÔØ ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ É ÐÒÁ×ÉÌØÎÏ " "ÚÁ×ÅÒÛÉÔÅ ÒÁÂÏÔÕ, ÐÏÓÌÅ ÞÅÇÏ ÐÏ×ÔÏÒÉÔÅ ÐÏÐÙÔËÕ ÏÂÎÏ×ÌÅÎÉÑ." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "÷ÉÄÅÏËÁÒÔÁ" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "÷ÉÄÅÏ ïúõ" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X ÓÅÒ×ÅÒ" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ×ÉÄÅÏËÁÒÔÕ" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "íÏÎÉÔÏÒ" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "íÏÎÉÔÏÒ Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "äÉÁÐÁÚÏÎ ÓÔÒÏÞÎÏÊ ÒÁÚ×ÅÒÔËÉ" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "äÉÁÐÁÚÏÎ ËÁÄÒÏ×ÏÊ ÒÁÚ×ÅÒÔËÉ" @@ -1401,7 +1401,7 @@ msgid "Total install size: %s" msgstr "ðÏÌÎÙÊ ÒÁÚÍÅÒ: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "ðÁËÅÔ" @@ -1781,43 +1781,43 @@ msgstr "õÓÔÁÎÏ×ËÁ ÐÁËÅÔÏ×" msgid "%s KBytes" msgstr "%s ëâÁÊÔ" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "òÁÚÍÅÒ" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "ó×ÅÄÅÎÉÑ" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "ðÁËÅÔÏ×: " -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "÷ÓÅÇÏ :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "óÏÓÔÏÑÎÉÅ" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "ðÁËÅÔÏ×" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "÷ÒÅÍÑ" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "÷ÓÅÇÏ" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "çÏÔÏ×Ï" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "ïÓÔÁÌÏÓØ" @@ -3744,7 +3744,7 @@ msgstr "úÁÇÒÕÖÁÅÔÓÑ ×ÉÒÔÕÁÌØÎÙÊ ÄÉÓË %s..." msgid "Error loading ramdisk." msgstr "ïÛÉÂËÁ ÚÁÇÒÕÚËÉ ×ÉÒÔÕÁÌØÎÏÇÏ ÄÉÓËÁ." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s" @@ -3844,19 +3844,19 @@ msgstr "ëÁËÏÊ ÎÏÓÉÔÅÌØ ÓÏÄÅÒÖÉÔ ÓÐÁÓÁÔÅÌØÎÙÊ ÏÂÒÁÚ?" msgid "What type of media contains the packages to be installed?" msgstr "îÏÓÉÔÅÌØ ËÁËÏÇÏ ÔÉÐÁ ÓÏÄÅÒÖÉÔ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ ks.cfg ÎÁ ÚÁÇÒÕÚÏÞÎÏÊ ÄÉÓËÅÔÅ." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "äÉÓË ÏÂÎÏ×ÌÅÎÉÊ" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "÷ÓÔÁרÔÅ ÄÉÓË ÏÂÎÏ×ÌÅÎÉÊ É ÎÁÖÍÉÔÅ \"OK\" ÄÌÑ ÐÒÏÄÏÌÖÅÎÉÑ." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3864,26 +3864,26 @@ msgstr "" "÷ÓÔÁ×ÌÅÎÎÁÑ ×ÁÍÉ ÄÉÓËÅÔÁ ÎÅ Ñ×ÌÑÅÔÓÑ ÄÉÓËÏÍ ÏÂÎÏ×ÌÅÎÉÊ ÏÔ ÜÔÏÊ ×ÅÒÓÉÉ Red " "Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "ïÛÉÂËÁ ÍÏÎÔÉÒÏ×ÁÎÉÑ ÄÉÓËÅÔÙ." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "ïÂÎÏ×ÌÅÎÉÑ" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "þÔÅÎÉÅ ÏÂÎÏ×ÌÅÎÉÊ anaconda..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "îÁ ÜÔÏÊ ÍÁÛÉÎÅ ÎÅÄÏÓÔÁÔÏÞÎÏ ÓÉÓÔÅÍÎÏÊ ÐÁÍÑÔÉ ÄÌÑ ÕÓÔÁÎÏ×ËÉ Red Hat." -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "úÁÐÕÓËÁÅÔÓÑ anaconda...\n" @@ -4302,3 +4302,698 @@ msgstr "óÒÅÄÓÔ×Á ÒÁÚÒÁÂÏÔËÉ ÑÄÒÁ" msgid "Utilities" msgstr "õÔÉÌÉÔÙ" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "áÕÔÅÎÔÉÆÉËÁÃÉÑ" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "àÖÎÁÑ áÍÅÒÉËÁ" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "òÁÓÐÏÌÏÖÅÎÉÅ" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "çÏÔÏ×Ï" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "çÏÔÏ×Ï" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "ïÓÔÁÌÏÓØ" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "ðÏÉÓË" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "çÏÔÏ×Ï" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rhinstall unknown\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-03-07 18:15+01:00\n" "Last-Translator: Stanislav Meduna <stano@eunet.sk>\n" "Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n" @@ -14,7 +14,7 @@ msgstr "" msgid "Everything" msgstr "Vyhµadávanie" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -56,8 +56,8 @@ msgstr "Vyhµadávanie" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -130,17 +130,17 @@ msgid "" "http://bugzilla.redhat.com/bugzilla" msgstr "" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Ïalej" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -149,9 +149,9 @@ msgstr "Ïalej" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -170,59 +170,59 @@ msgstr "Ïalej" msgid "Back" msgstr "Spä»" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Zobrazi» pomôcky" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Skry» pomôcky" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Ukonèi»" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Online pomôcky" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Výber jazyka" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Zavrie»" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux in¹talátor" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux in¹talaèný shell" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux in¹talátor na %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux in¹talaèný shell na %s" -#: ../gui.py:873 +#: ../gui.py:872 #, fuzzy msgid "Install Window" msgstr "In¹talova»" @@ -279,17 +279,17 @@ msgstr "" #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -398,7 +398,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -425,7 +425,7 @@ msgstr "_Vráti»" msgid "Choose the languages to be installed:" msgstr "Aký typ média obsahuje balíky, ktoré si ¾eláte nain¹talova»?" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Výber jazyka" @@ -450,7 +450,7 @@ msgstr "Výber jazyka" msgid "Choose the default language: " msgstr "Výber jazyka" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Výber klávesnice" @@ -462,7 +462,7 @@ msgstr "Aký model klávesnice je pripojený k tomuto poèítaèu?" msgid "Upgrade Existing Installation" msgstr "Aktualizova» existujúcu in¹taláciu" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Typ in¹talácie" @@ -495,20 +495,20 @@ msgstr "Nemáte ¾iadny Linux oddiel. Tento systém aktualizova» nemô¾ete!" msgid "System to Upgrade" msgstr "Systém pre aktualizáciu" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Úprava oddielu" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Výber balíkov pre aktualizáciu" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -527,7 +527,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -541,17 +541,17 @@ msgstr "Áno" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nie" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -572,7 +572,7 @@ msgstr "" "Pokiaµ ste si zakúpili Official Red Hat Linux, nezabudnite svoju kúpu " "zaregistrova» prostredníctvom na¹ej Web stránky http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -591,42 +591,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Zru¹i»" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Výsledky X skú¹ky" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Neznáma karta" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Výber grafickej karty" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Aký typ grafickej karty máte?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Výber X servera" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Vyberte server" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Zaèiatok in¹talácie" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -634,12 +634,12 @@ msgstr "" "Kompletný protokol o in¹talácii nájdete po re¹tartovaní systému v súbore " "/tmp/install.log. Tento súbor sa mô¾e hodi» pre neskor¹iu referenciu." -#: ../text.py:637 +#: ../text.py:631 #, fuzzy msgid "Upgrade to begin" msgstr "Aktualizácia systému" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 #, fuzzy msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " @@ -648,17 +648,17 @@ msgstr "" "Kompletný protokol o in¹talácii nájdete po re¹tartovaní systému v súbore " "/tmp/install.log. Tento súbor sa mô¾e hodi» pre neskor¹iu referenciu." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Hotovo" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -681,13 +681,13 @@ msgstr "" "Informácie o konfigurácii a pou¾ití vá¹ho systému sú dostupné príruèkách k " "Red Hat Linuxu." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -706,59 +706,59 @@ msgstr "" "Informácie o ïal¹ej konfigurácii vá¹ho systému je dostupná v post install " "kapitole príruèky Official Red Hat Linux User's Guide." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "In¹talácia balíkov" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Názov : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Veµkos» :" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Súhrn :" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Balíkov" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bajtov" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Èas" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Spolu :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Hotových : " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Zostáva : " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -767,30 +767,30 @@ msgid "" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Ladenie" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 #, fuzzy msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <Tab>/<Alt-Tab> medzi polo¾kami | <Space> vyberá | <F12> nasl. obr. " -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" @@ -798,153 +798,153 @@ msgstr "" " <Tab>/<Alt-Tab> medzi polo¾kami | <Space> vyberá | <F12> nasl. " "obr. " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Vitajte" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Nastavenie názvu poèítaèa" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Nastavenie siete" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "Konfigurácia LILO" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Nastavenie èasového pásma" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Heslo superpou¾ívateµa" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Nastavenie pou¾ívateµského úètu" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autentifikácia" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Konfigurácia ukonèená" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Konfigurácia SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Konfigurácia LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatický oddiel" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Oddiel" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Manuálne rozdelenie" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Veµkos» koreòového súborového systému" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "Automatické rozdelenie oddielov" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formátovanie súborového systému" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Konfigurácia my¹i" -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "Výber jazyka" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Skupiny balíkov" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Jednotlivé balíky" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Závislosti balíkov" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Konfigurácia X" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "In¹talácia zaèína" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "In¹talácia systému" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Zavádzacia disketa" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "In¹talácia ukonèená" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Prehliadanie systému" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Úprava aktualizácie" -#: ../text.py:1187 +#: ../text.py:1181 #, fuzzy msgid "Upgrade Begins" msgstr "Aktualizácia - prehliadanie" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Aktualizácia systému" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Aktualizácia ukonèená" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Zru¹ené" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Odtiaµto sa nedá vráti» na predchádzajúci krok. Budete musie» skúsi» znovu." @@ -1040,7 +1040,7 @@ msgstr "" "Zdá sa, ¾e nemáte na disku dostatok miesta pre nain¹talovanie vybraných " "balíkov. Potrebujete viac miesta na nasledovných súborových systémoch:\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Bod pripojenia" @@ -1048,7 +1048,7 @@ msgstr "Bod pripojenia" msgid "Space Needed" msgstr "Potredný priestor" -#: ../todo.py:1803 +#: ../todo.py:1805 #, fuzzy msgid "" "You don't appear to have enough file nodes to install the packages you've " @@ -1058,20 +1058,20 @@ msgstr "" "Zdá sa, ¾e nemáte na disku dostatok miesta pre nain¹talovanie vybraných " "balíkov. Potrebujete viac miesta na nasledovných súborových systémoch:\n" -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "Potredný priestor" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Priestor na disku" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Po in¹talácii" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Vykonanie poin¹talaènej konfigurácie..." @@ -1095,35 +1095,35 @@ msgid "" "checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Videokarta" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Videopamä»" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X server" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Nepodarilo sa zisti» grafickú kartu" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Rozsah horizontálnych frekvencií" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Rozsah vertikálnych frekvencií" @@ -1380,7 +1380,7 @@ msgid "Total install size: %s" msgstr "" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Balík" @@ -1769,45 +1769,45 @@ msgstr "In¹talácia balíkov" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Veµkos»" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Súhrn" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Skupiny balíkov" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 #, fuzzy msgid "Total Progress: " msgstr "Spolu :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Stav" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Balíky" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Èas" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Spolu" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Hotovo" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Zostáva" @@ -3692,7 +3692,7 @@ msgstr "Naèítava sa ramdisk druhej fázy..." msgid "Error loading ramdisk." msgstr "Chyba pri èítaní ramdisku. " -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Nepodarilo sa preèíta» adresár %s: %s" @@ -3796,20 +3796,20 @@ msgstr "Aký typ média obsahuje záchranný obraz systému?" msgid "What type of media contains the packages to be installed?" msgstr "Aký typ média obsahuje balíky, ktoré si ¾eláte nain¹talova»?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Na zavádzacej diskete nie je mo¾né nájs» súbor ks.cfg." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 #, fuzzy msgid "Updates Disk" msgstr "Aktualizácie" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Vlo¾te disketu s aktualizáciou a stlaète \"OK\" pre pokraèovanie." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 #, fuzzy msgid "" "The floppy disk you inserted is not a valid update disk for this release of " @@ -3818,26 +3818,26 @@ msgstr "" "Disketa, ktorú ste vlo¾ili, nie je správna disketa s ovládaèmi pre túto " "verziu Red Hat Linuxu." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Nepodarilo sa mi pripoji» disketu." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Aktualizácie" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Naèítanie aktualizácií anakondy..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "Naèítanie aktualizácií anakondy..." @@ -4290,6 +4290,700 @@ msgstr "Parametre jadra" msgid "Utilities" msgstr "" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autentifikácia" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +msgid "South Australia" +msgstr "" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Poloha" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Ukonèi»" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Ukonèi»" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Zostáva" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Vyhµadávanie" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Ukonèi»" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "Horizontal Sync" #~ msgstr "Horizontálna synchronizácia" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: install 7.1\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-02-02 18:00+0200\n" "Last-Translator: Roman Maurer <roman.maurer@hermes.si>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "Vse" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Pri¹lo je do izjeme" @@ -62,8 +62,8 @@ msgstr "Opozorilo" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -148,7 +148,7 @@ msgstr "" "vso besedilo te izjeme in izpolnite poroèilo o hro¹èu na " "http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -156,11 +156,11 @@ msgstr "" "Zdaj, prosimo, vstavite disketo. Vsa vsebina diskete do zbrisana, zato, " "prosimo, to disketo izberite nadvse pazljivo." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Naprej" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -169,9 +169,9 @@ msgstr "Naprej" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -190,59 +190,59 @@ msgstr "Naprej" msgid "Back" msgstr "Nazaj" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Zapiski ob izdaji" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Prika¾imo pomoè" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Skrijmo pomoè" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Konec" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Pomoè na zvezi" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Izbira jezika" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Zapri" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Zapiski ob izdaji" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Datoteke ni moè nalo¾iti!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Namestitveni program Red Hat Linuxa" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Namestitvena lupina Red Hat Linuxa" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Namestitveni program Red Hat Linuxa na %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Namestitvena lupina Red Hat Linuxa na %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Namestitveno okno" @@ -298,17 +298,17 @@ msgstr "CD-ROM-a ni moè priklopiti." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -425,7 +425,7 @@ msgstr "Va¹ sistem je priklopljen pod imenikom /mnt/sysimage." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -450,7 +450,7 @@ msgstr "Resetiraj" msgid "Choose the languages to be installed:" msgstr "Izberite jezike, ki naj se namestijo:" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Podpora jezikov" @@ -471,7 +471,7 @@ msgstr "Privzeti jezik" msgid "Choose the default language: " msgstr "Izberite privzeti jezik: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Izbira tipkovnice" @@ -483,7 +483,7 @@ msgstr "Kateri model tipkovnice je prikljuèen na ta raèunalnik?" msgid "Upgrade Existing Installation" msgstr "Nadgraditev obstojeèe namestitve" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Vrsta namestitve" @@ -516,20 +516,20 @@ msgstr "Nimate nobene razdelitve Linuxa. Tega sistema ne morete nadgraditi!" msgid "System to Upgrade" msgstr "Nadgraditev sistema" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Uredimo razdelitev" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Prikrojitev paketov za nadgradnjo" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -548,7 +548,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -562,17 +562,17 @@ msgstr "Da" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Ne" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -593,7 +593,7 @@ msgstr "" "Èe ste kupili Official Red Hat Linux, registrirajte va¹ izvod v na¹em " "spleti¹èu, http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -612,42 +612,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Preklièi" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Izidi preisku¹anja X" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Nena¹teta kartica" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Izbira grafiène kartice" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Katero grafièno kartico imate?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Izbira stre¾nika X" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Izberite stre¾nik" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Zaèetek namestitve" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -656,11 +656,11 @@ msgstr "" "boste ponovno zagnali sistem. Morda boste ¾eleli obdr¾ati to datoteko za " "poznej¹i ogled." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Nadgradnja za zaèetek" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -669,7 +669,7 @@ msgstr "" "boste ponovno zagnali sistem. Morda boste ¾eleli obdr¾ati to datoteko za " "poznej¹i ogled." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -677,11 +677,11 @@ msgstr "" " <Enter> za vnovièen zagon " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Opravljeno" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -703,7 +703,7 @@ msgstr "" "Informacije o prikrojitvi in rabi sistema lahko najdete v priroènikih za Red " "Hat Linux." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -711,7 +711,7 @@ msgstr "" " <Enter> za izhod " " " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -729,59 +729,59 @@ msgstr "" "Informacije o nadaljnji prikrojitvi sistema lahko najdete na " "http://www.redhat.com/support/manuals/" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Namestitev paketov" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Ime :" -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Velikost:" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Opis :" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Paketi" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Zlogi" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Èas" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Skupno :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Opravljeno: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Preostanek: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Pomoè ni na voljo" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Za to namestitev pomoè ni dostopna." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Shrani posmrtne ostanke" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -795,178 +795,178 @@ msgstr "" "odpravljanju napake.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Shrani" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Razhro¹èimo" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <Tab>/<Alt-Tab> med elementi | <Space> izbere | <F12> naslednji zaslon" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> med elementi | <presl.> izbere | <F12> naslednji zaslon" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Dobrodo¹li" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Nastavitev imena raèunalnika" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Nastavitev omre¾ja" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Prikrojitev po¾arnega zidu" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Nastavitev èasovnega pasu" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Geslo za root" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Namestitev uporabni¹kega raèuna" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Identifikacija" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Nastavitev konèana" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "Nastavitev SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "Nastavitev LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Samodejna razdelitev" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Razdelitev diska" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Roèna razdelitev" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Velikost korenskega datoteènega sistema" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Izmenjalna" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Opozorilo o zagonski razdelitvi" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formatiranje datoteènega sistema" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Nastavitev mi¹ke" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Privzet jezik" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Skupina paketov" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Posamezni paketi" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Odvisnosti paketov" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Nastavitev X" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Zaèetek namestitve" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Namesti sistem" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Zagonska disketa" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Namestitev je konèana" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Prei¹èi sistem" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Prilagodi nadgradnjo" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Prei¹èimo nadgradnjo" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Nadgradi sistem" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Popolnoma nadgradi" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Preklicano" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Ne moremo se vrniti na prej¹nji korak. Poskusiti boste morali ponovno." @@ -1070,7 +1070,7 @@ msgstr "" "Potrebujete veè prostora na naslednjem datoteènem sistemu:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Toèka priklopa" @@ -1078,7 +1078,7 @@ msgstr "Toèka priklopa" msgid "Space Needed" msgstr "Potreben prostor" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1088,19 +1088,19 @@ msgstr "" "Potrebujete veè datoteènih vozlov na naslednjih datoteènih sistemih:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Potrebni vozli" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Prostor na disku" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Po namestitvi" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Izvajamo nastavitve po namestitvi..." @@ -1127,35 +1127,35 @@ msgstr "" "Prosimo, za¾enite va¹o namestitev Linuxa, pustite, da se datoteèni sistemi " "preverijo, in zaustavite sistem na èisti naèin, èe ¾elite sistem nadgraditi." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Grafièna kartica" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Video RAM" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "Stre¾nik X" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Ne moremo zaznati grafiène kartice" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor vrste Plug and Play" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Obseg horizontalne frekvence" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Obseg vertikalne frekvence" @@ -1404,7 +1404,7 @@ msgid "Total install size: %s" msgstr "Skupna velikost namestitve: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Paket" @@ -1786,43 +1786,43 @@ msgstr "Name¹èamo pakete" msgid "%s KBytes" msgstr "%s kbajtov" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Velikost" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Povzetek" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Napredek paketa: " -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Skupni napredek: " -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Stanje" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Paketi" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Èas" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Skupno" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Opravljeno" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Preostanek" @@ -3742,7 +3742,7 @@ msgstr "Nalagamo drugo stopnjo pomnilni¹kega diska..." msgid "Error loading ramdisk." msgstr "Napaka pri nalaganju pomnilni¹kega diska." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Ne moremo brati imenika %s: %s" @@ -3840,19 +3840,19 @@ msgstr "Kak¹ne vrste nosilec vsebuje re¹ilno sliko?" msgid "What type of media contains the packages to be installed?" msgstr "Katero vrsto nosilca vsebuje paket, ki bi ga radi namestili?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Ne moremo najti ks.cfg na zagonski disketi." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Popravki" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Vstavite disketo s popravki in pritisnite \"V redu\" za nadaljevanje" -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3860,26 +3860,26 @@ msgstr "" "Disketa, ki ste jo vstavili, ni veljavna disketa za nadgradnjo na to izdajo " "Red Hat Linuxa." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Ne moremo priklopiti diskete." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Popravki" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Beremo popravke anaconda..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "Beremo popravke anaconda..." @@ -4301,6 +4301,701 @@ msgstr "Razvoj jedra" msgid "Utilities" msgstr "Pripomoèki" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Identifikacija" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Ju¾na Amerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Lokacija" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Konec" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Konec" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Preostanek" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Iskanje" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Konec" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "America/New_York" #~ msgstr "Europe/Ljubljana" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: install $Revision$\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-02-21 24:00-0500\n" "Last-Translator: Zoltan Èala <zolika@sezampro.yu>\n" "Language-Team: Serbian <sr@li.org>\n" @@ -14,7 +14,7 @@ msgstr "" msgid "Everything" msgstr "Pretra¾ujem" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -56,8 +56,8 @@ msgstr "Pretra¾ujem" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -130,17 +130,17 @@ msgid "" "http://bugzilla.redhat.com/bugzilla" msgstr "" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Sledeæe" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -149,9 +149,9 @@ msgstr "Sledeæe" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -170,59 +170,59 @@ msgstr "Sledeæe" msgid "Back" msgstr "Natrag" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Prika¾i pomoæ" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Sakrij pomoæ" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Zavr¹i" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "'Online' pomoæ" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Izbor jezika" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Zatvori" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Instalacioni vodiè za Red Hat Linux" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Instalacioni 'shell' za Red Hat Linux" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux Instalater na %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Instalacioni 'shell' za Red Hat Linux na %s" -#: ../gui.py:873 +#: ../gui.py:872 #, fuzzy msgid "Install Window" msgstr "Instalacija" @@ -279,17 +279,17 @@ msgstr "" #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -398,7 +398,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -425,7 +425,7 @@ msgstr "_Resetuj" msgid "Choose the languages to be installed:" msgstr "Kakav tip medija sadr¾i pakete koje treba instalirati?" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Izbor jezika" @@ -450,7 +450,7 @@ msgstr "Izaberite jezik" msgid "Choose the default language: " msgstr "Izaberite jezik" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Izbor tastature" @@ -462,7 +462,7 @@ msgstr "Koji model tastature je prikljuèen na ovaj raèunar?" msgid "Upgrade Existing Installation" msgstr "A¾uriranje postojeæe instalacije" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Tip instalacije" @@ -495,20 +495,20 @@ msgstr "Nemate nijednu Linux particiju. Ne mo¾ete da a¾urirate ovaj sistem!" msgid "System to Upgrade" msgstr "Sistem za a¾uriranje" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Uredi particiju" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Izaberi pakete za a¾uriranje" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -527,7 +527,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -541,17 +541,17 @@ msgstr "Da" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Ne" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -571,7 +571,7 @@ msgstr "" "Ako ste nabavili Zvanièni Red Hat Linux, registrujte va¹u kopiju na na¹em " "WWW sajtu, http://www.redhat.com." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -590,42 +590,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Obustavi" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "Rezultati ispitivanja X-a" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Kartica nije navedena" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Izbor video-kartice" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Koju video-karticu imate?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Izbor X-Windows servera" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Izaberite server" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Poèetna instalacija" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -633,12 +633,12 @@ msgstr "" "Potpun dnevnik instalacije naæi æete u datoteci /tmp/install.log po¹to " "resetujete sistem. Èuvajte ga jer vam mo¾e zatrebati." -#: ../text.py:637 +#: ../text.py:631 #, fuzzy msgid "Upgrade to begin" msgstr "A¾uriraj sistem" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 #, fuzzy msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " @@ -647,17 +647,17 @@ msgstr "" "Potpun dnevnik instalacije naæi æete u datoteci /tmp/install.log po¹to " "resetujete sistem. Èuvajte ga jer vam mo¾e zatrebati." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Uraðeno" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -679,13 +679,13 @@ msgstr "" "Informacije o konfigurisanju va¹eg sistema mo¾ete naæi u post-instalacionom " "poglavlju zvaniènog Red Hat Linux 'Vodièa za korisnike'." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -704,59 +704,59 @@ msgstr "" "Informacije o konfigurisanju va¹eg sistema mo¾ete naæi u post-instalacionom " "poglavlju zvaniènog Red Hat Linux 'Vodièa za korisnike'." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Instalacija paketa" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Ime : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Velièina: " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Pregled : " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Paketa" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bajtova" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Vreme" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Ukupno :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Dovr¹eno: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Ostalo : " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -765,30 +765,30 @@ msgid "" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Tra¾enje gre¹aka" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 #, fuzzy msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <Tab>/<Alt-Tab> kretanje | <Space> za izbor stavke | <F12> sledeæi ekran " -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" @@ -796,153 +796,153 @@ msgstr "" " <Tab>/<Alt-Tab> kretanje kroz stavke | <Space> za izbor | <F12> za sledeæi " "ekran" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Dobrodo¹li" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Pode¹avanje imena hosta" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Pode¹avanje mre¾e" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "Pode¹avanje LILO-a" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Pode¹avanje vremenske zone" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Root lozinka" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Pode¹avanje korisnièkog naloga" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Provera identiteta" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Pode¹avanje je zavr¹eno" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO pode¹avanje" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO pode¹avanje" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatsko particionisanje" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Particija" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Ruèno particionisanje" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Velièina 'root' sistema datoteka" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "Automatsko particionisanje" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formatiranje sistema datoteka" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Pode¹avanje mi¹a" -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "Izbor jezika" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Grupe paketa" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Pojedinaèni paketi" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Paketske meðuzavisnosti" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "Pode¹avanje X-Windows-a" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Instalacija poèinje" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Instaliraj sistem" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Startni disk" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Instalacija zavr¹ena" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Ispitaj sistem" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Podesi a¾uriranje po volji" -#: ../text.py:1187 +#: ../text.py:1181 #, fuzzy msgid "Upgrade Begins" msgstr "Ispitivanje a¾uriranja" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "A¾uriraj sistem" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "A¾uriranje zavr¹eno" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Obustavljeno" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Ne mogu da se vratim na prethodni korak. Moraæete opet da poku¹ate." @@ -1038,7 +1038,7 @@ msgstr "" "Potrebno vam je vi¹e prostora na sledeæim sistemima datoteka:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Taèka montiranja" @@ -1046,7 +1046,7 @@ msgstr "Taèka montiranja" msgid "Space Needed" msgstr "Potreban prostor" -#: ../todo.py:1803 +#: ../todo.py:1805 #, fuzzy msgid "" "You don't appear to have enough file nodes to install the packages you've " @@ -1057,20 +1057,20 @@ msgstr "" "Potrebno vam je vi¹e prostora na sledeæim sistemima datoteka:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "Potreban prostor" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Prostor na disku" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Posle instalacije" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Konfigurisanje posle instalacije..." @@ -1094,35 +1094,35 @@ msgid "" "checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Video-kartica" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Video-RAM" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X server" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Ne mogu da detektujem video-karticu" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitor" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Monitor tipa 'Plug and Play'" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Opseg horizontalne frekvencije" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Opseg vertikalne frekvencije" @@ -1379,7 +1379,7 @@ msgid "Total install size: %s" msgstr "" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Paket" @@ -1768,45 +1768,45 @@ msgstr "Instaliranje paketa" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Velièina" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Pregled" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Grupe paketa" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 #, fuzzy msgid "Total Progress: " msgstr "Ukupno :" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Status" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Paketi" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Vreme" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Ukupno" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Uraðeno" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Preostalo" @@ -3692,7 +3692,7 @@ msgstr "Uèitavanje ramdiska druge faze..." msgid "Error loading ramdisk." msgstr "Gre¹ka uèitavanja ramdisk-a." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Ne mogu da proèitam direktorijum %s: %s" @@ -3796,20 +3796,20 @@ msgstr "Koja vrsta medija sadr¾i fajl za oporavak?" msgid "What type of media contains the packages to be installed?" msgstr "Kakav tip medija sadr¾i pakete koje treba instalirati?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Ne mogu da naðem ks.cfg na startnoj disketi." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 #, fuzzy msgid "Updates Disk" msgstr "Osve¾avanja" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Ubacite disketu sa popravkama i pritisnite \"U redu\" da nastavite." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 #, fuzzy msgid "" "The floppy disk you inserted is not a valid update disk for this release of " @@ -3818,26 +3818,26 @@ msgstr "" "Flopi-disk koji ste ubacili ne sadr¾i drajvere koji se mogu koristiti sa " "ovim izdanjem Red Hat Linux-a." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Neuspe¹no montiranje flopi-diska." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Osve¾avanja" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Èitanje 'anaconda' osve¾avanje..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "Èitanje 'anaconda' osve¾avanje..." @@ -4285,6 +4285,700 @@ msgstr "Parametri kernela" msgid "Utilities" msgstr "" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Provera identiteta" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +msgid "South Australia" +msgstr "" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Mesto" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Zavr¹i" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Zavr¹i" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Preostalo" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Pretra¾ujem" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Zavr¹i" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "Horizontal Sync" #~ msgstr "Vodoravna sinhronizacija" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: install\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-03-06 21:30+0100\n" "Last-Translator: Christian Rose <menthos@menthos.com>\n" "Language-Team: Swedish <sv@li.org>\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "Allt" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Ett undantagsfel inträffade" @@ -63,8 +63,8 @@ msgstr "Varning" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -149,7 +149,7 @@ msgstr "" "bugg. Var vänlig och kopiera hela texten från detta undantagsfel och skapa " "en buggrapport på http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -157,11 +157,11 @@ msgstr "" "Var vänlig och sätt i en diskett nu. Allt innehåll på disketten kommer att " "tas bort, så var noga med valet av diskett." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Nästa" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -170,9 +170,9 @@ msgstr "Nästa" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -191,59 +191,59 @@ msgstr "Nästa" msgid "Back" msgstr "Tillbaka" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "Utgåvenoteringar" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Visa hjälp" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Göm hjälp" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Slutför" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Hjälp" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Språkval" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Stäng" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "Utgåvenoteringar" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "Kan inte läsa in fil!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux installationsprogram" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux installationsskal" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "Red Hat Linux installationsprogram på %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "Red Hat Linux installationsskal på %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Installationsfönster" @@ -299,17 +299,17 @@ msgstr "Cdromskivan kunde inte monteras." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -426,7 +426,7 @@ msgstr "Ditt system är monterat under katalogen /mnt/sysimage." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -450,7 +450,7 @@ msgstr "Återställ" msgid "Choose the languages to be installed:" msgstr "Välj de språk som ska installeras:" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Språkstöd" @@ -470,7 +470,7 @@ msgstr "Standardspråk" msgid "Choose the default language: " msgstr "Välj standardspråket: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Tangentbordsval" @@ -482,7 +482,7 @@ msgstr "Vilken typ av tangentbord är ansluten till denna dator?" msgid "Upgrade Existing Installation" msgstr "Uppgradera befintlig installation" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Installationstyp" @@ -520,19 +520,19 @@ msgstr "Du har inga Linuxpartitioner. Du kan inte uppgradera systemet!" msgid "System to Upgrade" msgstr "System att uppgradera" -#: ../text.py:410 +#: ../text.py:405 msgid "Upgrade Partition" msgstr "Uppgradera partition" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "Kommer att uppgradera partitionen /dev/" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Välj paket att uppgradera" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -551,7 +551,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -565,17 +565,17 @@ msgstr "Ja" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Nej" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -596,7 +596,7 @@ msgstr "" "Om du har köpt \"Official Red Hat Linux\", kom då ihåg att registera dig på " "vår webbplats, http://www.redhat.com/." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -616,42 +616,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Avbryt" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "X-testresutat" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Olistat kort" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Grafikkortsval" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Vilket grafikkort har du?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Val av X-server" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Välj en server" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Installationen startar" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -660,11 +660,11 @@ msgstr "" "efter omstart av systemet. Denna fil kan vara bra att spara och använda som " "referens senare." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Uppgraderingen kommer att starta" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -673,7 +673,7 @@ msgstr "" "efter omstart av systemet. Denna fil kan vara bra att spara och använda som " "referens senare." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -681,11 +681,11 @@ msgstr "" " <Enter> för att starta om " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Färdig" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -708,7 +708,7 @@ msgstr "" "Information om konfiguration och användning av ditt Red Hat Linux-system " "finns i Red Hat Linux-manualerna." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -716,7 +716,7 @@ msgstr "" " <Enter> för att avsluta " " " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -735,59 +735,59 @@ msgstr "" "Information om vidare konfiguration av ditt system hittar du på " "http://www.redhat.com/support/manuals/" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Paketinstallation" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Namn : " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Storlek : " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Sammanf.: " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Paket" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Byte" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Tid" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Totalt : " -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Färdigt : " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Återstår: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "Hjälp inte tillgänglig" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Ingen hjälp finns tillgänglig för denna installation." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Spara kraschdump" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -801,30 +801,30 @@ msgstr "" "kan hjälpa Red Hat att åtgärda problemet.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Spara" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Felsökning" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux © 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> för hjälp | <Tab> mellan element | <Blanksteg> väljer | <F12> nästa " "skärm" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" @@ -832,149 +832,149 @@ msgstr "" " <Tab>/<Alt-Tab> mellan element | <Blanksteg> väljer | <F12> nästa " "skärm" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Välkommen" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Värdnamnskonfiguration" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Nätverkskonfiguration" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Brandväggskonfiguration" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Tidszonskonfiguration" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "Rootlösenord" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Konfiguration av användarkonton" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Autentisering" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Konfigurationen är färdig" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO-konfiguration" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO-konfiguration" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Automatisk partitionering" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Partition" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Manuell partitionering" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Storlek på rotfilsystem" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Swap" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Varning angående bootpartition" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Formaterar filsystem" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Muskonfiguration" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Standardspråk" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Paketgrupper" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Enstaka paket" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Paketberoenden" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X-konfiguration" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Installationen startar" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Installera system" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Bootdiskett" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Installationen är färdig" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Granska system" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Anpassa uppgraderingen" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Uppgraderingen startar" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Uppgradera system" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Uppgradering färdig" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Avbruten" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "" "Jag kan inte gå till det föregående steget härifrån. Du måste försöka igen." @@ -1079,7 +1079,7 @@ msgstr "" "du har valt. Du behöver mer utrymme på följande filsystem:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Monteringspunkt" @@ -1087,7 +1087,7 @@ msgstr "Monteringspunkt" msgid "Space Needed" msgstr "Nödvändigt utrymme" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1097,19 +1097,19 @@ msgstr "" "har valt. Du behöver fler filnoder på följande filsystem:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Noder som behövs" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Diskutrymme" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Postinstallation" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Utför postinstallationskonfiguration..." @@ -1136,35 +1136,35 @@ msgstr "" "korrekt. Starta upp din linuxinstallation och låt filsystemen kontrolleras, " "och stäng sedan ner korrekt för att uppgradera." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Grafikkort" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Grafikminne" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X-server" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Kan inte hitta grafikkort" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Bildskärm" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Plug and Play-bildskärm" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Horisontellt frekvensintervall" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Vertikalt frekvensintervall" @@ -1414,7 +1414,7 @@ msgid "Total install size: %s" msgstr "Total installationsstorlek: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Paket" @@ -1795,43 +1795,43 @@ msgstr "Installerar paket" msgid "%s KBytes" msgstr "%s kilobyte" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Storlek" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Sammanfattning" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Paketförlopp: " -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Totalt förlopp: " -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Status" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Paket" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Tid" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Totalt" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Färdigt" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Återstår" @@ -3775,7 +3775,7 @@ msgstr "Läser in %s-ramdisk..." msgid "Error loading ramdisk." msgstr "Fel vid inläsning av ramdisk." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "Kunde inte läsa katalogen %s: %s" @@ -3875,19 +3875,19 @@ msgstr "Vilket medium innehåller räddningsavbilden?" msgid "What type of media contains the packages to be installed?" msgstr "Vilket medium innehåller paketen som ska installeras?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Hittade inte ks.cfg på bootdisketten." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Uppdateringsdiskett" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Sätt i din uppdateringsdiskett och tryck \"OK\" för att fortsätta." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3895,28 +3895,28 @@ msgstr "" "Disketten som du satte i är ingen giltig uppdateringsdiskett för denna " "version av Red Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Montering av disketten misslyckades." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Uppdateringar" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Läser anaconda-uppdateringar..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" "Du har inte tillräckligt med minne för att kunna installera Red Hat på denna " "maskin." -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 msgid "Running anaconda - please wait...\n" msgstr "Kör anaconda - var vänlig vänta...\n" @@ -4339,3 +4339,698 @@ msgstr "Kärnutveckling" msgid "Utilities" msgstr "Verktyg" + +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Autentisering" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Sydamerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Plats" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Slutför" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Slutför" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Återstår" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Söker" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Slutför" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rhinstall\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 1999-09-20 12:00+0200\n" "Last-Translator: Görkem Çetin <gorkem@gelecek.com.tr>\n" "Language-Team: Gelecek A.Þ <gorkem@gelecek.com.tr>\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "Tüm paketler" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "Bir sorun oluþtu" @@ -54,8 +54,8 @@ msgstr "Uyarý" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -130,7 +130,7 @@ msgstr "" "Bir sorun oluþtu. Lütfen hata http://bugzilla.redhat.com/bugzilla adresine " "gönderiniz." -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -138,11 +138,11 @@ msgstr "" "Lütfen sürücüye bir disket yerleþtirin. Disket içindeki tüm veriler " "silinecektir" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "Ýleri" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -151,9 +151,9 @@ msgstr "Ýleri" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -172,59 +172,59 @@ msgstr "Ýleri" msgid "Back" msgstr "Geri" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "Yardýmý Göster" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Yardýmý Kapat" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Bitti" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Çevrimiçi Yardým" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Dil Seçimi" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "Kapat" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux Kurucusu" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux Kurulum Kabuðu" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "%s Üzerinde Red Hat Linux Kurulum Programý" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "%s Üzerinde Red Hat Linux Kurulum Kabuðu" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "Kurulum Penceresi" @@ -278,17 +278,17 @@ msgstr "CDROM baðlanamadý." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -394,7 +394,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -419,7 +419,7 @@ msgstr "Sýfýrla" msgid "Choose the languages to be installed:" msgstr "Kurulacak dilleri seçin:" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "Dil Desteði" @@ -440,7 +440,7 @@ msgstr "Öntanýmlý Dil" msgid "Choose the default language: " msgstr "Öntanýmlý dili seçin: " -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Tuþtakýmý Seçimi" @@ -452,7 +452,7 @@ msgstr "Ne tip bir klavye kullanýyorsunuz?" msgid "Upgrade Existing Installation" msgstr "Eski Sistemi Güncelle" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "Kurulum Tipi" @@ -485,20 +485,20 @@ msgstr "Diskinizde hiç Linux bölümü yok. Sistem güncellenemez." msgid "System to Upgrade" msgstr "Güncellenecek Sistem" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "Raid Bölümü" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "Güncellenecek Paketlerin Seçimi" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -517,7 +517,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -531,17 +531,17 @@ msgstr "Evet" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "Hayýr" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -561,7 +561,7 @@ msgstr "" "Red Hat ve diðer Linux ürünlerini kaydetmek için lütfen " "http://www.redhat.com adresine göz atýn." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -579,42 +579,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "Vazgeç" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "X tarama sonuçlarý" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "Listede Bulunmayan Kart" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Ekran Kartý Seçimi" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "Ne tip bir ekran kartýnýz var?" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "X Sunucu Seçimi" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Bir sunucu seçin" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "Kuruluma baþlangýç" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -622,11 +622,11 @@ msgstr "" "Kurulum boyunca yapýlan iþlemlerin kaydýný sisteminizi yeniden açtýktan " "sonra /tmp/install.log dosyasýnda bulabilirsiniz." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "Güncellemeye baþla" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -634,17 +634,17 @@ msgstr "" "Güncelleme boyunca yapýlan iþlemlerin kaydýný sisteminizi yeniden açtýktan " "sonra /tmp/upgrade.log dosyasýnda bulabilirsiniz." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Bitti" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -665,13 +665,13 @@ msgstr "" "Sisteminizi nasýl ayarlayacaðýnýza iliþkin bilgiler Red Hat Linux Kullaným " "Kýlavuzunda ele alýnmaktadýr." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " msgstr "" -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -689,59 +689,59 @@ msgstr "" "Daha ilerideki aþamalarda sistemde yapabileceðiniz ayarlamalar için Red Hat " "Linux Kullanýcý Kýlavuzu'na baþvurun." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "Paket Kurulumu" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Ýsim :" -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "Boy :" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "Özet :" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Paket" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " Bayt" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " Zaman" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "Toplam :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "Biten: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Kalan: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "yardým yok" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "Bu kurulum için yardým bulunmuyor." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "Hata Mesajýný Kaydet" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -753,30 +753,30 @@ msgstr "" "ve bugzilla.redhat.com web sayfasý yardýmýyla Red Hat'e ulaþtýrýn.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "Kaydet" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "Hata Ayýklama" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C), 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" "<F1> yardým | <Tab> ileri-geri | <Boþluk> iþaretle | <F12> sonraki " "ekran" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" @@ -784,149 +784,149 @@ msgstr "" " <Tab>/<Alt-Tab> ileri-geri | <Boþluk> iþaretle | <F12> sonraki " "ekran" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "Hoþgeldiniz" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Makina Adý Belirlenmesi" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "Að Ayarlarý" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "Güvenlik Duvarý Yapýlandýrmasý" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Zaman Dilimi Ayarlarý" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "root Parolasý" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "Kullanýcý Hesabý Ýþlemleri" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "Kimlik sýnama" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "Yapýlandýrma Tamamlandý" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO Yapýlandýrmasý" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO Yapýlandýrmasý" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "Otomatik Bölümlendir" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "Bölümlendirme" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "Elle Bölümlendir" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "Kök Dosya Sistemi Büyüklüðü:" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "Takas" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "Açýlýþ Bölümü Uyarýsý" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "Dosya Sistemi Biçimlendirme" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Fare Yapýlandýrmasý" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "Öntanýmlý DÝl" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Paket Gruplarý" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "Ayrý Paketler" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Paket Baðýmlýlýðý" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X Yapýlandýrmasý" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "Kurulum Baþlýyor" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "Sistemi Kur" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Açýlýþ Disketi" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "Kurulum Bitti" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "Sistemi Ýncele" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "Güncellemeyi Ayarla" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "Güncelleme Baþlangýcý" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Sistemi Güncelle" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Güncelleme Bitti" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "Vazgeçildi" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "Bu adýmdan bir öncekine gidilemez. Yeniden denemeniz gerekiyor." @@ -1023,7 +1023,7 @@ msgstr "" "diskbölümlerinde daha fazla disk alanýna ihtiyacýnýz var:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "Baðlama Noktasý" @@ -1031,7 +1031,7 @@ msgstr "Baðlama Noktasý" msgid "Space Needed" msgstr "Gerekli Alan" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1041,19 +1041,19 @@ msgstr "" "diskbölümlerinde daha fazla disk alanýna ihtiyacýnýz var:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "Gerekli Düðümler" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "Disk Alaný" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "Kurulum Sonrasý" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "Kurulum sonrasý ayarlar yapýlýyor..." @@ -1080,35 +1080,35 @@ msgstr "" "oldu. Lütfen Linux'u tekrar açýn, dosya sistemlerini baðlayýn ve temiz bir " "þekilde güncellemek üzere sistemi yeniden baþlatýn." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "Ekran Kartý" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "Ekran Belleði" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X Sunucu" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "Ekran kartý tanýtýlamadý" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "Monitör" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Tak ve Çalýþtýr Monitör" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "Yatay tazeleme hýzý" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "Düþey tazeleme hýzý" @@ -1355,7 +1355,7 @@ msgid "Total install size: %s" msgstr "Toplam kurulum boyutu: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Paket" @@ -1732,43 +1732,43 @@ msgstr "Paketler Kuruluyor" msgid "%s KBytes" msgstr "%s Kbayt" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "Boy" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "Özet" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "Paket Kurulumu: " -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "Toplam: " -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "Durum" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Paketler" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "Zaman" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "Toplam" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "Bitti" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Kalan" @@ -3641,7 +3641,7 @@ msgstr "%s ramdisk yükleniyor..." msgid "Error loading ramdisk." msgstr "Ramdisk yüklenmesinde hata." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "%s dizini okunamadý: %s" @@ -3741,19 +3741,19 @@ msgstr "Kurtarma görüntüsü nerede bulunuyor?" msgid "What type of media contains the packages to be installed?" msgstr "Kurulacak paketler nerede bulunuyor?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "Açýlýþ disketinde ks.cfg dosyasý bulunamadý." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "Güncelleme Disketi" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "Güncelleme disketini takýp \"Tamam\" düðmesine týklayýn." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3761,26 +3761,26 @@ msgstr "" "Sürücüye yerleþtirilen disket Red Hat Linux'un bu sürümü için güncel " "sürücüler içermiyor." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "Disket baðlanamadý." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "Güncellemeler" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "Anaconda güncellemeleri okunuyor..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "Anaconda güncellemeleri okunuyor..." @@ -4203,6 +4203,701 @@ msgstr "Çekirdek Geliþtirme" msgid "Utilities" msgstr "Yardýmcý Programlar" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "Kimlik sýnama" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "Güney Amerika" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "Yer" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Bitti" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Bitti" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Kalan" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "Taranýyor" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Bitti" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "Horizontal Sync" #~ msgstr "Yatay Tazeleme" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2000-08-17 16:58+09:00\n" "Last-Translator: Leon Kanter <leon@blackcatlinux.com>\n" "Language-Team: <blackcat-support@blackcatlinux.com>\n" @@ -13,7 +13,7 @@ msgstr "" msgid "Everything" msgstr "÷ÓÅ" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "óÔÁÌÁÓÑ ÐÏÍÉÌËÁ" @@ -63,8 +63,8 @@ msgstr "õ×ÁÇÁ!" #: ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 #: ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 #: ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 -#: ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 +#: ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 #: ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 @@ -150,7 +150,7 @@ msgstr "" "ÓËÏЦÀÊÔÅ ÐÏ×ÎÉÊ ÔÅËÓÔ ÃØÏÇÏ ×ÉËÌÀÞÅÎÎÑ ÔÁ ÓÆÏÒÍÕÊÔÅ Ú×¦Ô ÐÒÏ ÐÏÍÉÌËÕ ÎÁ " "http://bugzilla.redhat.com/bugzilla" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "" "Please insert a floppy now. All contents of the disk will be erased, so " "please choose your diskette carefully." @@ -158,11 +158,11 @@ msgstr "" "÷ÓÔÁ×ÔÅ ÄÉÓËÅÔÕ. ÷ÅÓØ ÚͦÓÔ ÄÉÓËÅÔÉ ÂÕÄÅ ÚÎÉÝÅÎÏ, ÔÏ Ö ×ÉÂÉÒÁÊÔÅ ÄÉÓËÅÔÕ " "ÏÂÅÒÅÖÎÏ." -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "äÁÌi" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 #: ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 #: ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 #: ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 @@ -171,9 +171,9 @@ msgstr "äÁÌi" #: ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 #: ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 #: ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 -#: ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 -#: ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 -#: ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 +#: ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 +#: ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 +#: ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 #: ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 #: ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 #: ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 @@ -192,59 +192,59 @@ msgstr "äÁÌi" msgid "Back" msgstr "îÁÚÁÄ" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "îÏ×ÉÎÉ" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "ðÏËÁÚÁÔÉ Ð¦ÄËÁÚËÕ" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "óÈÏ×ÁÔÉ Ð¦ÄËÁÚËÕ" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "úÁ˦ÎÞÉÔÉ" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "ð¦ÄËÁÚËÁ" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 -#: ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 +#: ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "÷ÉÂ¦Ò ÍÏ×É" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 #: ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "úÁËÒÉÔÉ" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "îÏ×ÉÎÉ" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "îÅÍÏÖÌÉ×Ï ÚÁ×ÁÎÔÁÖÉÔÉ ÆÁÊÌ!" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "ðÒÏÇÒÁÍÁ ×ÓÔÁÎÏ×ÌÅÎÎÑ Red Hat Linux" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "ïÂÏÌÏÎËÁ ×ÓÔÁÎÏ×ÌÅÎÎÑ Red Hat Linux" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "ðÒÏÇÒÁÍÁ ×ÓÔÁÎÏ×ÌÅÎÎÑ Red Hat Linux ÎÁ %s" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "ïÂÏÌÏÎËÁ Red Hat Linux Install ÎÁ %s" -#: ../gui.py:873 +#: ../gui.py:872 msgid "Install Window" msgstr "÷¦ËÎÏ ×ÓÔÁÎÏ×ÌÅÎÎÑ" @@ -300,17 +300,17 @@ msgstr "CDROM ÎÅ ÍÏÖÅ ÂÕÔÉ ÚÍÏÎÔÏ×ÁÎÏ." #: ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 #: ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 #: ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 -#: ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 -#: ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 +#: ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 +#: ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 #: ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 #: ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 #: ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 #: ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 #: ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 -#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 -#: ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 -#: ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 -#: ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 +#: ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 +#: ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 +#: ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 +#: ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 #: ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 #: ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 #: ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 @@ -428,7 +428,7 @@ msgstr "÷ÁÛÕ ÓÉÓÔÅÍÕ ÂÕÌÏ ÚÍÏÎÔÏ×ÁÎÏ Ð¦Ä ËÁÔÁÌÏÇÏÍ /mnt/sysimage." #: ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 #: ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 #: ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 -#: ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 +#: ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 #: ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 #: ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 #: ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 @@ -453,7 +453,7 @@ msgstr "÷¦ÄͦÎÉÔÉ" msgid "Choose the languages to be installed:" msgstr "÷ÉÂÅÒ¦ÔØ ЦÄÔÒ¦ÍËÕ ÍÏ× ÄÌÑ ×ÓÔÁÎÏ×ÌÅÎÎÑ:" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 msgid "Language Support" msgstr "ð¦ÄÔÒ¦ÍËÁ ÍÏ×" @@ -474,7 +474,7 @@ msgstr "ïÓÎÏ×ÎÁ ÍÏ×Á" msgid "Choose the default language: " msgstr "÷ÉÂÅÒ¦ÔØ ÏÓÎÏ×ÎÕ ÍÏ×Õ:" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "ôÉÐ ËÌÁצÁÔÕÒÉ" @@ -486,7 +486,7 @@ msgstr "ñËÁ ÍÏÄÅÌØ ËÌÁצÁÔÕÒÉ Ð¦ÄËÌÀÞÅÎÁ ÄÏ ÃØÏÇÏ ËÏÍÐ'ÀÔÅÒÁ?" msgid "Upgrade Existing Installation" msgstr "ðÏÎÏ×ÉÔÉ ×ÓÔÁÎÏ×ÌÅÎÕ ÓÉÓÔÅÍÕ " -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "ôÉÐ ÕÓÔÁÎÏ×ËÉ" @@ -519,20 +519,20 @@ msgstr "îÅ ÚÁÄÁÎÏ ÖÏÄÎÏÇÏ ÒÏÚĦÌÕ ÄÌÑ Linux. ðÏÎÏ×ÉÔÉ ÓÉÓÔÅÍÕ ÎÅÍÏÖÌÉ×Ï!" msgid "System to Upgrade" msgstr "óÉÓÔÅÍÁ ÄÌÑ ÐÏÎÏ×ÌÅÎÎÑ" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "òÏÚÄ¦Ì RAID" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "÷ÉÂ¦Ò ÐÁËÅÔ¦× ÄÌÑ ÐÏÎÏ×ÌÅÎÎÑ" -#: ../text.py:421 +#: ../text.py:416 msgid "" "The packages you have installed, and any other packages which are needed to " "satisfy their dependencies, have been selected for installation. Would you " @@ -550,7 +550,7 @@ msgstr "" #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 #: ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 -#: ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 +#: ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 #: ../textw/partitioning_text.py:402 msgid "Yes" @@ -564,17 +564,17 @@ msgstr "ôÁË" #: ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 #: ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 #: ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 -#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 +#: ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 #: ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 #: ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "î¦" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -594,7 +594,7 @@ msgstr "" "ñËÝÏ ×É ÐÒÉÄÂÁÌÉ ÏÆ¦Ã¦ÊÎÉÊ Red Hat Linux, ÎÅ ÚÁÂÕÄØÔÅ ÚÁÒŤÓÔÒÕ×ÁÔÉ ÊÏÇÏ ÎÁ " "ÎÁÛÏÍÕ WEB-ÓÁÊÔ¦, http://www.redhat.com." -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -613,42 +613,42 @@ msgstr "" #: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 #: ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 #: ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 -#: ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 -#: ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 -#: ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 +#: ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 +#: ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 +#: ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 #: ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "÷¦ÄͦÎÉÔÉ" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "òÅÚÕÌØÔÁÔ ×ÉÐÒÏÂÕ×ÁÎÎÑ è" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "¶ÎÛÁ ËÁÒÔÁ" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "ôÉРצÄÅÏËÁÒÔÉ" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "ñËÉÊ ÔÉРצÄÅÏËÁÒÔÉ ×É ÍÁ¤ÔÅ?:" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "÷ÉÂ¦Ò è ÓÅÒ×ÅÒÁ" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "÷ÉÂÅÒ¦ÔØ ÓÅÒ×ÅÒ" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "ðÏÞÁÔÏË ×ÓÔÁÎÏ×ÌÅÎÎÑ" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "" "A complete log of your installation will be in /tmp/install.log after " "rebooting your system. You may want to keep this file for later reference." @@ -656,11 +656,11 @@ msgstr "" "ðÏ×ÎÉÊ ÐÒÏÔÏËÏÌ ×ÓÔÁÎÏ×ÌÅÎÎÑ ×ÁÛϧ ÓÉÓÔÅÍÉ Ð¦ÓÌÑ ÐÅÒÅ×ÁÎÔÁÖÅÎÎÑ ÂÕÄÅ × " "/tmp/install.log. íÏÖÌÉ×Ï, ×É ÐÏÔÒÅÂÕ×ÁÔÉÍÅÔÅ ÊÏÇÏ ÚÇÏÄÏÍ." -#: ../text.py:637 +#: ../text.py:631 msgid "Upgrade to begin" msgstr "ðÏÞÁÔÏË ÐÏÎÏ×ÌÅÎÎÑ" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 msgid "" "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting " "your system. You may want to keep this file for later reference." @@ -668,7 +668,7 @@ msgstr "" "ðÏ×ÎÉÊ ÐÒÏÔÏËÏÌ ÐÏÎÏ×ÌÅÎÎÑ ×ÁÛϧ ÓÉÓÔÅÍÉ Ð¦ÓÌÑ ÐÅÒÅ×ÁÎÔÁÖÅÎÎÑ ÂÕÄÅ × " "/tmp/upgrade.log. íÏÖÌÉ×Ï, ×É ÐÏÔÒÅÂÕ×ÁÔÉÍÅÔÅ ÊÏÇÏ ÚÇÏÄÏÍ." -#: ../text.py:657 +#: ../text.py:651 msgid "" " <Return> to reboot " " " @@ -676,11 +676,11 @@ msgstr "" " <Enter> ÄÌÑ ÐÅÒÅÚÁ×ÁÎÔÁÖÅÎÎÑ " " " -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "úÁ˦ÎÞÅÎÏ" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 msgid "" "Congratulations, installation is complete.\n" "\n" @@ -701,7 +701,7 @@ msgstr "" "¶ÎÆÏÒÍÁæÀ ÐÒÏ ÎÁÌÁÇÏÄÖÅÎÎÑ ×ÁÛϧ ÓÉÓÔÅÍÉ Ð¦ÓÌÑ ×ÓÔÁÎÏ×ÌÅÎÎÑ ÍÏÖÎÁ ÏÄÅÒÖÁÔÉ " "Ú ÏÆ¦Ã¦ÊÎÏÇÏ ÐÏÓ¦ÂÎÉËÁ ËÏÒÉÓÔÕ×ÁÞÁ Red Hat Linux." -#: ../text.py:678 +#: ../text.py:672 msgid "" " <Return> to exit " " " @@ -709,7 +709,7 @@ msgstr "" " <Enter> ÄÌÑ ×ÉÈÏÄÕ " " " -#: ../text.py:683 +#: ../text.py:677 msgid "" "Congratulations, configuration is complete.\n" "\n" @@ -728,59 +728,59 @@ msgstr "" "¶ÎÆÏÒÍÁæÀ ÐÒÏ ÎÁÌÁÇÏÄÖÅÎÎÑ ×ÁÛϧ ÓÉÓÔÅÍÉ Ð¦ÓÌÑ ×ÓÔÁÎÏ×ÌÅÎÎÑ ÍÏÖÎÁ ÏÄÅÒÖÁÔÉ " "ÎÁ http://www.redhat.com/support/manuals/." -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "õÓÔÁÎÏ×ËÁ ÐÁËÅÔ¦×" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "îÁÚ×Á :" -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "ïÂÓÑÇ :" -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "ð¦ÄÓÕÍÏË:" -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " ðÁËÅÔ¦×" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " âÁÊÔ" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " þÁÓ" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "÷ÓØÏÇÏ :" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr " úÒÏÂÌÅÎÏ: " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "úÁÌÉÛÉÌÏÓØ: " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "äÏצÄËÁ ÎÅÄÏÓÔÕÐÎÁ" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "äÏצÄËÁ ÎÅÄÏÓÔÕÐÎÁ ÄÌÑ Ã¦¤§ ÕÓÔÁÎÏ×ËÉ." -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "úÂÅÒÅÇÔÉ ÏÂÒÁÚ ÐÁÍ'ÑÔ¦ ÐÒÉ ÚÂϧ" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this " "error to Red Hat (through the bugzilla.redhat.com web site) as soon as " @@ -794,179 +794,179 @@ msgstr "" "ÐÒÏÂÌÅÍÉ.\n" "\n" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "úÂÅÒÅÇÔÉ" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "÷¦ÄÌÁÄËÁ" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr " " -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 msgid "" " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "" " <F1> ÄÏצÄËÁ | <Tab> Í¦Ö ÅÌÅÍÅÎÔÁÍÉ | <ðÒÏÐÕÓË> ×ÉÂ¦Ò | <F12> ÎÁÓÔÕÐÎÉÊ " "ÅËÒÁÎ" -#: ../text.py:1010 +#: ../text.py:1004 msgid "" " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next " "screen" msgstr "" " <Tab>/<Alt-Tab> Í¦Ö ÅÌÅÍÅÎÔÁÍÉ | <ðÒÏÐÕÓË> ×ÉÂ¦Ò | <F12> ÎÁÓÔÕÐÎÉÊ " -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 -#: ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 +#: ../text.py:1080 msgid "Welcome" msgstr "ìÁÓËÁ×Ï ÐÒÏÓÉÍÏ" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "÷ÓÔÁÎÏ×ÌÅÎÎÑ ÎÁÚ×É ËÏÍÐ'ÀÔÅÒÁ" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "÷ÓÔÁÎÏ×ÌÅÎÎÑ ÍÅÒÅÖ¦" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 #: ../textw/firewall_text.py:11 msgid "Firewall Configuration" msgstr "ëÏÎÆ¦ÇÕÒÁÃ¦Ñ ÂÒÁÎÄÍÁÕÅÒÁ" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "õÓÔÁÎÏ×ËÁ ÞÁÓÏ×ϧ ÚÏÎÉ" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "ðÁÒÏÌØ ËÏÒÉÓÔÕ×ÁÞÁ root" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "÷ÓÔÁÎÏ×ÌÅÎÑ ÂÀÄÖÅÔÕ ËÏÒÉÓÔÕ×ÁÞÁ" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "á×ÔÅÎÔÉËÁæÑ" -#: ../text.py:1073 +#: ../text.py:1067 msgid "Configuration Complete" msgstr "ëÏÎÆ¦ÇÕÒÁæÀ ÚÁ×ÅÒÛÅÎÏ" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 #: ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "ëÏÎÆ¦ÇÕÒÁÃ¦Ñ SILO" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 #: ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "ëÏÎÆ¦ÇÕÒÁÃ¦Ñ LILO" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "á×ÔÏÍÁÔÉÞÎÉÊ ÒÏÚÐÏĦÌ" #: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 -#: ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "òÏÚĦÌ" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "òÏÚÐÏĦÌÉÔÉ ×ÒÕÞÎÕ" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "òÏÚÍ¦Ò ÆÁÊÌÏ×ϧ ÓÉÓÔÅÍÉ Root" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "ó×ÏÐ" -#: ../text.py:1117 ../textw/partitioning_text.py:390 +#: ../text.py:1111 ../textw/partitioning_text.py:390 #: ../textw/partitioning_text.py:410 msgid "Boot Partition Warning" msgstr "ðÏÐÅÒÅÄÖÅÎÎÑ ÒÏÚĦÌÕ ÚÁ×ÁÎÔÁÖÅÎÎÑ" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "æÏÒÍÁÔÕ×ÁÎÎÑ ÆÁÊÌÏ×ϧ ÓÉÓÔÅÍÉ" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "ëÏÎÆ¦ÇÕÒÁÃ¦Ñ ÍÉÛÉ" -#: ../text.py:1143 +#: ../text.py:1137 msgid "Language Default" msgstr "ïÓÎÏ×ÎÁ ÍÏ×Á" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "çÒÕÐÉ ÐÁËÅÔ¦×" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "ïËÒÅͦ ÐÁËÅÔÉ" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "úÁÌÅÖÎÏÓÔ¦ ÐÁËÅÔ¦×" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "ëÏÎÆ¦ÇÕÒÁÃ¦Ñ è" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "õÓÔÁÎÏ×ËÁ ÐÏÞÉÎÁ¤ÔØÓÑ" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "÷ÓÔÁÎÏ×ÌÅÎÎÑ ÓÉÓÔÅÍÉ" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "äÉÓË ÚÁ×ÁÎÔÁÖÅÎÎÑ" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "÷ÓÔÁÎÏ×ÌÅÎÎÑ ÚÁ˦ÎÞÅÎÏ" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "ðÅÒÅצÒËÁ ÓÉÓÔÅÍÉ" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "¶ÎÄÉצÄÕÁÌØÎÅ ÄÏÐÏ×ÎÅÎÎÑ" -#: ../text.py:1187 +#: ../text.py:1181 msgid "Upgrade Begins" msgstr "ðÏÞÁÔÏË ÐÏÎÏ×ÌÅÎÎÑ" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "ïÎÏ×ÌÅÎÎÑ ÓÉÓÔÅÍÉ" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "ïÎÏ×ÌÅÎÎÑ ÚÁ×ÅÒÛÅÎÏ" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "óËÁÓÏ×ÁÎÏ" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "ðÏ×ÅÒÎÕÔÉÓÑ ÄÏ ÐÏÐÅÒÅÄÎØÏÇÏ ÅÔÁÐÕ ÎÅÍÏÖÌÉ×Ï. óÐÒÏÂÕÊÔÅ ÚÎÏ×Õ." @@ -1068,7 +1068,7 @@ msgstr "" "÷ÁÍ ÐÏÔÒ¦ÂÎÏ Â¦ÌØÛŠͦÓÃÑ ÎÁ ÃÉÈ ÆÁÊÌÏ×ÉÈ ÓÉÓÔÅÍÁÈ:\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "ôÏÞËÁ ÍÏÎÔÕ×ÁÎÎÑ" @@ -1076,7 +1076,7 @@ msgstr "ôÏÞËÁ ÍÏÎÔÕ×ÁÎÎÑ" msgid "Space Needed" msgstr "îÅÏÂȦÄÎÏ Í¦ÓÃÅ" -#: ../todo.py:1803 +#: ../todo.py:1805 msgid "" "You don't appear to have enough file nodes to install the packages you've " "selected. You need more file nodes on the following filesystems:\n" @@ -1086,19 +1086,19 @@ msgstr "" "÷ÁÍ ÐÏÔÒ¦ÂÎÏ Â¦ÌØÛŠͦÓÃÑ ÎÁ ÃÉÈ ÆÁÊÌÏ×ÉÈ ÓÉÓÔÅÍÁÈ:\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 msgid "Nodes Needed" msgstr "îÅÏÂȦÄÎÏ ×ÕÚÌÉ" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "äÉÓËÏ×ÉÊ ÐÒÏÓÔ¦Ò" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "ðÏÓÔ-ÕÓÔÁÎÏ×ÏÞΦ Ħ§" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "ëÏÎÆ¦ÇÕÒÁÃ¦Ñ ÐÏÓÔ-ÕÓÔÁÎÏ×ÏÞÎÉÈ Ä¦Ê..." @@ -1125,35 +1125,35 @@ msgstr "" "ÄÅÍÏÎÔÏ×ÁÎÏ. úÁ×ÁÎÔÁÖÔÅ ×ÁÛ Linux, ÎÅÈÁÊ ÆÁÊÌÏצ ÓÉÓÔÅÍÉ ÐÒÏÔÅÓÔÕÀÔØÓÑ, ÔÁ " "ËÏÒÅËÔÎÏ ÚÁ×ÅÒÛ¦ÔØ ÒÏÂÏÔÕ Linux ÄÌÑ ÐÏÎÏ×ÌÅÎÎÑ." -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "÷¦ÄÅÏËÁÒÔÁ" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "÷¦ÄÅÏ ÐÁÍ'ÑÔØ" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "X óÅÒ×ÅÒ" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "îÅ ÍÏÖÕ ÒÏÚЦÚÎÁÔÉ ×¦ÄÅÏËÁÒÔÕ" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "íÏΦÔÏÒ" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "Plug and Play ÍÏΦÔÏÒ" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "ä¦ÁÐÁÚÏÎ ÞÁÓÔÏÔ ÇÏÒÉÚÏÎÔÁÌØÎϧ ÒÏÚÇÏÒÔËÉ" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "ä¦ÁÐÁÚÏÎ ÞÁÓÔÏÔ ×ÅÒÔÉËÁÌØÎϧ ÒÏÚÇÏÒÔËÉ" @@ -1403,7 +1403,7 @@ msgid "Total install size: %s" msgstr "úÁÇÁÌØÎÉÊ ÒÏÚͦÒ: %s" #: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 -#: ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "ðÁËÅÔ" @@ -1787,43 +1787,43 @@ msgstr "÷ÓÔÁÎÏ×ÌÅÎÎÑ ÐÁËÅÔ¦×" msgid "%s KBytes" msgstr "%s ëâÁÊÔ" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "òÏÚͦÒ" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "ð¦ÄÓÕÍÏË" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 msgid "Package Progress: " msgstr "ðÅÒÅÂ¦Ç ÐÁËÅÔÕ:" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 msgid "Total Progress: " msgstr "úÁÇÁÌØÎÉÊ ÐÅÒŦÇ:" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "óÔÁÎ" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "ðÁËÅÔÉ" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "þÁÓ" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "÷ÓØÏÇÏ" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "úÒÏÂÌÅÎÏ" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "úÁÌÉÛÉÌÏÓØ" @@ -3742,7 +3742,7 @@ msgstr "úÁ×ÁÎÔÁÖÅÎÎÑ %s ramdisk..." msgid "Error loading ramdisk." msgstr "ðÏÍÉÌËÁ ÚÁ×ÁÎÔÁÖÅÎÎÑ ramdisk." -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "îÅ ÍÏÖÕ ÐÒÏÞÉÔÁÔÉ ËÁÔÁÌÏÇ %s: %s" @@ -3842,19 +3842,19 @@ msgstr "ðÒÉÓÔÒ¦Ê ÑËÏÇÏ ÔÉÐÕ Í¦ÓÔÉÔØ ÒÑÔ¦×ÎÉÊ ÏÂÒÁÚ?" msgid "What type of media contains the packages to be installed?" msgstr "îÏÓ¦Ê ÑËÏÇÏ ÔÉÐÕ Í¦ÓÔÉÔØ ÐÁËÅÔÉ ÄÌÑ ÕÓÔÁÎÏ×ËÉ?" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "îÅ ÍÏÖÕ ÚÎÁÊÔÉ ks.cfg ÎÁ ÄÉÓËÅÔ¦ ÚÁ×ÁÎÔÁÖÅÎÎÑ." -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 msgid "Updates Disk" msgstr "äÉÓË Ú ÏÎÏ×ÌÅÎÎÑÍ" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "÷ÓÔÁ×ÔÅ ×ÁÛ ÄÉÓË ÐÏÎÏ×ÌÅÎÎÑ ÔÁ ÎÁÔÉÓÎ¦ÔØ \"çÁÒÁÚÄ\" ÄÌÑ ÐÒÏÄÏ×ÖÅÎÎÑ." -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 msgid "" "The floppy disk you inserted is not a valid update disk for this release of " "Red Hat Linux." @@ -3862,26 +3862,26 @@ msgstr "" "äÉÓË ÝÏ ÷É ×ÓÔÁ×ÉÌÉ ÎÅ ¤ ËÏÒÅËÔÎÉÍ ÄÉÓËÏÍ ÐÏÎÏ×ÌÅÎÎÑ ÄÌÑ ÄÁÎϧ ×ÅÒÓ¦§ Red " "Hat Linux." -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "îÅ ×ÉËÏÎÁÎÏ ÍÏÎÔÕ×ÁÎÎÑ floppy ÄÉÓËÕ." #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "ïÎÏ×ÌÅÎÎÑ" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "þÉÔÁÀ anaconda updates..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "þÉÔÁÀ anaconda updates..." @@ -4305,6 +4305,701 @@ msgstr "òÏÚÒÏÂËÁ ÑÄÒÁ" msgid "Utilities" msgstr "õÔÉ̦ÔÉ" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "" +"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "" +"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "" +"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "á×ÔÅÎÔÉËÁæÑ" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "South Australia" +msgstr "ð¦×ÄÅÎÎÁ áÍÅÒÉËÁ" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "úÎÁÈÏÄÖÅÎÎÑ" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "úÁ˦ÎÞÉÔÉ" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "úÁ˦ÎÞÉÔÉ" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +msgid "Hungarian" +msgstr "" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "úÁÌÉÛÉÌÏÓØ" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "ðÏÛÕË" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "úÁ˦ÎÞÉÔÉ" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #~ msgid "America/New_York" #~ msgstr "America/New_York" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: anaconda 7.1\n" -"POT-Creation-Date: 2001-03-06 15:32-0500\n" +"POT-Creation-Date: 2001-03-07 11:04-0500\n" "PO-Revision-Date: 2001-02-09 15:55-0500\n" "Last-Translator: Anaconda Team <msw@redhat.com>\n" "Language-Team: Chinese-S <msw@redhat.com>\n" @@ -18,7 +18,7 @@ msgstr "" msgid "Everything" msgstr "ÕýÔÚËÑË÷" -#: ../exception.py:13 ../text.py:955 +#: ../exception.py:13 ../text.py:949 msgid "Exception Occurred" msgstr "" @@ -48,7 +48,7 @@ msgstr "" msgid "Warning" msgstr "ÕýÔÚËÑË÷" -#: ../fstab.py:316 ../fstab.py:510 ../fstab.py:610 ../fstab.py:814 ../harddrive.py:173 ../image.py:64 ../image.py:141 ../libfdisk/newtfsedit.c:1743 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1278 ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 ../todo.py:1493 ../upgrade.py:22 ../upgrade.py:50 +#: ../fstab.py:316 ../fstab.py:510 ../fstab.py:610 ../fstab.py:814 ../harddrive.py:173 ../image.py:64 ../image.py:141 ../libfdisk/newtfsedit.c:1743 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/lang.c:99 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1278 ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238 ../text.py:374 ../textw/bootdisk_text.py:69 ../todo.py:1157 ../todo.py:1170 ../todo.py:1493 ../upgrade.py:22 ../upgrade.py:50 msgid "Error" msgstr "´íÎó" @@ -110,69 +110,69 @@ msgstr "" msgid "An exceptional condition has occured. This is most likely a bug. Please copy the full text of this exception and file a bug report at http://bugzilla.redhat.com/bugzilla" msgstr "" -#: ../gui.py:325 ../text.py:973 +#: ../gui.py:325 ../text.py:967 msgid "Please insert a floppy now. All contents of the disk will be erased, so please choose your diskette carefully." msgstr "" -#: ../gui.py:421 ../gui.py:789 +#: ../gui.py:421 ../gui.py:788 msgid "Next" msgstr "ÏÂÒ»²½" -#: ../gui.py:422 ../gui.py:788 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1516 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 ../text.py:412 ../text.py:413 ../text.py:428 ../text.py:431 ../text.py:453 ../text.py:456 ../text.py:513 ../text.py:516 ../text.py:542 ../text.py:546 ../text.py:555 ../text.py:629 ../text.py:631 ../text.py:641 ../text.py:643 ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 ../textw/mouse_text.py:28 ../textw/mouse_text.py:55 ../textw/mouse_text.py:81 ../textw/network_text.py:102 ../textw/network_text.py:161 ../textw/network_text.py:164 ../textw/packages_text.py:55 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/packages_text.py:353 ../textw/partitioning_text.py:24 ../textw/partitioning_text.py:65 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/silo_text.py:26 ../textw/silo_text.py:99 ../textw/silo_text.py:206 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:165 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 +#: ../gui.py:422 ../gui.py:787 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../loader/cdrom.c:34 ../loader/devices.c:93 ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:870 ../loader/loader.c:907 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1516 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/urls.c:155 ../loader/urls.c:375 ../rescue.py:123 ../text.py:58 ../text.py:69 ../text.py:129 ../text.py:193 ../text.py:200 ../text.py:222 ../text.py:225 ../text.py:305 ../text.py:377 ../text.py:395 ../text.py:398 ../text.py:407 ../text.py:408 ../text.py:423 ../text.py:426 ../text.py:448 ../text.py:451 ../text.py:508 ../text.py:511 ../text.py:537 ../text.py:541 ../text.py:550 ../text.py:623 ../text.py:625 ../text.py:635 ../text.py:637 ../textw/bootdisk_text.py:30 ../textw/firewall_text.py:9 ../textw/lilo_text.py:34 ../textw/lilo_text.py:93 ../textw/lilo_text.py:101 ../textw/lilo_text.py:209 ../textw/mouse_text.py:27 ../textw/mouse_text.py:28 ../textw/mouse_text.py:55 ../textw/mouse_text.py:81 ../textw/network_text.py:102 ../textw/network_text.py:161 ../textw/network_text.py:164 ../textw/packages_text.py:55 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/packages_text.py:353 ../textw/partitioning_text.py:24 ../textw/partitioning_text.py:65 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/silo_text.py:26 ../textw/silo_text.py:99 ../textw/silo_text.py:206 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:165 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 msgid "Back" msgstr "ÉÏÒ»²½" -#: ../gui.py:423 ../gui.py:542 ../gui.py:791 -msgid "Release Notes" -msgstr "" - -#: ../gui.py:424 ../gui.py:794 +#: ../gui.py:423 ../gui.py:793 msgid "Show Help" msgstr "ÏÔʾ°ïÖú" -#: ../gui.py:425 ../gui.py:793 +#: ../gui.py:424 ../gui.py:792 msgid "Hide Help" msgstr "Òþ²Ø°ïÖú" -#: ../gui.py:426 ../gui.py:792 +#: ../gui.py:425 ../gui.py:791 msgid "Finish" msgstr "Íê³É" -#: ../gui.py:429 ../gui.py:824 +#: ../gui.py:428 ../gui.py:823 msgid "Online Help" msgstr "Áª»ú°ïÖú" -#: ../gui.py:430 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 ../text.py:63 ../text.py:1045 ../text.py:1078 +#: ../gui.py:429 ../iw/language_gui.py:10 ../iw/language_support_gui.py:25 ../text.py:63 ../text.py:1039 ../text.py:1072 msgid "Language Selection" msgstr "Ñ¡ÔñÓïÑÔ" -#: ../gui.py:537 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1405 +#: ../gui.py:536 ../iw/firewall_gui.py:123 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1405 msgid "Close" msgstr "¹Ø±Õ" -#: ../gui.py:573 +#: ../gui.py:541 ../gui.py:790 +msgid "Release Notes" +msgstr "" + +#: ../gui.py:572 msgid "Unable to load file!" msgstr "" -#: ../gui.py:712 +#: ../gui.py:711 msgid "Red Hat Linux Installer" msgstr "Red Hat Linux °²×°³ÌÐò" -#: ../gui.py:716 +#: ../gui.py:715 msgid "Red Hat Linux Install Shell" msgstr "Red Hat Linux °²×° Shell ³ÌÐò" -#: ../gui.py:727 +#: ../gui.py:726 #, c-format msgid "Red Hat Linux Installer on %s" msgstr "ÓÃÓÚ %s µÄ Red Hat Linux °²×°³ÌÐò" -#: ../gui.py:728 +#: ../gui.py:727 #, c-format msgid "Red Hat Linux Install Shell on %s" msgstr "ÓÃÓÚ %s µÄ Red Hat Linux °²×°Shell ³ÌÐò" -#: ../gui.py:873 +#: ../gui.py:872 #, fuzzy msgid "Install Window" msgstr "°²×°" @@ -217,7 +217,7 @@ msgstr "" msgid "The CDROM could not be mounted." msgstr "" -#: ../loader/cdrom.c:34 ../loader/devices.c:92 ../loader/devices.c:237 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:335 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/devices.c:530 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:99 ../loader/lang.c:294 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:907 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 ../loader/loader.c:2156 ../loader/loader.c:2186 ../loader/loader.c:2249 ../loader/loader.c:2264 ../loader/loader.c:2476 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:453 ../text.py:471 ../text.py:513 ../text.py:542 ../text.py:629 ../text.py:641 ../text.py:670 ../text.py:691 ../text.py:861 ../text.py:915 ../text.py:941 ../text.py:967 ../text.py:975 ../text.py:990 ../text.py:1234 ../textw/bootdisk_text.py:52 ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 ../textw/lilo_text.py:93 ../textw/lilo_text.py:152 ../textw/lilo_text.py:158 ../textw/mouse_text.py:55 ../textw/network_text.py:102 ../textw/network_text.py:123 ../textw/network_text.py:161 ../textw/packages_text.py:55 ../textw/packages_text.py:89 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/partitioning_text.py:352 ../textw/partitioning_text.py:360 ../textw/partitioning_text.py:367 ../textw/silo_text.py:25 ../textw/silo_text.py:99 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:44 ../textw/userauth_text.py:49 ../textw/userauth_text.py:84 ../textw/userauth_text.py:99 ../textw/userauth_text.py:105 ../textw/userauth_text.py:111 ../textw/userauth_text.py:119 ../textw/userauth_text.py:128 ../textw/userauth_text.py:135 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 ../xserver.py:34 +#: ../loader/cdrom.c:34 ../loader/devices.c:92 ../loader/devices.c:237 ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:335 ../loader/devices.c:433 ../loader/devices.c:478 ../loader/devices.c:498 ../loader/devices.c:530 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:99 ../loader/lang.c:294 ../loader/lang.c:585 ../loader/loader.c:291 ../loader/loader.c:520 ../loader/loader.c:530 ../loader/loader.c:584 ../loader/loader.c:907 ../loader/loader.c:966 ../loader/loader.c:1021 ../loader/loader.c:1113 ../loader/loader.c:1191 ../loader/loader.c:1196 ../loader/loader.c:1238 ../loader/loader.c:1247 ../loader/loader.c:1278 ../loader/loader.c:1516 ../loader/loader.c:2162 ../loader/loader.c:2192 ../loader/loader.c:2255 ../loader/loader.c:2270 ../loader/loader.c:2482 ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:357 ../loader/net.c:678 ../loader/net.c:711 ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:155 ../loader/urls.c:233 ../loader/urls.c:238 ../loader/urls.c:375 ../rescue.py:19 ../rescue.py:91 ../rescue.py:109 ../rescue.py:117 ../text.py:129 ../text.py:168 ../text.py:222 ../text.py:305 ../text.py:395 ../text.py:448 ../text.py:466 ../text.py:508 ../text.py:537 ../text.py:623 ../text.py:635 ../text.py:664 ../text.py:685 ../text.py:855 ../text.py:909 ../text.py:935 ../text.py:961 ../text.py:969 ../text.py:984 ../text.py:1228 ../textw/bootdisk_text.py:52 ../textw/bootdisk_text.py:54 ../textw/firewall_text.py:9 ../textw/firewall_text.py:126 ../textw/firewall_text.py:128 ../textw/firewall_text.py:191 ../textw/lilo_text.py:33 ../textw/lilo_text.py:93 ../textw/lilo_text.py:152 ../textw/lilo_text.py:158 ../textw/mouse_text.py:55 ../textw/network_text.py:102 ../textw/network_text.py:123 ../textw/network_text.py:161 ../textw/packages_text.py:55 ../textw/packages_text.py:89 ../textw/packages_text.py:236 ../textw/packages_text.py:347 ../textw/partitioning_text.py:258 ../textw/partitioning_text.py:341 ../textw/partitioning_text.py:352 ../textw/partitioning_text.py:360 ../textw/partitioning_text.py:367 ../textw/silo_text.py:25 ../textw/silo_text.py:99 ../textw/timezone_text.py:69 ../textw/userauth_text.py:30 ../textw/userauth_text.py:44 ../textw/userauth_text.py:49 ../textw/userauth_text.py:84 ../textw/userauth_text.py:99 ../textw/userauth_text.py:105 ../textw/userauth_text.py:111 ../textw/userauth_text.py:119 ../textw/userauth_text.py:128 ../textw/userauth_text.py:135 ../textw/userauth_text.py:199 ../textw/userauth_text.py:297 ../xserver.py:34 msgid "OK" msgstr "È·¶¨" @@ -275,7 +275,7 @@ msgid "Your system is mounted under the /mnt/sysimage directory." msgstr "" #. code to create dialog in gtk+ -#: ../iw/package_gui.py:470 ../libfdisk/fsedit.c:921 ../libfdisk/fsedit.c:928 ../libfdisk/fsedit.c:935 ../libfdisk/fsedit.c:944 ../libfdisk/fsedit.c:971 ../libfdisk/fsedit.c:984 ../libfdisk/fsedit.c:994 ../libfdisk/fsedit.c:1023 ../libfdisk/fsedit.c:1033 ../libfdisk/fsedit.c:1050 ../libfdisk/fsedit.c:1467 ../libfdisk/gnomefsedit.c:756 ../libfdisk/gnomefsedit.c:788 ../libfdisk/gnomefsedit.c:879 ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:1262 ../libfdisk/gnomefsedit.c:1299 ../libfdisk/gnomefsedit.c:1333 ../libfdisk/gnomefsedit.c:1352 ../libfdisk/gnomefsedit.c:1526 ../libfdisk/gnomefsedit.c:1601 ../libfdisk/gnomefsedit.c:1651 ../libfdisk/gnomefsedit.c:1719 ../libfdisk/gnomefsedit.c:1737 ../libfdisk/gnomefsedit.c:2015 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2270 ../libfdisk/gnomefsedit.c:2278 ../libfdisk/gnomefsedit.c:2322 ../libfdisk/gnomefsedit.c:2332 ../libfdisk/gnomefsedit.c:2339 ../libfdisk/gnomefsedit.c:2354 ../libfdisk/gnomefsedit.c:2364 ../libfdisk/gnomefsedit.c:2374 ../libfdisk/gnomefsedit.c:2413 ../libfdisk/gnomefsedit.c:2544 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:170 ../libfdisk/newtfsedit.c:347 ../libfdisk/newtfsedit.c:577 ../libfdisk/newtfsedit.c:639 ../libfdisk/newtfsedit.c:672 ../libfdisk/newtfsedit.c:698 ../libfdisk/newtfsedit.c:717 ../libfdisk/newtfsedit.c:848 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../libfdisk/newtfsedit.c:1610 ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 ../text.py:193 ../text.py:348 ../text.py:412 ../text.py:555 ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 ../textw/silo_text.py:149 ../textw/silo_text.py:205 +#: ../iw/package_gui.py:470 ../libfdisk/fsedit.c:921 ../libfdisk/fsedit.c:928 ../libfdisk/fsedit.c:935 ../libfdisk/fsedit.c:944 ../libfdisk/fsedit.c:971 ../libfdisk/fsedit.c:984 ../libfdisk/fsedit.c:994 ../libfdisk/fsedit.c:1023 ../libfdisk/fsedit.c:1033 ../libfdisk/fsedit.c:1050 ../libfdisk/fsedit.c:1467 ../libfdisk/gnomefsedit.c:756 ../libfdisk/gnomefsedit.c:788 ../libfdisk/gnomefsedit.c:879 ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:1262 ../libfdisk/gnomefsedit.c:1299 ../libfdisk/gnomefsedit.c:1333 ../libfdisk/gnomefsedit.c:1352 ../libfdisk/gnomefsedit.c:1526 ../libfdisk/gnomefsedit.c:1601 ../libfdisk/gnomefsedit.c:1651 ../libfdisk/gnomefsedit.c:1719 ../libfdisk/gnomefsedit.c:1737 ../libfdisk/gnomefsedit.c:2015 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2270 ../libfdisk/gnomefsedit.c:2278 ../libfdisk/gnomefsedit.c:2322 ../libfdisk/gnomefsedit.c:2332 ../libfdisk/gnomefsedit.c:2339 ../libfdisk/gnomefsedit.c:2354 ../libfdisk/gnomefsedit.c:2364 ../libfdisk/gnomefsedit.c:2374 ../libfdisk/gnomefsedit.c:2413 ../libfdisk/gnomefsedit.c:2544 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:170 ../libfdisk/newtfsedit.c:347 ../libfdisk/newtfsedit.c:577 ../libfdisk/newtfsedit.c:639 ../libfdisk/newtfsedit.c:672 ../libfdisk/newtfsedit.c:698 ../libfdisk/newtfsedit.c:717 ../libfdisk/newtfsedit.c:848 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1485 ../libfdisk/newtfsedit.c:1610 ../libfdisk/newtfsedit.c:1631 ../libfdisk/newtfsedit.c:1659 ../libfdisk/newtfsedit.c:1743 ../loader/urls.c:78 ../loader/urls.c:87 ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:58 ../text.py:60 ../text.py:193 ../text.py:348 ../text.py:407 ../text.py:550 ../textw/lilo_text.py:123 ../textw/lilo_text.py:208 ../textw/mouse_text.py:27 ../textw/partitioning_text.py:155 ../textw/partitioning_text.py:420 ../textw/silo_text.py:136 ../textw/silo_text.py:149 ../textw/silo_text.py:205 msgid "Ok" msgstr "È·¶¨" @@ -298,7 +298,7 @@ msgstr "ÖØÖÃ(_R)" msgid "Choose the languages to be installed:" msgstr "ÄÄÒ»Àà½éÖʰüº¬Òª°²×°µÄÈí¼þ°ü£¿" -#: ../text.py:135 ../text.py:1141 +#: ../text.py:135 ../text.py:1135 #, fuzzy msgid "Language Support" msgstr "Ñ¡ÔñÓïÑÔ" @@ -323,7 +323,7 @@ msgstr "Ñ¡ÔñÓïÑÔ" msgid "Choose the default language: " msgstr "Ñ¡ÔñÓïÑÔ" -#: ../text.py:220 ../text.py:1047 ../text.py:1084 +#: ../text.py:220 ../text.py:1041 ../text.py:1078 msgid "Keyboard Selection" msgstr "Ñ¡Ôñ¼üÅÌ" @@ -335,7 +335,7 @@ msgstr "Óë´Ë¼ÆËã»úÁ¬½ÓµÄ¼üÅÌÊôÓÚºÎÖÖÀàÐÍ£¿" msgid "Upgrade Existing Installation" msgstr "Éý¼¶ÏÖÓеݲװ" -#: ../text.py:303 ../text.py:1087 +#: ../text.py:303 ../text.py:1081 msgid "Installation Type" msgstr "°²×°ÀàÐÍ" @@ -365,36 +365,36 @@ msgstr "ûÓÐÈκΠLinux ·ÖÇø£¬ÎÞ·¨Éý¼¶±¾ÏµÍ³£¡" msgid "System to Upgrade" msgstr "ÒªÉý¼¶µÄϵͳ" -#: ../text.py:410 +#: ../text.py:405 #, fuzzy msgid "Upgrade Partition" msgstr "±à¼·ÖÇø" -#: ../text.py:411 +#: ../text.py:406 msgid "Going to upgrade partition /dev/" msgstr "" -#: ../text.py:420 +#: ../text.py:415 msgid "Customize Packages to Upgrade" msgstr "¶¨ÖÆÒªÉý¼¶µÄÈí¼þ°ü" -#: ../text.py:421 +#: ../text.py:416 msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?" msgstr "ϵͳÒÑÑ¡¶¨ÓÃÓÚ°²×°µÄÒѰ²×°Èí¼þ°ü£¬ÒÔ¼°Âú×ãÆäÏà¹ØÐÔÒªÇóµÄÆäËüÈκÎÈí¼þ°ü¡£ÊÇ·ñÒª¶¨ÖÆÉý¼¶µÄÈí¼þ°ü¼¯£¿" -#: ../iw/rootpartition_gui.py:503 ../iw/welcome_gui.py:89 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 ../text.py:428 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:402 +#: ../iw/rootpartition_gui.py:503 ../iw/welcome_gui.py:89 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:230 ../loader/loader.c:870 ../loader/net.c:845 ../text.py:423 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:219 ../textw/partitioning_text.py:402 msgid "Yes" msgstr "ÊÇ" -#: ../iw/rootpartition_gui.py:505 ../iw/welcome_gui.py:92 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:231 ../loader/net.c:845 ../text.py:428 ../text.py:434 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 +#: ../iw/rootpartition_gui.py:505 ../iw/welcome_gui.py:92 ../libfdisk/fsedit.c:952 ../libfdisk/gnomefsedit.c:829 ../libfdisk/gnomefsedit.c:1237 ../libfdisk/gnomefsedit.c:1376 ../libfdisk/gnomefsedit.c:1398 ../libfdisk/gnomefsedit.c:2467 ../libfdisk/gnomefsedit.c:2754 ../libfdisk/gnomefsedit.c:2809 ../libfdisk/newtfsedit.c:615 ../libfdisk/newtfsedit.c:742 ../libfdisk/newtfsedit.c:874 ../libfdisk/newtfsedit.c:1680 ../libfdisk/newtfsedit.c:1698 ../libfdisk/newtfsedit.c:1785 ../loader/devices.c:231 ../loader/net.c:845 ../text.py:423 ../text.py:429 ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:41 ../textw/partitioning_text.py:402 msgid "No" msgstr "·ñ" -#: ../text.py:444 ../text.py:463 +#: ../text.py:439 ../text.py:458 msgid "Red Hat Linux" msgstr "Red Hat Linux" -#: ../text.py:445 +#: ../text.py:440 msgid "" "Welcome to Red Hat Linux!\n" "\n" @@ -409,7 +409,7 @@ msgstr "" "\n" "Èç¹ûÄú¹ºÂòÁË Red Hat Linux Õýʽ°æ£¬ÇëÎñ±ØÍ¨¹ýÎÒÃÇµÄ Web Õ¾µã( http://www.redhat.com/) µÇ¼Ç´Ë²úÆ·¡£" -#: ../text.py:464 +#: ../text.py:459 msgid "" "Welcome to the Red Hat Linux!\n" "\n" @@ -418,61 +418,61 @@ msgid "" "To exit without changing your setup select the Cancel button below." msgstr "" -#: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 ../loader/devices.c:530 ../loader/loader.c:2249 ../loader/pcmcia.c:104 ../text.py:471 ../text.py:474 ../text.py:861 ../text.py:862 ../text.py:975 ../text.py:977 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 ../textw/silo_text.py:154 ../textw/userauth_text.py:63 +#: ../libfdisk/gnomefsedit.c:914 ../libfdisk/gnomefsedit.c:2024 ../libfdisk/gnomefsedit.c:2586 ../libfdisk/newtfsedit.c:578 ../libfdisk/newtfsedit.c:1698 ../loader/devices.c:238 ../loader/devices.c:530 ../loader/loader.c:2255 ../loader/pcmcia.c:104 ../text.py:466 ../text.py:469 ../text.py:855 ../text.py:856 ../text.py:969 ../text.py:971 ../textw/lilo_text.py:124 ../textw/silo_text.py:136 ../textw/silo_text.py:154 ../textw/userauth_text.py:63 msgid "Cancel" msgstr "È¡Ïû" -#: ../text.py:511 +#: ../text.py:506 msgid "X probe results" msgstr "X ̽²â½á¹û" -#: ../text.py:531 ../text.py:551 +#: ../text.py:526 ../text.py:546 msgid "Unlisted Card" msgstr "δÁгöµÄ²å¿¨" -#: ../text.py:539 +#: ../text.py:534 msgid "Video Card Selection" msgstr "Ñ¡ÔñÊÓÆµ¿¨" -#: ../text.py:540 +#: ../text.py:535 msgid "Which video card do you have?" msgstr "ÄúʹÓõÄÊÓÆµ¿¨ÊôÓÚºÎÖÖÀàÐÍ£¿" -#: ../text.py:553 +#: ../text.py:548 msgid "X Server Selection" msgstr "Ñ¡Ôñ X ·þÎñÆ÷" -#: ../text.py:553 +#: ../text.py:548 msgid "Choose a server" msgstr "Ñ¡Ôñһ̨·þÎñÆ÷" -#: ../text.py:625 +#: ../text.py:619 msgid "Installation to begin" msgstr "¿ªÊ¼°²×°" -#: ../iw/confirm_gui.py:45 ../text.py:626 +#: ../iw/confirm_gui.py:45 ../text.py:620 msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference." msgstr "ÖØÐÂÒýµ¼ºó£¬ÏµÍ³½«ÔÚ /tmp/install.log Öж԰²×°½øÐÐÍêÕûµÄ¼Ç¼¡£ Äú¿ÉÄÜÐèÒª±£Áô´ËÎļþ¹©ÒÔºó²Î¿¼¡£" -#: ../text.py:637 +#: ../text.py:631 #, fuzzy msgid "Upgrade to begin" msgstr "Éý¼¶ÏµÍ³" -#: ../iw/confirm_gui.py:41 ../text.py:638 +#: ../iw/confirm_gui.py:41 ../text.py:632 #, fuzzy msgid "A complete log of your upgrade will be in /tmp/upgrade.log after rebooting your system. You may want to keep this file for later reference." msgstr "ÖØÐÂÒýµ¼ºó£¬ÏµÍ³½«ÔÚ /tmp/install.log Öж԰²×°½øÐÐÍêÕûµÄ¼Ç¼¡£ Äú¿ÉÄÜÐèÒª±£Áô´ËÎļþ¹©ÒÔºó²Î¿¼¡£" -#: ../text.py:657 +#: ../text.py:651 msgid " <Return> to reboot " msgstr "" -#: ../text.py:659 ../text.py:682 +#: ../text.py:653 ../text.py:676 msgid "Complete" msgstr "Íê³É" -#: ../iw/congrats_gui.py:34 ../text.py:660 +#: ../iw/congrats_gui.py:34 ../text.py:654 #, fuzzy msgid "" "Congratulations, installation is complete.\n" @@ -486,11 +486,11 @@ msgstr "" "È¡³öÒýµ¼½éÖÊ£¬È»ºó°´»Ø³µ¼üÒÔÖØÐÂÒýµ¼ÏµÍ³¡£ ÓйØÎª´Ë Red Hat Linux °æ±¾ÌṩµÄУÕýÐÅÏ¢£¬Çë²éÔÄ http://www.redhat.com ÉϵĿ±Îó±í¡£\n" "¡¶Red Hat Linux Õýʽ°æÓû§Ö¸ÄÏ¡·Öеġ°°²×°Ö®ºó¡±Ò»ÕÂÌṩÁËÓйØÅäÖÃϵͳµÄÐÅÏ¢¡£" -#: ../text.py:678 +#: ../text.py:672 msgid " <Return> to exit " msgstr "" -#: ../text.py:683 +#: ../text.py:677 #, fuzzy msgid "" "Congratulations, configuration is complete.\n" @@ -504,231 +504,231 @@ msgstr "" "È¡³öÒýµ¼½éÖÊ£¬È»ºó°´»Ø³µ¼üÒÔÖØÐÂÒýµ¼ÏµÍ³¡£ ÓйØÎª´Ë Red Hat Linux °æ±¾ÌṩµÄУÕýÐÅÏ¢£¬Çë²éÔÄ http://www.redhat.com ÉϵĿ±Îó±í¡£\n" "¡¶Red Hat Linux Õýʽ°æÓû§Ö¸ÄÏ¡·Öеġ°°²×°Ö®ºó¡±Ò»ÕÂÌṩÁËÓйØÅäÖÃϵͳµÄÐÅÏ¢¡£" -#: ../text.py:750 +#: ../text.py:744 msgid "Package Installation" msgstr "°²×°Èí¼þ°ü" -#: ../text.py:752 +#: ../text.py:746 msgid "Name : " msgstr "Ãû³Æ£º " -#: ../text.py:753 +#: ../text.py:747 msgid "Size : " msgstr "´óС£º " -#: ../text.py:754 +#: ../text.py:748 msgid "Summary: " msgstr "ÕªÒª£º " -#: ../text.py:780 +#: ../text.py:774 msgid " Packages" msgstr " Èí¼þ°ü" -#: ../text.py:781 +#: ../text.py:775 msgid " Bytes" msgstr " ×Ö½Ú" -#: ../text.py:782 +#: ../text.py:776 msgid " Time" msgstr " ʱ¼ä" -#: ../text.py:784 +#: ../text.py:778 msgid "Total :" msgstr "ºÏ¼Æ£º" -#: ../text.py:791 +#: ../text.py:785 msgid "Completed: " msgstr "ÒÑÍê³É£º " -#: ../text.py:801 +#: ../text.py:795 msgid "Remaining: " msgstr "Ê£Óࣺ " -#: ../text.py:913 +#: ../text.py:907 msgid "Help not available" msgstr "" -#: ../text.py:914 +#: ../text.py:908 msgid "No help is available for this install." msgstr "" -#: ../text.py:972 +#: ../text.py:966 msgid "Save Crash Dump" msgstr "" -#: ../text.py:983 +#: ../text.py:977 msgid "" "An internal error occurred in the installation program. Please report this error to Red Hat (through the bugzilla.redhat.com web site) as soon as possible. The information on this failure may be saved to a floppy disk, and will help Red Hat in fixing the problem.\n" "\n" msgstr "" -#: ../text.py:990 ../text.py:993 +#: ../text.py:984 ../text.py:987 msgid "Save" msgstr "" -#: ../text.py:990 ../text.py:991 +#: ../text.py:984 ../text.py:985 msgid "Debug" msgstr "µ÷ÊÔ" -#: ../text.py:1001 +#: ../text.py:995 msgid " " msgstr "" -#: ../text.py:1005 +#: ../text.py:999 msgid "Red Hat Linux (C) 2001 Red Hat, Inc." msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." -#: ../text.py:1008 +#: ../text.py:1002 #, fuzzy msgid " <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen" msgstr "<Tab>/<Alt-Tab> Ñ¡Ïî¼äÇл» | <Space> Ñ¡Ôñ | <F12> ÏÂÒ»ÆÁÄ» " -#: ../text.py:1010 +#: ../text.py:1004 msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen" msgstr "<Tab>/<Alt-Tab> Ñ¡Ïî¼äÇл» | <Space> Ñ¡Ôñ | <F12> ÏÂÒ»ÆÁÄ»" -#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1043 ../text.py:1086 +#: ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:39 ../text.py:1037 ../text.py:1080 msgid "Welcome" msgstr "" -#: ../text.py:1049 ../text.py:1132 +#: ../text.py:1043 ../text.py:1126 msgid "Hostname Setup" msgstr "Ö÷»úÃûÉèÖÃ" -#: ../text.py:1051 ../text.py:1129 +#: ../text.py:1045 ../text.py:1123 msgid "Network Setup" msgstr "ÍøÂçÉèÖÃ" -#: ../iw/firewall_gui.py:12 ../text.py:1053 ../text.py:1134 ../textw/firewall_text.py:11 +#: ../iw/firewall_gui.py:12 ../text.py:1047 ../text.py:1128 ../textw/firewall_text.py:11 #, fuzzy msgid "Firewall Configuration" msgstr "Lilo ÅäÖÃ" -#: ../text.py:1061 ../text.py:1146 +#: ../text.py:1055 ../text.py:1140 msgid "Time Zone Setup" msgstr "Ê±ÇøÉèÖÃ" -#: ../text.py:1063 ../text.py:1148 ../textw/userauth_text.py:9 +#: ../text.py:1057 ../text.py:1142 ../textw/userauth_text.py:9 msgid "Root Password" msgstr "¸ù¿ÚÁî" -#: ../text.py:1065 ../text.py:1150 ../textw/userauth_text.py:172 +#: ../text.py:1059 ../text.py:1144 ../textw/userauth_text.py:172 msgid "User Account Setup" msgstr "ÉèÖÃÓû§ÕʺÅ" -#: ../text.py:1067 ../text.py:1152 +#: ../text.py:1061 ../text.py:1146 msgid "Authentication" msgstr "ÑéÖ¤" -#: ../text.py:1073 +#: ../text.py:1067 #, fuzzy msgid "Configuration Complete" msgstr "X ÅäÖÃ" -#: ../text.py:1095 ../textw/silo_text.py:28 ../textw/silo_text.py:101 ../textw/silo_text.py:213 +#: ../text.py:1089 ../textw/silo_text.py:28 ../textw/silo_text.py:101 ../textw/silo_text.py:213 msgid "SILO Configuration" msgstr "SILO ÅäÖÃ" -#: ../text.py:1101 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 ../textw/lilo_text.py:217 +#: ../text.py:1095 ../textw/lilo_text.py:36 ../textw/lilo_text.py:90 ../textw/lilo_text.py:217 msgid "LILO Configuration" msgstr "LILO ÅäÖÃ" -#: ../text.py:1105 +#: ../text.py:1099 msgid "Automatic Partition" msgstr "×Ô¶¯·ÖÇø" -#: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 ../iw/silo_gui.py:280 ../text.py:1107 ../text.py:1111 +#: ../iw/lilo_gui.py:230 ../iw/lilo_gui.py:393 ../iw/silo_gui.py:127 ../iw/silo_gui.py:280 ../text.py:1101 ../text.py:1105 msgid "Partition" msgstr "·ÖÇø" -#: ../text.py:1109 +#: ../text.py:1103 msgid "Manually Partition" msgstr "ÊÖ¶¯·ÖÇø" -#: ../text.py:1113 ../textw/partitioning_text.py:333 +#: ../text.py:1107 ../textw/partitioning_text.py:333 msgid "Root Filesystem Size" msgstr "" -#: ../text.py:1115 +#: ../text.py:1109 msgid "Swap" msgstr "½»»»" -#: ../text.py:1117 ../textw/partitioning_text.py:390 ../textw/partitioning_text.py:410 +#: ../text.py:1111 ../textw/partitioning_text.py:390 ../textw/partitioning_text.py:410 #, fuzzy msgid "Boot Partition Warning" msgstr "×Ô¶¯·ÖÇø" -#: ../text.py:1119 +#: ../text.py:1113 msgid "Filesystem Formatting" msgstr "ÕýÔÚ¸ñʽ»¯Îļþϵͳ" -#: ../iw/mouse_gui.py:56 ../text.py:1136 ../text.py:1138 +#: ../iw/mouse_gui.py:56 ../text.py:1130 ../text.py:1132 msgid "Mouse Configuration" msgstr "Êó±êÅäÖÃ" -#: ../text.py:1143 +#: ../text.py:1137 #, fuzzy msgid "Language Default" msgstr "Ñ¡ÔñÓïÑÔ" -#: ../text.py:1154 +#: ../text.py:1148 msgid "Package Groups" msgstr "Èí¼þ°ü·Ö×é" -#: ../text.py:1156 ../text.py:1184 +#: ../text.py:1150 ../text.py:1178 msgid "Individual Packages" msgstr "µ¥¶ÀÈí¼þ°ü" -#: ../text.py:1158 ../text.py:1185 ../textw/packages_text.py:304 +#: ../text.py:1152 ../text.py:1179 ../textw/packages_text.py:304 msgid "Package Dependencies" msgstr "Èí¼þ°üÏà¹ØÐÔ" -#: ../iw/xconfig_gui.py:846 ../text.py:1160 ../text.py:1168 +#: ../iw/xconfig_gui.py:846 ../text.py:1154 ../text.py:1162 msgid "X Configuration" msgstr "X ÅäÖÃ" -#: ../text.py:1162 +#: ../text.py:1156 msgid "Installation Begins" msgstr "¿ªÊ¼°²×°" -#: ../text.py:1164 +#: ../text.py:1158 msgid "Install System" msgstr "°²×°ÏµÍ³" -#: ../text.py:1165 ../text.py:1167 ../text.py:1190 ../text.py:1192 +#: ../text.py:1159 ../text.py:1161 ../text.py:1184 ../text.py:1186 msgid "Boot Disk" msgstr "Òýµ¼ÅÌ" -#: ../text.py:1170 +#: ../text.py:1164 msgid "Installation Complete" msgstr "°²×°Íê³É" -#: ../text.py:1175 +#: ../text.py:1169 msgid "Examine System" msgstr "¼ì²éϵͳ" -#: ../text.py:1182 +#: ../text.py:1176 msgid "Customize Upgrade" msgstr "¶¨ÖÆÉý¼¶" -#: ../text.py:1187 +#: ../text.py:1181 #, fuzzy msgid "Upgrade Begins" msgstr "Éý¼¶¼ì²é" -#: ../text.py:1189 +#: ../text.py:1183 msgid "Upgrade System" msgstr "Éý¼¶ÏµÍ³" -#: ../text.py:1193 +#: ../text.py:1187 msgid "Upgrade Complete" msgstr "Éý¼¶Íê³É" -#: ../text.py:1231 +#: ../text.py:1225 msgid "Cancelled" msgstr "ÒÑÈ¡Ïû" -#: ../text.py:1232 +#: ../text.py:1226 msgid "I can't go to the previous step from here. You will have to try again." msgstr "ÎÞ·¨´Ó´Ë´¦·µ»ØÉÏÒ»²½£¬ Äú±ØÐëÖØÊÔ¡£" @@ -814,7 +814,7 @@ msgstr "" "´ÅÅ̿ռ䲻×㣬ÎÞ·¨°²×°ÒÑÑ¡¶¨µÄÈí¼þ°ü¡£ ÄúÐèÒª¸ü¶àµÄ´ÅÅ̿ռä²ÅÄܰ²×°ÒÔÏÂÎļþϵͳ£º\n" "\n" -#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1806 +#: ../libfdisk/gnomefsedit.c:3132 ../todo.py:1790 ../todo.py:1808 msgid "Mount Point" msgstr "°²×°µã" @@ -822,7 +822,7 @@ msgstr "°²×°µã" msgid "Space Needed" msgstr "ËùÐè¿Õ¼ä" -#: ../todo.py:1803 +#: ../todo.py:1805 #, fuzzy msgid "" "You don't appear to have enough file nodes to install the packages you've selected. You need more file nodes on the following filesystems:\n" @@ -831,20 +831,20 @@ msgstr "" "´ÅÅ̿ռ䲻×㣬ÎÞ·¨°²×°ÒÑÑ¡¶¨µÄÈí¼þ°ü¡£ ÄúÐèÒª¸ü¶àµÄ´ÅÅ̿ռä²ÅÄܰ²×°ÒÔÏÂÎļþϵͳ£º\n" "\n" -#: ../todo.py:1806 +#: ../todo.py:1808 #, fuzzy msgid "Nodes Needed" msgstr "ËùÐè¿Õ¼ä" -#: ../todo.py:1812 +#: ../todo.py:1814 msgid "Disk Space" msgstr "´ÅÅ̿ռä" -#: ../todo.py:1847 +#: ../todo.py:1849 msgid "Post Install" msgstr "°²×°ºó" -#: ../todo.py:1848 +#: ../todo.py:1850 msgid "Performing post install configuration..." msgstr "ÕýÔÚÖ´Ðа²×°ºóÅäÖÃ..." @@ -865,35 +865,35 @@ msgstr "ÔÚ %s Éϰ²×° ext2 Îļþϵͳʱ³öÏÖ´íÎó£º %s" msgid "One or more of the filesystems for your Linux system was not unmounted cleanly. Please boot your Linux installation, let the filesystems be checked, and shut down cleanly to upgrade." msgstr "" -#: ../iw/xconfig_gui.py:12 ../xf86config.py:933 +#: ../iw/xconfig_gui.py:12 ../xf86config.py:934 msgid "Video Card" msgstr "ÊÓÆµ¿¨" -#: ../iw/xconfig_gui.py:14 ../xf86config.py:935 +#: ../iw/xconfig_gui.py:14 ../xf86config.py:936 msgid "Video Ram" msgstr "ÊÓÆµ Ram" -#: ../xf86config.py:938 +#: ../xf86config.py:939 msgid "X server" msgstr "x ·þÎñÆ÷" -#: ../xf86config.py:941 +#: ../xf86config.py:942 msgid "Unable to detect video card" msgstr "ÎÞ·¨¼ì²âµ½ÊÓÆµ¿¨" -#: ../iw/xconfig_gui.py:13 ../xf86config.py:948 ../xf86config.py:950 +#: ../iw/xconfig_gui.py:13 ../xf86config.py:949 ../xf86config.py:951 msgid "Monitor" msgstr "ÏÔʾÆ÷" -#: ../xf86config.py:950 +#: ../xf86config.py:951 msgid "Plug and Play Monitor" msgstr "¼´²å¼´ÓÃÏÔʾÆ÷" -#: ../xf86config.py:952 +#: ../xf86config.py:953 msgid "Horizontal frequency range" msgstr "ˮƽƵÂÊ·¶Î§" -#: ../xf86config.py:954 +#: ../xf86config.py:955 msgid "Vertical frequency range" msgstr "´¹Ö±ÆµÂÊ·¶Î§" @@ -1125,7 +1125,7 @@ msgstr "δ·Ö±æÏà¹ØÐÔ" msgid "Total install size: %s" msgstr "" -#: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 ../iw/progress_gui.py:198 ../textw/packages_text.py:312 +#: ../iw/dependencies_gui.py:69 ../iw/package_gui.py:380 ../iw/progress_gui.py:191 ../textw/packages_text.py:312 msgid "Package" msgstr "Èí¼þ°ü" @@ -1499,45 +1499,45 @@ msgstr "ÕýÔÚ°²×°Èí¼þ°ü" msgid "%s KBytes" msgstr "" -#: ../iw/progress_gui.py:199 ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:192 ../iw/progress_gui.py:245 msgid "Size" msgstr "´óС" -#: ../iw/progress_gui.py:200 +#: ../iw/progress_gui.py:193 msgid "Summary" msgstr "ÕªÒª" -#: ../iw/progress_gui.py:230 +#: ../iw/progress_gui.py:223 #, fuzzy msgid "Package Progress: " msgstr "Èí¼þ°ü·Ö×é" -#: ../iw/progress_gui.py:235 +#: ../iw/progress_gui.py:228 #, fuzzy msgid "Total Progress: " msgstr "ºÏ¼Æ£º" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Status" msgstr "״̬" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Packages" msgstr "Èí¼þ°ü" -#: ../iw/progress_gui.py:252 +#: ../iw/progress_gui.py:245 msgid "Time" msgstr "ʱ¼ä" -#: ../iw/progress_gui.py:262 +#: ../iw/progress_gui.py:255 msgid "Total" msgstr "ºÏ¼Æ" -#: ../iw/progress_gui.py:263 +#: ../iw/progress_gui.py:256 msgid "Completed" msgstr "ÒÑÍê³É" -#: ../iw/progress_gui.py:264 +#: ../iw/progress_gui.py:257 msgid "Remaining" msgstr "Ê£Óà" @@ -3108,7 +3108,7 @@ msgstr "ÕýÔÚ×°ÔØ¸¨ÖúÉý¼¶ ramdisk..." msgid "Error loading ramdisk." msgstr "×°ÔØ ramdisk ʱ³öÏÖ´íÎó¡£" -#: ../loader/loader.c:585 ../loader/loader.c:2187 +#: ../loader/loader.c:585 ../loader/loader.c:2193 #, c-format msgid "Failed to read directory %s: %s" msgstr "¶ÁȡĿ¼ %s ʧ°Ü£º%s" @@ -3196,44 +3196,44 @@ msgstr "ÄÄÒ»Àà½éÖʰüº¬Õü¾ÈÓ³Ïñ£¿" msgid "What type of media contains the packages to be installed?" msgstr "ÄÄÒ»Àà½éÖʰüº¬Òª°²×°µÄÈí¼þ°ü£¿" -#: ../loader/loader.c:2157 +#: ../loader/loader.c:2163 msgid "Cannot find ks.cfg on boot floppy." msgstr "ÎÞ·¨ÔÚÒýµ¼ÈíÅÌÖÐÕÒµ½ ks.cfg¡£" -#: ../loader/loader.c:2249 +#: ../loader/loader.c:2255 #, fuzzy msgid "Updates Disk" msgstr "¸üÐÂ" -#: ../loader/loader.c:2250 +#: ../loader/loader.c:2256 msgid "Insert your updates disk and press \"OK\" to continue." msgstr "²åÈë¸üÐÂÅÌ£¬È»ºó°´\"È·¶¨\"¼ÌÐø¡£" -#: ../loader/loader.c:2255 +#: ../loader/loader.c:2261 #, fuzzy msgid "The floppy disk you inserted is not a valid update disk for this release of Red Hat Linux." msgstr "Äú²åÈëµÄÈíÅ̲¢·ÇÓÃÓÚ´Ë Red Hat Linux °æ±¾µÄÓÐЧÇý¶¯³ÌÐòÈíÅÌ¡£" -#: ../loader/loader.c:2265 +#: ../loader/loader.c:2271 msgid "Failed to mount floppy disk." msgstr "°²×°ÈíÅÌʧ°Ü¡£" #. Copy everything to /tmp/updates so .so files don't get run #. from /dev/floppy. We could (and probably should) get smarter #. about this at some point. -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Updates" msgstr "¸üÐÂ" -#: ../loader/loader.c:2270 +#: ../loader/loader.c:2276 msgid "Reading anaconda updates..." msgstr "ÕýÔÚ¶ÁÈ¡ anaconda ¸üÐÂ..." -#: ../loader/loader.c:2476 +#: ../loader/loader.c:2482 msgid "You don't have enough system memory to install Red Hat on this machine." msgstr "" -#: ../loader/loader.c:2934 +#: ../loader/loader.c:2940 #, fuzzy msgid "Running anaconda - please wait...\n" msgstr "ÕýÔÚ¶ÁÈ¡ anaconda ¸üÐÂ..." @@ -3665,6 +3665,698 @@ msgstr "Äں˲ÎÊý" msgid "Utilities" msgstr "" +#. generated from zone.tab +msgid "Acre" +msgstr "" + +#. generated from zone.tab +msgid "Alagoas, Sergipe" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - Alaska panhandle neck" +msgstr "" + +#. generated from zone.tab +msgid "Alaska Time - west Alaska" +msgstr "" + +#. generated from zone.tab +msgid "Aleutian Islands" +msgstr "" + +#. generated from zone.tab +msgid "Amapa, E Para" +msgstr "" + +#. generated from zone.tab +msgid "Amundsen-Scott Station, South Pole" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic islands" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - E Labrador" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI" +msgstr "" + +#. generated from zone.tab +msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" +msgstr "" + +#. generated from zone.tab +msgid "Azores" +msgstr "" + +#. generated from zone.tab +msgid "Bayan-Olgiy, Hovd, Uvs" +msgstr "" + +#. generated from zone.tab +msgid "Borneo & Celebes" +msgstr "" + +#. generated from zone.tab +msgid "Canary Islands" +msgstr "" + +#. generated from zone.tab +msgid "Casey Station, Bailey Peninsula" +msgstr "" + +#. generated from zone.tab +msgid "Catamarca (CT)" +msgstr "" + +#. generated from zone.tab +msgid "central Crimea" +msgstr "" + +#. generated from zone.tab +msgid "central Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - midwest" +msgstr "" + +#. generated from zone.tab +msgid "Central Standard Time - Saskatchewan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Campeche, Yucatan" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Manitoba & west Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Michigan - Wisconsin border" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Quintana Roo" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - Rainy River & Fort Frances, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Central Time - west Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Ceuta & Melilla" +msgstr "" + +#. generated from zone.tab +msgid "Chatham Islands" +msgstr "" + +#. generated from zone.tab +msgid "China coast" +msgstr "" + +#. generated from zone.tab +msgid "China mountains" +msgstr "" + +#. generated from zone.tab +msgid "Davis Station, Vestfold Hills" +msgstr "" + +#. generated from zone.tab +msgid "Dumont-d'Urville Base, Terre Adelie" +msgstr "" + +#. generated from zone.tab +msgid "E Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "E Argentina (BA, DF, SC, TF)" +msgstr "" + +#. generated from zone.tab +msgid "east Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Easter Island" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - central Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - east Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Crawford County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Starke County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Indiana - Switzerland County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Standard Time - Pangnirtung, Nunavut" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Louisville area" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Kentucky - Wayne County" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Michigan - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Time - Thunder Bay, Ontario" +msgstr "" + +#. generated from zone.tab +msgid "Eastern Turkestan" +msgstr "" + +#. generated from zone.tab +msgid "east Greenland" +msgstr "" + +#. generated from zone.tab +msgid "east Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "east Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "Galapagos Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gambier Islands" +msgstr "" + +#. generated from zone.tab +msgid "Gilbert Islands" +msgstr "" + +#. generated from zone.tab +msgid "Great Britain" +msgstr "" + +#. generated from zone.tab +msgid "Hawaii" +msgstr "" + +#. generated from zone.tab +msgid "Irian Jaya & the Moluccas" +msgstr "" + +#. generated from zone.tab +msgid "Jan Mayen" +msgstr "" + +#. generated from zone.tab +msgid "Java & Sumatra" +msgstr "" + +#. generated from zone.tab +msgid "Johnston Atoll" +msgstr "" + +#. generated from zone.tab +msgid "Jujuy (JY)" +msgstr "" + +#. generated from zone.tab +msgid "Kosrae" +msgstr "" + +#. generated from zone.tab +msgid "Kwajalein" +msgstr "" + +#. generated from zone.tab +msgid "Line Islands" +msgstr "" + +#. generated from zone.tab +msgid "Lord Howe Island" +msgstr "" + +#. generated from zone.tab +msgid "Madeira Islands" +msgstr "" + +#. generated from zone.tab +msgid "Marquesas Islands" +msgstr "" + +#. generated from zone.tab +msgid "Mato Grosso, Mato Grosso do Sul" +msgstr "" + +#. generated from zone.tab +msgid "Mawson Station, Holme Bay" +msgstr "" + +#. generated from zone.tab +msgid "McMurdo Station, Ross Island" +msgstr "" + +#. generated from zone.tab +msgid "Mendoza (MZ)" +msgstr "" + +#. generated from zone.tab +msgid "Midway Islands" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+00 - west Russia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+01 - Caspian Sea" +msgstr "" + +#. generated from zone.tab +msgid "Moscow-01 - Kaliningrad" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+02 - Urals" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - Novosibirsk" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+03 - west Siberia" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+04 - Yenisei River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+05 - Lake Baikal" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+06 - Lena River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+07 - Amur River" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+08 - Magadan & Sakhalin" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+09 - Kamchatka" +msgstr "" + +#. generated from zone.tab +msgid "Moscow+10 - Bering Sea" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Arizona" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Standard Time - Sonora" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - central Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Chihuahua" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - Navajo" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - S Baja, Nayarit, Sinaloa" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - south Idaho & east Oregon" +msgstr "" + +#. generated from zone.tab +msgid "Mountain Time - west Northwest Territories" +msgstr "" + +#. generated from zone.tab +msgid "NE Argentina (SF, ER, CN, MN, CC, FM, LP, CH)" +msgstr "" + +#. generated from zone.tab +msgid "NE Brazil (MA, PI, CE, RN, PR)" +msgstr "" + +#. generated from zone.tab +msgid "Newfoundland Island" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - Broken Hill" +msgstr "" + +#. generated from zone.tab +msgid "New South Wales - most locations" +msgstr "" + +#. generated from zone.tab +msgid "northeast Mali" +msgstr "" + +#. generated from zone.tab +msgid "Northern Ireland" +msgstr "" + +#. generated from zone.tab +msgid "Northern Territory" +msgstr "" + +#. generated from zone.tab +msgid "north Manchuria" +msgstr "" + +#. generated from zone.tab +msgid "northwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - north Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - south Yukon" +msgstr "" + +#. generated from zone.tab +msgid "Pacific Time - west British Columbia" +msgstr "" + +#. generated from zone.tab +msgid "Palmer Station, Anvers Island" +msgstr "" + +#. generated from zone.tab +msgid "peninsular Malaysia" +msgstr "" + +#. generated from zone.tab +msgid "Pernambuco" +msgstr "" + +#. generated from zone.tab +msgid "Phoenix Islands" +msgstr "" + +#. generated from zone.tab +msgid "Ponape (Pohnpei)" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - Holiday Islands" +msgstr "" + +#. generated from zone.tab +msgid "Queensland - most locations" +msgstr "" + +#. generated from zone.tab +msgid "Roraima" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Ruthenia" +msgstr "ÑéÖ¤" + +#. generated from zone.tab +msgid "Sabah & Sarawak" +msgstr "" + +#. generated from zone.tab +msgid "Society Islands" +msgstr "" + +#. generated from zone.tab +msgid "South Australia" +msgstr "" + +#. generated from zone.tab +msgid "southwest Greenland" +msgstr "" + +#. generated from zone.tab +msgid "southwest Mali" +msgstr "" + +#. generated from zone.tab +msgid "S & SE Brazil (BA, GO, DF, MG, ES, RJ, SP, PR, SC, RS)" +msgstr "" + +#. generated from zone.tab +msgid "Svalbard" +msgstr "" + +#. generated from zone.tab +msgid "Syowa Station, E Ongul I" +msgstr "" + +#. generated from zone.tab +msgid "Tasmania" +msgstr "" + +#. generated from zone.tab +msgid "Tibet & Xinjiang" +msgstr "" + +#. generated from zone.tab +#, fuzzy +msgid "Tocantins" +msgstr "λÖÃ" + +#. generated from zone.tab +msgid "Transdniestria" +msgstr "" + +#. generated from zone.tab +msgid "Truk (Chuuk)" +msgstr "" + +#. generated from zone.tab +msgid "Victoria" +msgstr "" + +#. generated from zone.tab +msgid "Wake Island" +msgstr "" + +#. generated from zone.tab +msgid "W Amazonas" +msgstr "" + +#. generated from zone.tab +msgid "W Argentina (CB, SA, TM, LR, SJ, SL, NQ, RN)" +msgstr "" + +#. generated from zone.tab +msgid "west Dem. Rep. of Congo" +msgstr "" + +#. generated from zone.tab +msgid "Western Australia" +msgstr "" + +#. generated from zone.tab +msgid "west Kazakhstan" +msgstr "" + +#. generated from zone.tab +msgid "west Uzbekistan" +msgstr "" + +#. generated from zone.tab +msgid "W Para, Rondonia" +msgstr "" + +#. generated from zone.tab +msgid "Yap" +msgstr "" + +#. generated from zone.tab +msgid "Zaporozh'ye, E Lugansk" +msgstr "" + +#. generated from lang-table +msgid "Czech" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "English" +msgstr "Íê³É" + +#. generated from lang-table +#, fuzzy +msgid "Danish" +msgstr "Íê³É" + +#. generated from lang-table +msgid "French" +msgstr "" + +#. generated from lang-table +msgid "German" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Hungarian" +msgstr "±äÁ¿" + +#. generated from lang-table +msgid "Icelandic" +msgstr "" + +#. generated from lang-table +msgid "Italian" +msgstr "" + +#. generated from lang-table +msgid "Japanese" +msgstr "" + +#. generated from lang-table +msgid "Norwegian" +msgstr "" + +#. generated from lang-table +msgid "Portuguese" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Romanian" +msgstr "Ê£Óà" + +#. generated from lang-table +msgid "Russian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Serbian" +msgstr "ÕýÔÚËÑË÷" + +#. generated from lang-table +msgid "Slovak" +msgstr "" + +#. generated from lang-table +msgid "Slovenian" +msgstr "" + +#. generated from lang-table +#, fuzzy +msgid "Spanish" +msgstr "Íê³É" + +#. generated from lang-table +msgid "Swedish" +msgstr "" + +#. generated from lang-table +msgid "Turkish" +msgstr "" + +#. generated from lang-table +msgid "Ukrainian" +msgstr "" + #, fuzzy #~ msgid "Horizontal Sync" #~ msgstr "ˮƽƵÂÊ·¶Î§" @@ -3753,6 +4445,3 @@ msgstr "" #~ msgid "Rebuilding RPM database..." #~ msgstr "ÕýÔÚÖØ½¨ RPM Êý¾Ý¿â..." - -#~ msgid "Variant" -#~ msgstr "±äÁ¿" |