diff options
-rwxr-xr-x | Master/tlpkg/bin/tl-update-messages | 7 | ||||
-rw-r--r-- | Master/tlpkg/installer/install-menu-perltk.pl | 16 | ||||
-rw-r--r-- | Master/tlpkg/translations/cs.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/de.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/fr.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/it.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/ja.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/messages.pot | 379 | ||||
-rw-r--r-- | Master/tlpkg/translations/nl.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/pl.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/ru.po | 384 | ||||
-rw-r--r-- | Master/tlpkg/translations/sk.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/sl.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/sr.po | 392 | ||||
-rw-r--r-- | Master/tlpkg/translations/vi.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/zh-cn.po | 380 | ||||
-rw-r--r-- | Master/tlpkg/translations/zh-tw.po | 380 |
17 files changed, 5691 insertions, 47 deletions
diff --git a/Master/tlpkg/bin/tl-update-messages b/Master/tlpkg/bin/tl-update-messages index faaa47fe92e..57cad51c41d 100755 --- a/Master/tlpkg/bin/tl-update-messages +++ b/Master/tlpkg/bin/tl-update-messages @@ -8,9 +8,12 @@ mydir=`cd \`dirname $0\` && /bin/pwd` Master=`cd $mydir/../.. && /bin/pwd` transdir=$Master/tlpkg/translations +tmpfile=tlpkg/translations/shortdesc.pl cd $Master || exit 1 cp $transdir/messages.pot $transdir/messages.prev +sed -n 's/^shortdesc \(.*\)/__("\1");/p' \ + tlpkg/tlpsrc/scheme-*.tlpsrc tlpkg/tlpsrc/collection-*.tlpsrc >$tmpfile xgettext -o tlpkg/translations/messages.pot \ -L Perl \ --copyright-holder="TeX Live Team" \ @@ -21,6 +24,8 @@ xgettext -o tlpkg/translations/messages.pot \ tlpkg/installer/install-menu-wizard.pl \ tlpkg/installer/install-menu-perltk.pl \ texmf/scripts/texlive/tlmgrgui.pl \ + $tmpfile +rm $tmpfile cd $transdir || exit 1 @@ -39,7 +44,7 @@ rm -f $tmpa $tmpb messages.prev # here we come only if there have been changes for i in *.po ; do printf "$i " - msgmerge --backup=none --update $i messages.pot + msgmerge --backup=none --no-fuzzy-matching --update $i messages.pot done exit $? diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl index 7321c91bdc9..7f75d0e2907 100644 --- a/Master/tlpkg/installer/install-menu-perltk.pl +++ b/Master/tlpkg/installer/install-menu-perltk.pl @@ -557,10 +557,10 @@ sub menu_select_scheme { my $b; if ($i < $nrfh) { $b = $f2l->Radiobutton(-variable => \$selected, -value => $scheme, - -text => $tlpobj->shortdesc)->pack(-anchor => 'w'); + -text => __($tlpobj->shortdesc))->pack(-anchor => 'w'); } else { $b = $f2r->Radiobutton(-variable => \$selected, -value => $scheme, - -text => $tlpobj->shortdesc)->pack(-anchor => 'w'); + -text => __($tlpobj->shortdesc))->pack(-anchor => 'w'); } if ($selected eq $scheme) { $b->focus(); @@ -596,9 +596,9 @@ sub menu_select_standard_collections { foreach my $coll (sort @collections_std) { my $tlpobj = $tlpdb->get_package("$coll"); if ($i < $halfcol) { - $f1->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w'); + $f1->Checkbutton(-variable => \$lvars{$coll}, -text => __($tlpobj->shortdesc))->pack(-anchor => 'w'); } else { - $f2->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w'); + $f2->Checkbutton(-variable => \$lvars{$coll}, -text => __($tlpobj->shortdesc))->pack(-anchor => 'w'); } $i++; } @@ -639,9 +639,9 @@ sub menu_select_lang_collections { foreach my $coll (sort @collections_lang) { my $tlpobj = $tlpdb->get_package("$coll"); if ($i < $langh) { - $f1langLa->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w'); + $f1langLa->Checkbutton(-variable => \$lvars{$coll}, -text => __($tlpobj->shortdesc))->pack(-anchor => 'w'); } else { - $f1langLb->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w'); + $f1langLb->Checkbutton(-variable => \$lvars{$coll}, -text => __($tlpobj->shortdesc))->pack(-anchor => 'w'); } $i++; } @@ -661,9 +661,9 @@ sub menu_select_lang_collections { foreach my $coll (sort @collections_lang_doc) { my $tlpobj = $tlpdb->get_package("$coll"); if ($i < $doch) { - $f1docLa->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w'); + $f1docLa->Checkbutton(-variable => \$lvars{$coll}, -text => __($tlpobj->shortdesc))->pack(-anchor => 'w'); } else { - $f1docLb->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w'); + $f1docLb->Checkbutton(-variable => \$lvars{$coll}, -text => __($tlpobj->shortdesc))->pack(-anchor => 'w'); } $i++; } diff --git a/Master/tlpkg/translations/cs.po b/Master/tlpkg/translations/cs.po index 47a2e469a1b..881a9f5a8c6 100644 --- a/Master/tlpkg/translations/cs.po +++ b/Master/tlpkg/translations/cs.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2009 Translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2009-09-08 11:35+0100\n" "Last-Translator: Michal Madr <m.madr@seznam.cz>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-SourceCharset: utf-8\n" #: tlpkg/installer/install-menu-wizard.pl:148 @@ -1149,6 +1149,382 @@ msgstr "" "Provádění %s neuspělo.\n" "Podívejte se prosím na detaily uvedené v logovacím okně." +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(není dostupný žádný popis)" diff --git a/Master/tlpkg/translations/de.po b/Master/tlpkg/translations/de.po index 5c1abf525bd..096b2fdca3c 100644 --- a/Master/tlpkg/translations/de.po +++ b/Master/tlpkg/translations/de.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2009 German Translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-03-19 23:37+0900\n" "Last-Translator: Norbert Preining <preining@logic.at>\n" "Language-Team: TL German Translation Team <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-Language: German\n" "X-Poedit-SourceCharset: utf-8\n" @@ -1116,6 +1116,382 @@ msgstr "" "Ausführen von %s war nicht erfolgreich.\n" "Details finden Sie im Log Fenster " +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(keine Beschreibung vorhanden)" diff --git a/Master/tlpkg/translations/fr.po b/Master/tlpkg/translations/fr.po index 337630d7530..d16722f66f1 100644 --- a/Master/tlpkg/translations/fr.po +++ b/Master/tlpkg/translations/fr.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2009 Translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-07-13 14:00+0200\n" "Last-Translator: Manuel Pégourié-Gonnard <mpg@tug.org>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-SourceCharset: utf-8\n" #: tlpkg/installer/install-menu-wizard.pl:148 @@ -1111,6 +1111,382 @@ msgstr "" "L'exécution de %s a échoué.\n" "Veuillez consulter la fenêtre de log pour plus de détails." +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(description non disponible)" diff --git a/Master/tlpkg/translations/it.po b/Master/tlpkg/translations/it.po index 8aff865ba55..74e89504a19 100644 --- a/Master/tlpkg/translations/it.po +++ b/Master/tlpkg/translations/it.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: Texlive\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-04-15 12:01+0100\n" "Last-Translator: Marco Pallante <marco.pallante@gmail.com>\n" "Language-Team: <>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-Language: Italian\n" #: tlpkg/installer/install-menu-wizard.pl:148 @@ -1115,6 +1115,382 @@ msgstr "" "L'esecuzione di %s è fallita.\n" "Consulta la finestra di registro per i dettagli." +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(nessuna descrizione disponibile)" diff --git a/Master/tlpkg/translations/ja.po b/Master/tlpkg/translations/ja.po index 55d4ed90db7..b1035bfbd00 100644 --- a/Master/tlpkg/translations/ja.po +++ b/Master/tlpkg/translations/ja.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2010\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-05-28 01:29+0900\n" "Last-Translator: Koji Yokota <yokota@res.otaru-uc.ac.jp>\n" "Language-Team: Japanese <tex-live@tug.org>\n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1108,6 +1108,382 @@ msgstr "" "%s の実行に失敗しました。\n" "詳細については、ログウィンドウをご覧ください。" +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(説明がありません)" diff --git a/Master/tlpkg/translations/messages.pot b/Master/tlpkg/translations/messages.pot index 6b893554f19..48926030647 100644 --- a/Master/tlpkg/translations/messages.pot +++ b/Master/tlpkg/translations/messages.pot @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2010\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -1051,3 +1050,379 @@ msgid "" "Running %s failed.\n" "Please consult the log window for details." msgstr "" + +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" diff --git a/Master/tlpkg/translations/nl.po b/Master/tlpkg/translations/nl.po index 2a34469d698..0ad61ca435b 100644 --- a/Master/tlpkg/translations/nl.po +++ b/Master/tlpkg/translations/nl.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2009 Translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-07-11 10:45+0100\n" "Last-Translator: Siep Kroonenberg <siepo@cybercomm.nl>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-SourceCharset: utf-8\n" #: tlpkg/installer/install-menu-wizard.pl:148 @@ -1103,6 +1103,382 @@ msgstr "" "%s is met een fout geeindigd.\n" "Raadpleeg het log venster voor details." +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(geen beschrijving aanwezig)" diff --git a/Master/tlpkg/translations/pl.po b/Master/tlpkg/translations/pl.po index bc9dc61f498..b232e607338 100644 --- a/Master/tlpkg/translations/pl.po +++ b/Master/tlpkg/translations/pl.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2009 Translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-07-12 00:19+0100\n" "Last-Translator: Staszek Wawrykiewicz <staw@gust.org.pl>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-SourceCharset: utf-8\n" #: tlpkg/installer/install-menu-wizard.pl:148 @@ -1116,6 +1116,382 @@ msgstr "" "Uruchomienie %s nie powiodło się.\n" "Szczegóły znajdziesz w oknie log. " +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(brak opisu)" diff --git a/Master/tlpkg/translations/ru.po b/Master/tlpkg/translations/ru.po index 7d7613c41aa..2f1127e3264 100644 --- a/Master/tlpkg/translations/ru.po +++ b/Master/tlpkg/translations/ru.po @@ -5,16 +5,16 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-04-19 12:31+0900\n" "Last-Translator: Vladimir <lomov.vl@gmail.com>\n" "Language-Team: Russian <tex-live@tug.org>\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: ru\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: tlpkg/installer/install-menu-wizard.pl:148 #: tlpkg/installer/install-menu-perltk.pl:168 @@ -1112,6 +1112,382 @@ msgstr "" "В работе %s произошли ошибки.\n" "Пожалуйста, ознакомьтесь с подробностями в окне журнала." +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(нет описания)" diff --git a/Master/tlpkg/translations/sk.po b/Master/tlpkg/translations/sk.po index 45ac5d815cd..5c1e2419851 100644 --- a/Master/tlpkg/translations/sk.po +++ b/Master/tlpkg/translations/sk.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-07-11 12:37+0100\n" "Last-Translator: Ján Buša <jan.busa@tuke.sk>\n" "Language-Team: <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-Language: Slovak\n" "X-Poedit-SourceCharset: utf-8\n" @@ -1106,6 +1106,382 @@ msgstr "" "Spustenie %s zlyhalo.\n" "Pre ďalšie podrobnosti si, prosím, pozrite okno chybových hlásení. " +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(popis nie je k dispozícii)" diff --git a/Master/tlpkg/translations/sl.po b/Master/tlpkg/translations/sl.po index 5e40879a336..9fa98cec476 100644 --- a/Master/tlpkg/translations/sl.po +++ b/Master/tlpkg/translations/sl.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2009 Translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-06-01 16:38+0100\n" "Last-Translator: Mojca Miklavec <mojca.miklavec.lists@gmail.com>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Bookmarks: 77,-1,-1,-1,-1,-1,-1,-1,-1,-1\n" @@ -1149,6 +1149,382 @@ msgstr "" "Izvajanje %s je spodletelo.\n" "Podrobnosti si poglejte v oknu z dnevnikom (log)." +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(brez opisa)" diff --git a/Master/tlpkg/translations/sr.po b/Master/tlpkg/translations/sr.po index 02f23163ee7..72013cfbf3c 100644 --- a/Master/tlpkg/translations/sr.po +++ b/Master/tlpkg/translations/sr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: Tex Live 2010 Serbian Translation 20100525\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2010-07-15 09:02+0000\n" "Last-Translator: Nikola Lečić <nikola.lecic@anthesphoria.net>\n" "Language-Team: Serbian/Cyrillic <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"Language: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%\n" #: tlpkg/installer/install-menu-wizard.pl:148 #: tlpkg/installer/install-menu-perltk.pl:168 @@ -247,11 +247,11 @@ msgid "" "list of groups is available on the web at http://tug.org/usergroups.html." msgstr "" "Линкови за документацију налазе се у %s/index.html.\n" -"На Интернет-страници TeX Live-а (http://tug.org/texlive/) налазе се расположиве " -"надоградње и исправке. TeX Live је заједнички пројекат група корисника TeX-а " -"из свих делова света; молимо Вас да размотрите могућност подршке путем " -"прикључивања групи која Вам највише одговара. Списак група налази се на " -"Интернет-страници http://tug.org/usergroups.html." +"На Интернет-страници TeX Live-а (http://tug.org/texlive/) налазе се " +"расположиве надоградње и исправке. TeX Live је заједнички пројекат група " +"корисника TeX-а из свих делова света; молимо Вас да размотрите могућност " +"подршке путем прикључивања групи која Вам највише одговара. Списак група " +"налази се на Интернет-страници http://tug.org/usergroups.html." #: tlpkg/installer/install-menu-wizard.pl:499 #: tlpkg/installer/install-menu-perltk.pl:385 @@ -1107,6 +1107,382 @@ msgstr "" "Покретање команде %s није успело.\n" "Прозор са порукама (log window) садржи више детаља." +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(нема расположивог описа)" diff --git a/Master/tlpkg/translations/vi.po b/Master/tlpkg/translations/vi.po index dbacbfdf952..5ae5de0caea 100644 --- a/Master/tlpkg/translations/vi.po +++ b/Master/tlpkg/translations/vi.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2009 Translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2009-09-07 09:15+0700\n" "Last-Translator: Anh K. Huỳnh <xkyanh@gmail.com>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-SourceCharset: utf-8\n" #: tlpkg/installer/install-menu-wizard.pl:148 @@ -1154,6 +1154,382 @@ msgstr "" "Không thành công khi thi hành %s.\n" "Vui lòng tham khảo chi tiết trong cửa sổ nhật ký." +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(không mô tả)" diff --git a/Master/tlpkg/translations/zh-cn.po b/Master/tlpkg/translations/zh-cn.po index d3dd730d1c3..ec5413296ea 100644 --- a/Master/tlpkg/translations/zh-cn.po +++ b/Master/tlpkg/translations/zh-cn.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2009 Translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2009-09-22 12:54+0800\n" "Last-Translator: Jiang Jiang <gzjjgod@gmail.com>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-SourceCharset: utf-8\n" #: tlpkg/installer/install-menu-wizard.pl:148 @@ -1096,6 +1096,382 @@ msgstr "" "运行 %s 失败。\n" "请查看日志窗口以了解细节。" +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #~ msgid "(no description available)" #~ msgstr "(没有描述信息)" diff --git a/Master/tlpkg/translations/zh-tw.po b/Master/tlpkg/translations/zh-tw.po index 343247b1911..b056ad74fae 100644 --- a/Master/tlpkg/translations/zh-tw.po +++ b/Master/tlpkg/translations/zh-tw.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2009 Translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2010-07-15 04:00+0200\n" +"POT-Creation-Date: 2010-07-16 16:42+0200\n" "PO-Revision-Date: 2009-09-03 12:34+0200\n" "Last-Translator: Norbert Preining <preining@logic.at>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Poedit-SourceCharset: utf-8\n" #: tlpkg/installer/install-menu-wizard.pl:148 @@ -1095,6 +1095,382 @@ msgid "" "Please consult the log window for details." msgstr "" +#: tlpkg/translations/shortdesc.pl:1 +msgid "basic scheme (plain and LaTeX)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:2 +msgid "ConTeXt scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:3 +msgid "full scheme (everything)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:4 +msgid "GUST TeX Live scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:5 +msgid "medium scheme (plain, latex, recommended packages, some languages)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:6 +msgid "minimal scheme (plain only)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:7 +msgid "teTeX scheme (more than medium, but nowhere near full)" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:8 +msgid "XML scheme" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:9 +msgid "Essential programs and files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:10 +msgid "Extra BibTeX styles" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:11 +msgid "TeX auxiliary programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:12 +msgid "ConTeXt format" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:13 +msgid "Arabic documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:14 +msgid "TeX Live documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:15 +msgid "Bulgarian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:16 +msgid "Chinese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:17 +msgid "Czech/Slovak documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:18 +msgid "Dutch documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:19 +msgid "English documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:20 +msgid "Finnish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:21 +msgid "French documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:22 +msgid "German documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:23 +msgid "Italian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:24 +msgid "Japanese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:25 +msgid "Korean documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:26 +msgid "Mongolian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:27 +msgid "Polish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:28 +msgid "Portuguese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:29 +msgid "Russian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:30 +msgid "Serbian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:31 +msgid "Slovenian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:32 +msgid "Spanish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:33 +msgid "Thai documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:34 +msgid "Turkish documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:35 +msgid "Ukrainian documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:36 +msgid "Vietnamese documentation" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:37 +msgid "Extra fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:38 +msgid "Recommended fonts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:39 +msgid "TeX and Outline font utilities" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:40 +msgid "Extra formats" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:41 +msgid "Games typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:42 +msgid "Extra generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:43 +msgid "Recommended generic packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:44 +msgid "HTML/SGML/XML support" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:45 +msgid "Humanities packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:46 +msgid "African scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:47 +msgid "Arabic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:48 +msgid "Armenian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:49 +msgid "Chinese, Japanese, Korean" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:50 +msgid "Croatian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:51 +msgid "Cyrillic" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:52 +msgid "Czech/Slovak" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:53 +msgid "Danish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:54 +msgid "Dutch" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:55 +msgid "US and UK English" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:56 +msgid "Finnish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:57 +msgid "French" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:58 +msgid "German" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:59 +msgid "Greek" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:60 +msgid "Hebrew" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:61 +msgid "Hungarian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:62 +msgid "Indic scripts" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:63 +msgid "Italian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:64 +msgid "Latin" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:65 +msgid "Latvian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:66 +msgid "Lithuanian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:67 +msgid "Mongolian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:68 +msgid "Norwegian" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:69 +msgid "Other hyphenation files" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:70 +msgid "Polish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:71 +msgid "Portuguese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:72 +msgid "Spanish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:73 +msgid "Swedish" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:74 +msgid "Tibetan" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:75 +msgid "Turkmen" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:76 +msgid "Vietnamese" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:77 +msgid "Basic LaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:78 +msgid "LaTeX3 packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:79 +msgid "LaTeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:80 +msgid "LaTeX recommended packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:81 +msgid "LuaTeX packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:82 +msgid "Advanced math typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:83 +msgid "MetaPost (and Metafont) drawing packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:84 +msgid "Music typesetting" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:85 +msgid "Omega" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:86 +msgid "Graphics packages and programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:87 +msgid "Plain TeX supplementary packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:88 +msgid "PSTricks packages" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:89 +msgid "Support for publishers, theses, standards, conferences, etc." +msgstr "" + +#: tlpkg/translations/shortdesc.pl:90 +msgid "Typesetting for natural and computer sciences" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:91 +msgid "GNU Texinfo" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:92 +msgid "The TeXworks Editor" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:93 +msgid "Windows support programs" +msgstr "" + +#: tlpkg/translations/shortdesc.pl:94 +msgid "XeTeX packages" +msgstr "" + #, fuzzy #~ msgid "Select packages" #~ msgstr "選擇系統架構" |