diff options
-rw-r--r-- | placeholder.h | 11 | ||||
-rw-r--r-- | po/Makefile | 43 | ||||
-rw-r--r-- | po/POTFILES.in | 1 | ||||
-rw-r--r-- | po/af.po | 330 | ||||
-rw-r--r-- | po/ar.po | 337 | ||||
-rw-r--r-- | po/az.po | 334 | ||||
-rw-r--r-- | po/be.po | 330 | ||||
-rw-r--r-- | po/bg.po | 332 | ||||
-rw-r--r-- | po/br.po | 318 | ||||
-rw-r--r-- | po/bs.po | 337 | ||||
-rw-r--r-- | po/ca.po | 334 | ||||
-rw-r--r-- | po/cs.po | 334 | ||||
-rw-r--r-- | po/cy.po | 337 | ||||
-rw-r--r-- | po/da.po | 334 | ||||
-rw-r--r-- | po/de.po | 337 | ||||
-rw-r--r-- | po/drakconf.pot | 306 | ||||
-rw-r--r-- | po/el.po | 334 | ||||
-rw-r--r-- | po/eo.po | 334 | ||||
-rw-r--r-- | po/es.po | 337 | ||||
-rw-r--r-- | po/et.po | 334 | ||||
-rw-r--r-- | po/eu.po | 337 | ||||
-rwxr-xr-x | po/fake_c.pl | 22 | ||||
-rw-r--r-- | po/fi.po | 334 | ||||
-rw-r--r-- | po/fr.po | 337 | ||||
-rw-r--r-- | po/ga.po | 334 | ||||
-rw-r--r-- | po/gl.po | 336 | ||||
-rw-r--r-- | po/hr.po | 334 | ||||
-rw-r--r-- | po/hu.po | 334 | ||||
-rw-r--r-- | po/id.po | 333 | ||||
-rw-r--r-- | po/it.po | 334 | ||||
-rw-r--r-- | po/ja.po | 334 | ||||
-rw-r--r-- | po/ka.po | 336 | ||||
-rw-r--r-- | po/ko.po | 334 | ||||
-rw-r--r-- | po/lt.po | 334 | ||||
-rw-r--r-- | po/lv.po | 334 | ||||
-rw-r--r-- | po/ms.po | 330 | ||||
-rw-r--r-- | po/mt.po | 337 | ||||
-rw-r--r-- | po/nl.po | 337 | ||||
-rw-r--r-- | po/no.po | 337 | ||||
-rw-r--r-- | po/pl.po | 334 | ||||
-rw-r--r-- | po/pt.po | 334 | ||||
-rw-r--r-- | po/pt_BR.po | 334 | ||||
-rw-r--r-- | po/ro.po | 393 | ||||
-rw-r--r-- | po/ru.po | 334 | ||||
-rw-r--r-- | po/sk.po | 334 | ||||
-rw-r--r-- | po/sl.po | 337 | ||||
-rw-r--r-- | po/sp.po | 334 | ||||
-rw-r--r-- | po/sq.po | 334 | ||||
-rw-r--r-- | po/sr.po | 334 | ||||
-rw-r--r-- | po/sv.po | 334 | ||||
-rw-r--r-- | po/ta.po | 334 | ||||
-rw-r--r-- | po/tg.po | 332 | ||||
-rw-r--r-- | po/th.po | 334 | ||||
-rw-r--r-- | po/tr.po | 334 | ||||
-rw-r--r-- | po/uk.po | 334 | ||||
-rw-r--r-- | po/vi.po | 337 | ||||
-rw-r--r-- | po/wa.po | 337 | ||||
-rw-r--r-- | po/zh_CN.po | 334 | ||||
-rw-r--r-- | po/zh_TW.po | 334 |
59 files changed, 9284 insertions, 9204 deletions
diff --git a/placeholder.h b/placeholder.h deleted file mode 100644 index 1d18fd57..00000000 --- a/placeholder.h +++ /dev/null @@ -1,11 +0,0 @@ -/* A place holder for the strings of old DrakConf, so the new - * translation can also work for the old one (that is, a unique - * version is used for both - */ - -char *foo[] = { - N_("DrakConf: error"), - N_("Quit"), - N_("Error while parsing\nconfig file."), - N_("Can't find any program\n") -} diff --git a/po/Makefile b/po/Makefile index 712160de..68239d2e 100644 --- a/po/Makefile +++ b/po/Makefile @@ -1,11 +1,23 @@ # Installation directories localedir = $(DESTDIR)/usr/share/locale -LANGS = $(shell ls *.po | xargs -i basename {} .po ) PGOAL = drakconf -GOALS = $(PGOAL).pot $(foreach a, $(LANGS), $(a).mo) -# $(foreach a, $(LANGS), $($(a).mo)) +# perl files to search translatable strings in +PL_FILES = $(shell cat POTFILES.in | sed 's,^,../,') +# C-like files to search translatable strings in +#CFILES = + +PL_CFILES = $(PL_FILES:%=%_.c) +POFILES = $(shell ls *.po) +MOFILES = $(POFILES:%.po=%.mo) +LANGS = $(POFILES:%.po=%) + +PREFIX = $(RPM_BUILD_ROOT)/usr +DATADIR = $(PREFIX)/share +LOCALEDIR=$(DATADIR)/locale + +GOALS = $(PGOAL).pot $(MOFILES) all: $(GOALS) @@ -16,15 +28,26 @@ install: all done clean: - rm -f *~ *.[oas] *.mo $(GOALS) TAGS + rm -f *~ *.[oas] *.mo $(GOALS) TAGS $(PL_CFILES) %.mo: %.po msgfmt -o $@ $< -%.pot: POTFILES.in - xgettext --default-domain=`basename $@ .pot` --directory=.. \ - --add-comments --keyword=__ --keyword=_ --keyword=N_ \ - --keyword=I_ --keyword=i18n \ - --files-from=./POTFILES.in && \ - mv `basename $@ .pot`.po $@ +$(PGOAL).pot: $(PL_CFILES) $(CFILES) + xgettext -F -n --add-comments='-PO' --default-domain=$(PGOAL) \ + --keyword=_ --keyword=__ --keyword=N_ \ + --keyword=I_ --keyword=i18n \ + --language=C $(PL_CFILES) $(CFILES) + mv $(PGOAL).po $@ + @rm -rf $(PL_CFILES) + +$(PL_CFILES): %_.c: % + ./fake_c.pl $< > $@ + +merge: $(PGOAL).pot + @for n in $(POFILES); do \ + echo "Merging $$n"; \ + msgmerge "$$n" $< > "$$n"t; \ + mv -f "$$n"t "$$n"; \ + done diff --git a/po/POTFILES.in b/po/POTFILES.in index 722f73ad..a719a06d 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,4 +1,3 @@ -placeholder.h control-center clock.pl menus_launcher.pl @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: Wed Sep 13 2000 10:34:02+0200\n" "Last-Translator: Schalk W. Cronjé <schalkc@ntaba.co.za>\n" "Language-Team: Afrikaans <mandrake@af.org.za>\n" @@ -15,515 +15,517 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KTranslator v 0.6.0\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: fout" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "" -#: placeholder.h:8 -msgid "Quit" -msgstr "Verlaat" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Wat is u tydsone?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" msgstr "" -"Fout in die bestudering\n" -"van die konfigurasielêer." -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Na nie enige program vind nie\n" +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Is die hardewareklok gestel vir GMT?" -#: control-center:60 +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Kanselleer" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "" -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Kanselleer" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "" -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "" -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "" -#: control-center:786 +#: ../control-center_.c:789 #, fuzzy msgid "/File" msgstr "Verlaat" -#: control-center:786 +#: ../control-center_.c:789 #, fuzzy msgid "/_Quit" msgstr "Verlaat" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" +#: ../control-center_.c:794 +msgid "/Display _Logs" msgstr "" -#: control-center:791 -msgid "/Display _Logs" +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" msgstr "" -#: control-center:796 +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "" -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -msgid "DrakClock" -msgstr "" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Wat is u tydsone?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Is die hardewareklok gestel vir GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" "Choose which menu you want to configure" msgstr "" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 #, fuzzy msgid "Configure..." msgstr "IDE word opgestel" -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: fout" + +#~ msgid "Quit" +#~ msgstr "Verlaat" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Fout in die bestudering\n" +#~ "van die konfigurasielêer." + +#~ msgid "Can't find any program\n" +#~ msgstr "Na nie enige program vind nie\n" + #, fuzzy #~ msgid "/File/_Quit" #~ msgstr "Verlaat" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-03-13 14:32GMT\n" "Last-Translator: Boujaj Mostapha Ibrahim <informatik.gelsenkirchen@arcor." "de>\n" @@ -16,416 +16,429 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf:خطأ" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "خروج" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "المنطقة الزمنية" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"خطأ أثناء تØليل\n" -"م٠الإعدادات." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "المنطقة الزمنية - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "لم يمكن ايجاد أي برنامج\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "ما هي منطقتك الزمنية" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "توقيت غرينتش - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "هل ساعة جهازك مضبوطة على توقيت غرينتش" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "مواÙÙ‚" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "الغاء" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "اعادة التشغيل" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "مركز تØكم Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "يرجى.... الانتظار." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "قرص الإقلاع" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "اعدادات الإقلاع" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "تثبيت آلي" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "الشاشة" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "دقة العرض" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "العرض" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "قائمة العتاد" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "الÙأرة" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "الطابعة" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Ø§Ù„Ù…Ø§Ø³Ø Ø§Ù„Ø¶ÙˆØ¦ÙŠ" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "المستخدمون" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "لوØØ© المÙاتيØ" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "الأقراص الصلبة" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "نقاط تجهيز NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "نقاط تجهيز Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "نقاط تجهيز WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "مشاركة التجزئات" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "الإتصال" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "مشاركة الإتصال" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Proxy إعداد " -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "مستوى الأمن" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "الجدارالناري" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "القوائم" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "الخدمات" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "الخطوط" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "التاريخ Ùˆ الوقت" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "السجلات" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "لوØØ© الأوامر" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "ثبت البرنامج" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "اØذ٠البرنامج" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "تØديث Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "مدير مصادر البرمجيات" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "TV Cards" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "العميل DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "الأخبار" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "البروكسي" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "الخادم" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "الوقت" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "الإقلاع Ùˆ بدء التشغيل" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "العتاد" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "نقاط التجهيز" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "قرص مدمج" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "جهاز نسخ أقراص" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "قرص مرن" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "الشبكة Ùˆ الإنترنت" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "الأمن" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "النظام" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "ادارة البرامج" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "إعداد الخادم" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "مركز تØكم Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "ØÙظت التعديلات ÙÙŠ المركبة الØاليّة" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "يرجى الانتظار..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "الغاء" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "أهلا بكم ÙÙŠ مركز تØكم Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "لم يكن ØºØªØ Ù‡Ø°Ø§ المل٠للقراءة: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "النظام:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "اسم المستضيÙ:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "اصدار نواة النظام:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "الجهاز:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "لم يمكن تÙريق: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "مواÙÙ‚" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "اغلاق" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "تيمات أكثر" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "استلم تيمات جديدة" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "تيمات إضاÙية " -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "www.damz.net اØصل على الموضوعات الإضاÙيّة على ا" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Øول - مركز تØكم Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "المؤلÙ: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Artwork: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "مركز تØكم Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Øقوق النشر Ù…ØÙوظة (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "تØذير: لم يتم تØديد المتصÙØ" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "تØذير أمني: لا يمكنني الإتصال بالإنترنت كمستخدم جذري" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_ملÙ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/ملÙ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_خروج" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/Ø®_يارات" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/خيارات" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/اعرض ال_سجلات" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/خيارات" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_وضع مدمج" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_تيمات" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/تيمات" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -433,67 +446,39 @@ msgstr "" "هذا الÙعل سو٠يعيد تشغيل مركز التØكم.\n" "أي تغييرات لم يتم تطبيقها سو٠تضيع." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_تيمات أكثر " -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_مساعدة" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/مساعدة" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_تقرير خطأ" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Øول..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/اعرض السجلات" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/وضع مدمج" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "المنطقة الزمنية" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "المنطقة الزمنية - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "ما هي منطقتك الزمنية" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "توقيت غرينتش - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "هل ساعة جهازك مضبوطة على توقيت غرينتش" - -#: clock.pl:131 -msgid "Reset" -msgstr "اعادة التشغيل" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "مركز اعدادات القوائم" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -503,30 +488,47 @@ msgstr "" "\n" "اختر أي قائمة تريد اعداداها" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "قائمة النظام" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "اعداد..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "قائمة المستخدم" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "انتهى" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "اعدادات الطباعة" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "انقر هنا لإعداد نظام الطباعة" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf:خطأ" + +#~ msgid "Quit" +#~ msgstr "خروج" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "خطأ أثناء تØليل\n" +#~ "م٠الإعدادات." + +#~ msgid "Can't find any program\n" +#~ msgstr "لم يمكن ايجاد أي برنامج\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -689,9 +691,6 @@ msgstr "انقر هنا لإعداد نظام الطباعة" #~ msgid "Save as.." #~ msgstr "ØÙظ بإسم.." -#~ msgid "TV Cards" -#~ msgstr "TV Cards" - #~ msgid "Click here to install standard themes:" #~ msgstr "اضغط هنا لتركيب الموضوعات العاديّة :" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-01 14:10GMT+0200\n" "Last-Translator: Vasif Ä°smayıloÄŸlu MD <azerb_linux@hotmail.com>\n" "Language-Team: Azerbaijani Turkic <linuxaz@azerimail.net>\n" @@ -14,420 +14,433 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: xÉ™ta" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Çıx" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Vaxt Zolağı" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"QuraÅŸdırılma faylının\n" -"daranması sırasında xÉ™ta." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Vaxt Zolağı - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Heç bir proqram tapa bilmÉ™dim\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Sisteminizin yerləşdiyi vaxt zolağı haradır?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Avadanlıq saatınız GMT-yÉ™ görÉ™ quruludurmu?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Oldu" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Ləğv et" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Sıfırla" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Ä°darÉ™ MÉ™rkÉ™zi" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "YüklÉ™nir... LütfÉ™n gözlÉ™yin" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Açılış Disketi" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Açılış QuruluÅŸu" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Avtomatik Qurulum" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Ekran" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Avadanlıq Siyahısı" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Siçan" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Çapedici" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Darayıcı" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Ä°stifadəçilÉ™r" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Klaviatura" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Sabit SürücülÉ™r" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS baÄŸlama nöqtÉ™lÉ™ri" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba baÄŸlama nöqtÉ™lÉ™ri" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV baÄŸlama nöqtÉ™lÉ™ri" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "BölmÉ™ Paylaşılması" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "BaÄŸlantı" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "BaÄŸlantı Paylaşılması" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "VÉ™kil Verici QuraÅŸdırılması" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "TÉ™hlükÉ™sizlik SÉ™viyyÉ™si" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "MenülÉ™r" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "XidmÉ™tlÉ™r" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Yazı NövlÉ™ri" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Vaxt vÉ™ Tarix" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "QeydlÉ™r" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsol" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Proqram Ä°darəçisi" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS Alıcısı" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "XÉ™bÉ™rlÉ™r" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "VÉ™kil Verici" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Verici" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Vaxt" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Veb" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Açılış" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Avadanlıq" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "BaÄŸlama NöqtÉ™lÉ™ri" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD Yandırıcı" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppi" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "ŞəbÉ™kÉ™ vÉ™ Ä°nternet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "TÉ™hlükÉ™sizlik" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistem" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Proqram Ä°darəçisi" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Verici QuraÅŸdırılması" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake Ä°darÉ™ MÉ™rkÉ™zi %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Hazırkı moduldakı düzÉ™liÅŸlÉ™r qeyd edilmÉ™yÉ™cÉ™klÉ™rdir." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "LütfÉ™n güzlÉ™yin..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Ləğv et" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-adobe-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso10646-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Mandrake Ä°darÉ™ MÉ™rkÉ™zinÉ™ XoÅŸ GÉ™ldiniz" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "bu fayl oxunmaq üçün açıla bilmir: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "QovÅŸaq Adı:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "ÇəkirdÉ™k Buraxılışı:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Kompüter:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "\"fork\" edÉ™ bilmÉ™dim: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Oldu" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Qapat" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Daha çox örtük" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Yeni örtüklÉ™r alınır" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "ÆlavÉ™ örtüklÉ™r" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "www.damz.net ünvanından É™lavÉ™ örtüklÉ™r al" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Haqqında - Mandrake Ä°darÉ™ MÉ™rkÉ™zi" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Müəllif:" -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "SÉ™nÉ™t iÅŸi:" -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Ä°darÉ™ MÉ™rkÉ™zi %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "TÉ™lif Haqqı (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "XÉ™bÉ™rdarlıq: Heç bir sÉ™yyah müəyyÉ™nləşdirilmÉ™yib" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "TÉ™hlükÉ™sizlik XÉ™bÉ™rdarlığı: Ä°nternetÉ™ ali istifadəçi olaraq baÄŸlanmaq üçün " "icazÉ™m yoxdur" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fayl" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fayl" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Çıx" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_SeçənÉ™klÉ™r" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/SeçənÉ™klÉ™r" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/QeydlÉ™ri _GöstÉ™r" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/SeçənÉ™klÉ™r" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_HopdurulmuÅŸ Mod" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_ÖrtüklÉ™r" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/ÖrtüklÉ™r" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -435,67 +448,39 @@ msgstr "" "Bu geniÅŸ idarÉ™ mÉ™rkÉ™zini yenidÉ™n baÅŸladacaqdır.\n" "TÉ™tbiq edilmÉ™miÅŸ dÉ™yiÅŸikliklÉ™r itirilÉ™cÉ™klÉ™rdir." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Daha çox örtük" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Yardım" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Yardım" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Haqqında..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/QeydlÉ™ri GöstÉ™r" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/HopdurulmuÅŸ Mod" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Vaxt Zolağı" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Vaxt Zolağı - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Sisteminizin yerləşdiyi vaxt zolağı haradır?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Avadanlıq saatınız GMT-yÉ™ görÉ™ quruludurmu?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Sıfırla" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menü QuraÅŸdırma MÉ™rkÉ™zi" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -505,30 +490,47 @@ msgstr "" "\n" "QuraÅŸdırmaq istÉ™diyiniz menüyü bildirin" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sistem menüsü" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "QuraÅŸdır..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Ä°stifadəçi menüsü" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Qurtardı" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Çap sazlanması" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Çap sistemini sazlamaq üçün buraya tıqlayın" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: xÉ™ta" + +#~ msgid "Quit" +#~ msgstr "Çıx" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "QuraÅŸdırılma faylının\n" +#~ "daranması sırasında xÉ™ta." + +#~ msgid "Can't find any program\n" +#~ msgstr "Heç bir proqram tapa bilmÉ™dim\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2000-08-19 08:45+0200\n" "Last-Translator: Alexander Bokovoy <ab@avilink.net>\n" "Language-Team: be <be@li.org>\n" @@ -13,515 +13,517 @@ msgstr "" "Content-Type: text/plain; charset=windows-1251\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: ïàìûëêà" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "" -#: placeholder.h:8 -msgid "Quit" -msgstr "Âûõàä" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "ßêi âàø ÷àñàâû ïîÿñ?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" msgstr "" -"Ïàìûëêà àíàë³çà\n" -" êàíô³ãóðàöûéíàãà ôàéëà." -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Íå çíîéçäåíû ïðàãðàìû\n" +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Âàø ñiñòýìíû ãàäçiííiê óñòàëÿâàíû íà GMT?" -#: control-center:60 +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Àäìåíà" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "" -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Àäìåíà" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "" -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "" -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "" -#: control-center:786 +#: ../control-center_.c:789 #, fuzzy msgid "/File" msgstr "Âûõàä" -#: control-center:786 +#: ../control-center_.c:789 #, fuzzy msgid "/_Quit" msgstr "Âûõàä" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" +#: ../control-center_.c:794 +msgid "/Display _Logs" msgstr "" -#: control-center:791 -msgid "/Display _Logs" +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" msgstr "" -#: control-center:796 +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "" -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -msgid "DrakClock" -msgstr "" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "ßêi âàø ÷àñàâû ïîÿñ?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Âàø ñiñòýìíû ãàäçiííiê óñòàëÿâàíû íà GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" "Choose which menu you want to configure" msgstr "" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 #, fuzzy msgid "Configure..." msgstr "Íàñòðîéêà IDE" -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: ïàìûëêà" + +#~ msgid "Quit" +#~ msgstr "Âûõàä" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Ïàìûëêà àíàë³çà\n" +#~ " êàíô³ãóðàöûéíàãà ôàéëà." + +#~ msgid "Can't find any program\n" +#~ msgstr "Íå çíîéçäåíû ïðàãðàìû\n" + #, fuzzy #~ msgid "/File/_Quit" #~ msgstr "Âûõàä" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2000-05-24 01:54+0200\n" "Last-Translator: Boyan Ivanov <boyan17@mail.bg>\n" "Language-Team: Bulgarian\n" @@ -14,435 +14,448 @@ msgstr "" "Content-Type: text/plain; charset=windows-1251\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "ÄðåéêÊîíô: ãðåøêà" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "Äðàê÷àñîâíèê" + +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Âðåìåâè ïîÿñ" -#: placeholder.h:8 -msgid "Quit" -msgstr "Èçõîä" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Âðåìåâè ïîÿñ - Äðàê÷àñîâíèê" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Êîÿ å âðåìåâàòà âè çîíà ?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" msgstr "" -"Ãðåøêà ïðè àíàëèçèðàíå íà\n" -"êîíôèã ôàéë" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Íå ìîãà äà íàìåðÿ ïðîãðàìàòà\n" +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Õàäðóåðíèÿò âè ÷àñîâíèê íàñòðîåí ëè å ïî GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Îòìÿíà" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Îòíà÷àëî" -#: control-center:60 +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "Ìàíäðåéê êîíòðîëåí öåíòúð %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Ìîëÿ,ïî÷àêàéòå äà ñå çàðåäè ..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Ñòàðòîâ äèñê" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Ñòàðòîâà êîíôèãóðàöèÿ" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Àâòîìàòè÷íà èíñòàëàöèÿ" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Äèñïëåé" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Õàðäóåúð" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Ìèøêà" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Ïðèíòåð" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Ñêåíåð" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "ïîòðåáèòåë" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Êëàâèàòóðà" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 #, fuzzy msgid "Hard Drives" msgstr "Õàðäóåúð" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS òî÷êè çà ìîíòèðàíå" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba òî÷êè çà ìîíòèðàíå" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV òî÷êè çà ìîíòèðàíå" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Ñïîäåëÿíå íà äÿë" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Âðúçêà" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Ñïîäåëåíà âðúçêà" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Êîíôèãóðèðàíå íà ïðîêñè" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Íèâî íà ñèãóðíîñò" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Çàùèòíà ñòåíà" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Ìåíþòà" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Óñëóãè" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Øðèôòîâå" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Äàòà è ÷àñ" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Ëîãîâå" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Êîíçîëà" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Àâòîìàòè÷íà èíñòàëàöèÿ" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/Ìàíäðåéê_Åêñïåðò" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Ñîôòóåðåí ìåíèäæúð" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Íîâèíè" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Ïðîêñè" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Óñëóãè" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "Âðåìåâè ïîÿñ" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Ñòàðòèðàíå" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Õàðäóåúð" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Òî÷êè çà ìîíòèðàíå" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "Êîìïàêòäèñêîâî ó-âî" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Çàïèñâà÷êà" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Ôëîïè" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Ìðåæà è Èíòåðíåò" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Ñèãóðíîñò" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Ñèñòåìà" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Ñîôòóåðåí ìåíèäæúð" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Êîíôèãóðèðàíå íà ñúðâúðà" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Ìàíäðåéê êîíòðîëåí öåíòúð %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Ïðîìåíèòå íàïðàâåíè â òåêóùèÿ ìîäóë íÿìà äà áúäàò çàïàçåíè" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Ìîëÿ,ïî÷àêàéòå ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Îòìÿíà" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "" -#: control-center:461 +#: ../control-center_.c:466 #, fuzzy msgid "Welcome to the Mandrake Control Center" msgstr "Îòíîñíî - Ìàíäðåéê Êîíòðîëåí Öåíòúð" -#: control-center:462 +#: ../control-center_.c:467 #, fuzzy, c-format msgid "cannot open this file for read: %s" msgstr "íå ìîãà äà îòâîðÿ òîçè ôàéë çà ÷åòåíå: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Ñèñòåìà:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Èìå íà äîìàêèíà:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Âåðñèÿ íà ÿäðîòî" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Ìàøèíà:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Çàòâîðè" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Îùå òåìè" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Ïîëó÷àâàíå íà íîâè òåìè" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Äîïúëíèòåëíè òåìè" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Ñâàëåòå äîïúëíèòåëíè òåìè îò www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Îòíîñíî - Ìàíäðåéê Êîíòðîëåí Öåíòúð" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Àâòîð:" -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Àâòîðè:" -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Ìàíäðåéê êîíòðîëåí öåíòúð %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "" "Ìàíäðåéê êîíòðîëåí öåíòúð %s \n" " \n" " Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Âíèìàíèå: Íå íå èáðàí ðàçëèñòâà÷" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Ïðåäóïðåæäåíèå îòíîñíî ñèãóðíîñòòà: Íå ìè å ïîçâîëåíî äà ñå ñâúðçâàì ñ " "èíòåðíåò êàòî root ïîòðåáèòåë" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Ôàéë" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Ôàéë" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Èçõîä" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Íàñòðîéêè" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Íàñòðîéêè" - -#: control-center:791 +#: ../control-center_.c:794 #, fuzzy msgid "/Display _Logs" msgstr "/Ïîêàæè _ëîãîâåòå" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Íàñòðîéêè" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Òåìè" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Òåìè" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -450,67 +463,39 @@ msgstr "" "Òîâà äåéñòâèå ùå ðåñòàðòèðà êîíðòîëíèÿ öåíòúð.\n" "Âñÿêà íåçàïèñàíà ïðîìÿíà ùå áúäå çàãóáåíà." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Îùå òåìè" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Ïîìîù" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Ïîìîù" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Èíôîðìèðàé çà áúã" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Îòíîñíî..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Ïîêàæè ëîãîâåòå" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -msgid "DrakClock" -msgstr "Äðàê÷àñîâíèê" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Âðåìåâè ïîÿñ" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Âðåìåâè ïîÿñ - Äðàê÷àñîâíèê" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Êîÿ å âðåìåâàòà âè çîíà ?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Õàäðóåðíèÿò âè ÷àñîâíèê íàñòðîåí ëè å ïî GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Îòíà÷àëî" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Ìåíþêîíôèãóðàöèîíåí öåíòúð" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -520,30 +505,47 @@ msgstr "" "\n" "Èçáåðåå êîå ìåíþ æåëàåòå äà íàñòðîèòå" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Ñèñòåìíî ìåíþ" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Íàñòðîé ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Ïîòðåáèòåëñêî ìåíþ" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Ãîòîâî" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Êîíôèãóðèðàíå íà ïå÷àòàùèòå ó-âà" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Ùðàêíåòå òóê,çà äà êîíôèãóðèðàòå ñèñòåìàòà çà ïå÷àò" +#~ msgid "DrakConf: error" +#~ msgstr "ÄðåéêÊîíô: ãðåøêà" + +#~ msgid "Quit" +#~ msgstr "Èçõîä" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Ãðåøêà ïðè àíàëèçèðàíå íà\n" +#~ "êîíôèã ôàéë" + +#~ msgid "Can't find any program\n" +#~ msgstr "Íå ìîãà äà íàìåðÿ ïðîãðàìàòà\n" + #~ msgid "logdrake" #~ msgstr "ëîãäðåéê" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-02-14 17:17+0100\n" "Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n" "Language-Team: Brezhoneg <LL@li.org>\n" @@ -13,367 +13,381 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: fazi" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" + +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Takad-eur" -#: placeholder.h:8 -msgid "Quit" -msgstr "Kuitaat" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Takad-eur - DrakClock" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" msgstr "" -#: placeholder.h:10 -msgid "Can't find any program\n" +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "YA" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Nullañ" + +#: ../clock.pl_.c:131 +msgid "Reset" msgstr "" -#: control-center:60 +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "A-brepoz - Mandrake Control Center" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Planedenn loc'hañ" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Kefluniadur loc'hañ" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Periantel" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Logodenn" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Moullerez" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "tud" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Stokellaoueg" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Poent marc'hañ NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Poent marc'hañ SaMBa" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Poent marc'hañ WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Live surentez" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Letrin" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "Servijerio*" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "Takad-eur" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Loc'hañ" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Periantel" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Poent marc'hañ" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Rouedad hag Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Surentez" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Reizhiad" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "" -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Nullañ" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 #, fuzzy msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Degemer e Mandrake Control Center" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "Fazi en ur zigeriñ %s evit skrivañ" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Reizhiad" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Anv ostiz" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Stumm kraoñell:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "n'ev ket fork(): %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "YA" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Prennañ," -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "A-brepoz - Mandrake Control Center" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "" -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "" -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, fuzzy, c-format msgid "Mandrake Control Center %s\n" msgstr "A-brepoz - Mandrake Control Center" -#: control-center:749 +#: ../control-center_.c:752 #, fuzzy msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "" @@ -381,152 +395,132 @@ msgstr "" " \n" " Copyright (C) 2001 Mandrakesoft SA\n" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Restr" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Restr" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Kuitaat" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Dibarzhoù" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Dibarzhoù" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Skoazell" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Skoazell" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_A-brepoz" -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Takad-eur" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Takad-eur - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "" - -#: clock.pl:131 -msgid "Reset" -msgstr "" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" "Choose which menu you want to configure" msgstr "" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "" -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Echu" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: fazi" + +#~ msgid "Quit" +#~ msgstr "Kuitaat" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 17.08.2002. 12:43\n" "Last-Translator: Amila Akagiæ <bono@linux.org.ba>\n" "Language-Team: Bosnian <lokal@lugbih.org>\n" @@ -13,418 +13,431 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: gre¹ka" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Izlaz" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Vremenska zona" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Gre¹ka prilikom parsiranja\n" -"konfiguracijske datoteke." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Vremenska zona - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Ne mogu pronaæi nijedan program\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Koja je va¹a vremenska zona?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Je li va¹ hardverski sat pode¹en na GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "U redu" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Odustani" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Resetuj" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Kontrolni Centar" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Uèitavam... Molim saèekajte" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Boot disketa" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Boot konfiguracija" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automatska instalacija" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Rezolucija" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Prikaz" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Lista hardware-a" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mi¹" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "©tampaè" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Scanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Korisnici" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastatura" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Tvrdi diskovi" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS mjesta montiranja" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba mjesta montiranja" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV mjesta montiranja" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Djeljenje particije" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Konekcija" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Djeljenje konekcije" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Pode¹avanje proxy-a" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Nivo sigurnosti" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Meniji" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servisi" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fontovi" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datum i vrijeme" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logovi" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konzola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Instaliraj softver" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Ukloni softver" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Update Mandrake-a" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Menad¾er za izvodni kod softvera" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "TV karte" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS klijent" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Vrijeme" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Boot" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardver" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Mjesta montiranja" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD pisaæ" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Disketa" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Mre¾a & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sigurnost" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistem" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Menad¾er softvera" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Pode¹avanje servera" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake Kontrolni Centar %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Izmijene u trenutnom modulu neæe biti spa¹ene." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Molim saèekajte..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Odustani" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-2,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Dobro do¹li u Mandrake Kontrolni Centar" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ne mogu otvoriti ovu datoteku za èitanje: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Naziv raèunara:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Verzija kernela:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Ma¹ina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ne mogu napraviti fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "U redu" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Zatvori" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Vi¹e tema" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Nabavka novih tema" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Dodatne teme" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Dodatne teme mo¾ete naæi na www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "O - Mandrake Kontrolnom Centaru" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Artwork: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Kontrolni Centar %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Autorska prava (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Upozorenje: Browser nije odreðen" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Sigurnosno upozorenje: Nije mi dozvoljeno da se konektujem na Internet kao " "root korisnik" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Datoteka" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Datoteka" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Izlaz" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opcije" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opcije" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Prika¾i _logove" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opcije" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Embedded naèin" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Teme" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Teme" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -432,67 +445,39 @@ msgstr "" "Ova æe akcija ponovo pokrenuti kontrolni centar.\n" "Promjene koje nisu primijenjene bit æe izgubljene." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Vi¹e tema" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Pomoæ" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Pomoæ" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Prijavi gre¹ku" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_O programu..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Prika¾i logove" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Embedded naèin" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Vremenska zona" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Vremenska zona - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Koja je va¹a vremenska zona?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Je li va¹ hardverski sat pode¹en na GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Resetuj" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centar za konfiguraciju menija" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -502,30 +487,47 @@ msgstr "" "\n" "Izaberite meni koji ¾elite konfigurisati" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sistemski meni" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Podesi..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Korisnièki meni" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Gotovo" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Konfiguracija ¹tampanja" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Kliknite ovdje kako bi konfigurisali sistem za ¹tampu" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: gre¹ka" + +#~ msgid "Quit" +#~ msgstr "Izlaz" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Gre¹ka prilikom parsiranja\n" +#~ "konfiguracijske datoteke." + +#~ msgid "Can't find any program\n" +#~ msgstr "Ne mogu pronaæi nijedan program\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -690,8 +692,5 @@ msgstr "Kliknite ovdje kako bi konfigurisali sistem za ¹tampu" #~ msgid "Save as.." #~ msgstr "Saèuvaj kao..." -#~ msgid "TV Cards" -#~ msgstr "TV karte" - #~ msgid "Click here to install standard themes:" #~ msgstr "Kliknite ovdje kako bi instalirali standardne teme:" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-13 22:24+0200\n" "Last-Translator: Softcatalà <traddrake@softcatala.org>\n" "Language-Team: Catalan <info@softcatala.org>\n" @@ -13,418 +13,431 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: error" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Surt" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Zona horària" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Error en analitzar\n" -"el fitxer de configuració." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Zona horària - DrakClock" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "En quina zona horària us trobeu?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "El rellotge del vostre ordinador està regulat a GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "D'acord" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "No es pot trobar cap programa\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Cancel·la" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reinicialitza" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Centre de control de Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "S'està carregant... Si us plau, espereu" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disc d'arrencada" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Configuració de l'arrencada" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Instal·lació automàtica" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Resolució" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Visualitza" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Llista de maquinari" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Ratolí" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Impressora" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Escàner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Usuaris" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Teclat" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Unitats de disc dur" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Punts de muntatge NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Punts de muntatge Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Punts de muntatge WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Compartició de la partició" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Connexió" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Compartició de la connexió" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Configuració del servidor intermediari" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Nivell de seguretat" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menús" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Serveis" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Tipus de lletra" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data i hora" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Registres" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Consola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Instal·la el programari" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Treu el programari" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Gestor de fonts de programari" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Client DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Notícies" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Servidor intermediari" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Servidor" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Hora" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Arrencada" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Maquinari" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Punts de muntatge" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Enregistrador de CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Disquet" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Xarxa i Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Seguretat" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistema" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Gestor de programari" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Configuració del servidor" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Centre de control de Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Les modificacions que s'han fet al mòdul actual no es desaran." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Si us plau, espereu..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Cancel·la" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Benvingut al centre de control de Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "no es pot obrir aquest fitxer per llegir-lo: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistema:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nom de l'ordinador:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Versió del nucli:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Màquina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "no es pot bifurcar: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "D'acord" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Tanca" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Més temes" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Obtenció de temes nous" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Temes addicionals" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Aconsegueix temes addicionals a www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Quant a - Centre de control de Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Circuit original:" -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Centre de control de Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Avís: no s'ha indicat cap navegador" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Avís de seguretat: no estic autoritzat a connectar-me a Internet com a " "superusuari" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fitxer" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fitxer" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Surt" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opcions" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opcions" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Visualitza els _registres" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opcions" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Mode incrustat" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temes" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temes" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -432,67 +445,39 @@ msgstr "" "Amb aquesta acció, el centre de control es reiniciarà.\n" "Qualsevol canvi no aplicat es perdrà." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Més temes" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Ajuda" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Ajuda" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Informeu d'un error" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Quant a..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Visualitza els registres" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Mode incrustat" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Zona horària" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Zona horària - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "En quina zona horària us trobeu?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "El rellotge del vostre ordinador està regulat a GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reinicialitza" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centre de configuració de menús" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -502,26 +487,43 @@ msgstr "" "\n" "Seleccioneu el menú que voleu configurar" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menú del sistema" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Configura..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menú d'usuari" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Fet" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Configuració de la impressió" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Feu clic aquí per configurar el sistema d'impressió" + +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: error" + +#~ msgid "Quit" +#~ msgstr "Surt" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Error en analitzar\n" +#~ "el fitxer de configuració." + +#~ msgid "Can't find any program\n" +#~ msgstr "No es pot trobar cap programa\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-07 15:02GMT\n" "Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n" "Language-Team: Èe¹tina <cs@li.org>\n" @@ -15,417 +15,430 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: chyba" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Konec" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Èasové pásmo" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Chyba pøi zpracovávání\n" -"konfiguraèního souboru." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Èasové pásmo - DrakClock" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Jaké je va¹e èasové pásmo?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Jsou va¹e hardwarové hodiny nastaveny na GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Nemù¾u najít ¾ádný program\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Zru¹it" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Obnovit" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Ovládací centrum Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Nahrávám... Èekejte prosím" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Spou¹tìcí disk" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Nastavení zavadìèe" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automatická instalace" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Rozli¹ení" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Displej" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Seznam hardware" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "My¹" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Tiskárna" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skener" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "U¾ivatelé" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Klávesnice" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Pevné disky" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Pøípojné body NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Pøípojné body Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Pøípojné body WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Sdílení oddílù" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Pøipojení" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Sdílení pøipojení" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Nastavení proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Úroveò zabezpeèení" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menu" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Slu¾by" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Písma" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datum a èas" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logy" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konzole" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Instalovat software" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Odebrat software" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Správce zdrojù software" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS klient" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Èas" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Zavadìè" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Pøípojné body" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Vypalovaèka" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Sí» & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Bezpeènost" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Systém" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Správa software" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Nastavení serveru" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake ovládací centrum %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Zmìny provedené v aktuálním modulu se neulo¾í." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Èekejte prosím..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Zru¹it" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-2,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Vítá vás Mandrake ovládací centrum" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "nelze otevøít soubor %s pro ètení" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Systém:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Název poèítaèe:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Verze jádra:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Poèítaè:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "nelze provést fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Zavøít" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Dal¹í témata" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Naèíst dal¹í témata" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Dal¹í témata" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Naèíst dal¹í témata z www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "O aplikaci Ovládací centrum Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Pøedloha: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake ovládací centrum %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Varování: Není nastaven prohlí¾eè" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Bezpeènostní varování: Nelze se pøipojit k internetu jako u¾ivatel root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Soubor" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Soubor" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Konec" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>K" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Volby" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Volby" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Zobrazit _logy" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Volby" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Zapouzdøený re¾im" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Témata" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Témata" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -433,67 +446,39 @@ msgstr "" "Tato akce zpùsobí restart øídícího centra.\n" "V¹echny nepotvrzené zmìny budou ztraceny." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Dal¹í témata" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Nápovìda" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Nápovìda" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/Nah_lásit chybu" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_O aplikaci..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Zobrazit logy" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Zapouzdøený re¾im" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Èasové pásmo" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Èasové pásmo - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Jaké je va¹e èasové pásmo?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Jsou va¹e hardwarové hodiny nastaveny na GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Obnovit" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centrum pro nastavení menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -503,26 +488,43 @@ msgstr "" "\n" "Vyberte si menu, které chcete nastavit" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Systémové menu" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Nastavuji..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "U¾ivatelské menu" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Hotovo" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Nastavení tisku" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Zde kliknìte pro nastavení tiskového systému" + +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: chyba" + +#~ msgid "Quit" +#~ msgstr "Konec" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Chyba pøi zpracovávání\n" +#~ "konfiguraèního souboru." + +#~ msgid "Can't find any program\n" +#~ msgstr "Nemù¾u najít ¾ádný program\n" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-03-13 19:41-0000\n" "Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n" "Language-Team: Cymraeg/Welsh <cy@li.org>\n" @@ -13,423 +13,436 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-14\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: gwall" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Gadael" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Cylchfa Amser" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Gwall wrth ddosbarthu\n" -"ffeil config" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Cylchfa Amser - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Methu canfod unrhyw rhaglenni\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Pa un yw eich parth amser?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "A yw eich cloc caledwedd wei ei osod i GMT" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Iawn" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Dileu" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Ailosod" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Canolfan Rheoli Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Arhoswch...Llwytho" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disg Cychwyn" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Ffurfweddiad cychwyn" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Awto Gosod" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Dangosydd" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Rhestr Caledwedd" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Llygoden" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Argraffydd" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Sganiwr" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "defnyddwyr" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Allweddell" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Ddisgiau Caled." -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Pwyntiau gosod NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Pwyntiau gosod Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Pwyntiau gosod WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Rhannu Rhaniadau" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Cysylltiad" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Rhannu Cysylltiad" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Ffurfweddiad y Dirprwy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Lefel Diogelwch" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "mur gwarchod" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Dewislenni" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Gwasanaethau" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Ffontiau" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Dyddiad ac Amser" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Cofnodion" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Consol" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Gosod" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 #, fuzzy msgid "Remove Software" msgstr "ychwanegu/tynnu meddalwedd" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Rheolwr Meddalwedd" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "Cardiau Teledu" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Cleient DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Newyddion" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Dirprwy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Gwasanaethwr" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Amser" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Gwe" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Cychwyn" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Caledwedd" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Pwyntiau Gosod" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Llosgwr CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Disg meddal" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Rhwydwaith a'r Rhyngrwyd" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Diogelwch" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "System" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Rheolwr Meddalwedd" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Ffurfweddiad Gwasanaethwr" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Canolfan Rheoli Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Ni fydd y newidiadau wnaed yn y modiwl cyfredol yn cael ei gadw." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Arhoswch..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Dileu" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Croeso i Ganolfan Rheoli Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "methu agor y ffeil i ddarllen: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "System:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Enw Gwesteiwr:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Fersiwn y Cnewyllyn:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Peiriant" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "Methu fforchio: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Iawn" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Cau" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Rhagor o themâu" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Estyn themâu newydd" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Themâu ychwanegol" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Estyn themâu ychwanegol o www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Ynghylch - Canolfan Rheoli Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Awdur: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Gwaith Celf:" -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Canolfan Rheoli Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Hawlfraint (H) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Rhybudd: ni ddynodwyd porwr" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Rhybudd diogelwch: Ni chaf gysylltu â'r rhyngrwyd fel defnyddiwr gwraidd." -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Ffeil" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Ffeil" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Gadael" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Dewisiadau" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Dewisiadau" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Dangos _Cofnodion" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Dewisiadau" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Modd _Mewnosod" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Themâu" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Themâu" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -437,67 +450,39 @@ msgstr "" "Bydd y weithred hon yn ail gychwyn y ganolfan rheoli.\n" "Byd unrhyw newid heb ei osod yn cael ei golli." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Rhagoe o themâu" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Cymorth" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Cymorth" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Ynghylch..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Dangos Cofnodion" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Modd Mewnosod" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Cylchfa Amser" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Cylchfa Amser - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Pa un yw eich parth amser?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "A yw eich cloc caledwedd wei ei osod i GMT" - -#: clock.pl:131 -msgid "Reset" -msgstr "Ailosod" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Canolfan Ffurfweddu Dewislenni" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -507,30 +492,47 @@ msgstr "" "\n" "Dewiswch ba ddewislen rydych am ei ffurfweddu." -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Dewislen y System" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Ffurfweddu..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Dewislen y Defnyddiwr" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Gorffen" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Ffurfweddiad Argraffu" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Cliciwch yma i ffurfweddu'r system argraffu" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: gwall" + +#~ msgid "Quit" +#~ msgstr "Gadael" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Gwall wrth ddosbarthu\n" +#~ "ffeil config" + +#~ msgid "Can't find any program\n" +#~ msgstr "Methu canfod unrhyw rhaglenni\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -696,9 +698,6 @@ msgstr "Cliciwch yma i ffurfweddu'r system argraffu" #~ msgid "Save as.." #~ msgstr "Cadw fel..." -#~ msgid "TV Cards" -#~ msgstr "Cardiau Teledu" - #~ msgid "Click here to install standard themes:" #~ msgstr "Cliciwch yma i osod themâu safonol:" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-09 19:33+0200\n" "Last-Translator: Keld Simonsen <keld@dkuug.dk>\n" "Language-Team: dansk <dansk@klid.dk>\n" @@ -16,417 +16,430 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: Fejl" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Afslut" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Tidszone" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Fejl ved fortolkning\n" -"af konfigurationsfil." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Tidszone - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Kan ikke finde noget program\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Hvad er din tidszone?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Er maskinens interne ur sat til GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Annullér" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "nulstil" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake kontrolcenter" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Indlæser..., vent venligst" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Startsdiskette" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Opstartskonfiguration" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Auto-installering" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Opløsning" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Skærm" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Liste over udstyr" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mus" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Printer" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Brugere" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastatur" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Diskdrev" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS-monteringspunkter" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba-monteringspunkter" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV-monteringspunkter" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partitionsdeling" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Forbindelse" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Forbindelsesdeling" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Opsætning af proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Sikkerhedsniveau" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Brandmur" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menuer" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Tjenester" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Skrifttyper" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Dato og tid" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logger" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsol" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Installér programmel" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Fjern programmel" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake opdatering" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Adminstration af programkilder" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS-klient" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Nyheder" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Tid" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Opstart" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Maskinel" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Monteringspunkter" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Cd-brænder" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Diskette" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Netværk & internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sikkerhed" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "System" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Administration af programmer" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Opsætning af server" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake kontrolcenter %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Ændringerne gjort i det nuværende modul vil ikke blive gemt." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Vent venligst..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Annullér" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Velkommen til Mandrake kontrolcentret" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "kan ikke åbne denne fil til læsning: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "System:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Værtsnavn:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kerneversion:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Maskine:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "kan ikke fork(): %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Luk" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Flere temaer" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Henter nye temaer" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Yderligere temaer" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Hent yderligere temaer på www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Om - Mandrake kontrolcenter" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Forfatter: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Kunstner: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake kontrolcenter %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Advarsel: Der er ikke angivet nogen netlæser" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Sikkerhedsadvarsel: Jeg må ikke koble til internettet som bruger 'root'" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fil" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fil" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Afslut" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Indstillinger" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Indstillinger" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Vis _log" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Indstillinger" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Indlejret tilstand" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temaer" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temaer" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -434,67 +447,39 @@ msgstr "" "Denne handling vil genstarte kontrolcentret.\n" "Alle ændringer der ikke bliver anvendt, vil gå tabt." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Flere temaer" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Hjælp" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Hjælp" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Rapportér fejl" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Om..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Vis log" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Indlejret tilstand" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Tidszone" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Tidszone - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Hvad er din tidszone?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Er maskinens interne ur sat til GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "nulstil" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menutilpasningscenter" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -504,30 +489,47 @@ msgstr "" "\n" "Vælg den menu, du vil tilpasse" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Systemmenu" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfigurér..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Brugermenu" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Færdig" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Konfiguration af udskrivning" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Klik her for at konfigurere udskrivningssystemet" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: Fejl" + +#~ msgid "Quit" +#~ msgstr "Afslut" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Fejl ved fortolkning\n" +#~ "af konfigurationsfil." + +#~ msgid "Can't find any program\n" +#~ msgstr "Kan ikke finde noget program\n" + #~ msgid "Software Manager" #~ msgstr "Programmer" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: control-center 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-06 22:05+0200\n" "Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n" "Language-Team: German <cooker-i18n@linux-mandrake.com>\n" @@ -14,416 +14,429 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: Fehler" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Beenden" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Zeitzone" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Fehler beim Einlesen der \n" -"Konfigurationsdatei." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Zeitzone - DrakClcok" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Ich kann kein Programm finden\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "In welcher Zeitzone befinden Sie sich?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Läuft Ihre Hardware-Uhr unter GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Abbruch" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reset" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Kontrollzentrum" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Bitte warten, ich lade ..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Startdiskette" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Startvorgang" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Auto Install" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Auflösung" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Anzeige" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Hardware-Liste" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Maus" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Drucker" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Scanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Benutzer" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastatur" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Festplatten" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS Einhängpunkte" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba Einhängpunkte" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV Einhängpunkte" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partitionen teilen" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Verbindung" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Verbindung teilen" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Proxy Konfiguration" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Sicherheitsebene" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Firewall" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menüs" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Dienste" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Schriften" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datum und Zeit" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logs" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsole" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Softwareinstallation" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Softwareentfernung" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Softwarequellen Verwalten" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "TV-Karten" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS-Klient" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "PostFix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Zeit" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "BS-Start" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Einhängpunkte" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD-Brenner" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Diskette" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "ZIP" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Netzwerk & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sicherheit" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "System" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Softwareverwaltung" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Server" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake Kontrollzentrum %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Die Änderungen im aktuellen Modul werden nicht gespeichert." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Bitte warten..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Abbruch" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Willkommen im Mandrake Kontrollzentrum" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "Ich kann diese Datei nicht zum lesen öffnen: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "System:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Rechner:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kernversion:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Architektur:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "Ich kann mich nicht forken: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Schließen" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Weitere Themes" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Neue Themes holen" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Zusätzliche Themen" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Zusäliche Themes von www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Ãœber - Mandrake Kontrollzentrum" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Design: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Kontrollzentrum %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright © 2001 MandrakeSoft S.A." -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Warnung: Kein Browser angegeben" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "Sicherheitswarnung: Keine Internetverbindung als Root erlaubt." -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Datei" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Datei" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/B_eenden" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Einstellungen" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Einstellungen" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/_Logs anzeigen" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Einstellungen" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Eingebetteter Modus" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Themes" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Themes" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -431,67 +444,39 @@ msgstr "" "Hiermit starten Sie das Konntrollzentrum erneut.\n" "Alle nicht gesicherten Änderungen gehen verloren." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Mehr Themes" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Hilfe" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Hilfe" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Fehler Melden" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Ãœber ..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Logs anzeigen" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Eingebetteter Modus" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Zeitzone" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Zeitzone - DrakClcok" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "In welcher Zeitzone befinden Sie sich?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Läuft Ihre Hardware-Uhr unter GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reset" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menü-Konfigurationszentrum" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -501,30 +486,47 @@ msgstr "" "\n" "Wählen Sie, welches Menü Sie konfigurieren wollen" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "System Menü" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfigurieren..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Benutzer Menü" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Fertig" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Druckerkonfiguration" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Klicken Sie hier, um Ihr Drucksystem einzurichten" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: Fehler" + +#~ msgid "Quit" +#~ msgstr "Beenden" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Fehler beim Einlesen der \n" +#~ "Konfigurationsdatei." + +#~ msgid "Can't find any program\n" +#~ msgstr "Ich kann kein Programm finden\n" + #~ msgid "logdrake" #~ msgstr "LogDrake" @@ -693,9 +695,6 @@ msgstr "Klicken Sie hier, um Ihr Drucksystem einzurichten" #~ msgid "Save as.." #~ msgstr "Speichern unter..." -#~ msgid "TV Cards" -#~ msgstr "TV-Karten" - #~ msgid "Click here to install standard themes:" #~ msgstr "Hier klicken, um die Standardthemes zu installieren:" diff --git a/po/drakconf.pot b/po/drakconf.pot index fcc96df1..d1551aa7 100644 --- a/po/drakconf.pot +++ b/po/drakconf.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+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" @@ -14,506 +14,494 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8-bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" +#: ../clock.pl_.c:47 +msgid "DrakClock" msgstr "" -#: placeholder.h:8 -msgid "Quit" +#: ../clock.pl_.c:59 +msgid "Time Zone" msgstr "" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" msgstr "" -#: placeholder.h:10 -msgid "Can't find any program\n" +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" msgstr "" -#: control-center:60 +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "" -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "" -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "" -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" +#: ../control-center_.c:794 +msgid "/Display _Logs" msgstr "" -#: control-center:791 -msgid "/Display _Logs" +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" msgstr "" -#: control-center:796 +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "" -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -msgid "DrakClock" -msgstr "" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "" - -#: clock.pl:131 -msgid "Reset" -msgstr "" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" "Choose which menu you want to configure" msgstr "" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "" -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2001-08-23 22:13+0300\n" "Last-Translator: Michael Menegakis <admin@www0.org>\n" "Language-Team: Greek <nls@tux.hellug.gr>\n" @@ -16,499 +16,484 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.8\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: ÓöÜëìá" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "¸îïäïò" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Æþíç ¿ñáò" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"ÓöÜëìá êáôÜ ôçí åðåîåñãáóßá\n" -"ôïõ áñ÷åßïõ ñõèìßóåùí." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Æþíç þñáò - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Äåí ìðïñþ íá âñþ êáíÝíá ðñüãñáììá\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Óå ðïéÜ æþíç þñáò âñßóêåóôå;" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Åßíáé ñõèìéóìÝíï óå GMT (þñá ÃêñÞíïõúôò) ôï ñïëüé ôïõ õðïëïãéóôÞ óáò;" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "ÅíôÜîåé" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Áêýñùóç" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reset" + +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "ÊÝíôñï åëÝã÷ïõ Mandrake %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Ðáñáêáëþ ðåñéìÝíåôå üóï öïñôþíåé ..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Äßóêïò åêêßíçóçò" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Ñõèìßóåéò åêêßíçóçò" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Áõôüìáôç ÅãêáôÜóôáóç" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "ÐñïâïëÞ" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Õëéêü" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Ðïíôßêé" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "ÅêôõðùôÞò" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "÷ñÞóôçò" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Ðëçêôñïëüãéï" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Óêëçñïß äßóêïé" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Óçìåßá mount NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Óçìåßá mount Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Óçìåßá mount WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 #, fuzzy msgid "Partition Sharing" msgstr "Ìïéñáæüìåíç Óýíäåóç" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Óýíäåóç" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Ìïéñáæüìåíç Óýíäåóç" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "ñõèìßóçò åéäïðïßçóçò Mail/SMS" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Åðßðåäï ÁóöÜëåéáò" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Firewall" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Ìåíïý" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Õðçñåóßåò" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "ÃñáììáôïóåéñÝò" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Çìåñïìçíßá êáé ¿ñá" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logs" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Êïíóüëá" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Áõôüìáôç ÅãêáôÜóôáóç" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/Mandrake_Ðñï÷ùñçìÝíï" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Äéá÷åéñéóôÞò Ëïãéóìéêïý" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "Õðçñåóßåò" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "¿ñá" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Åêêßíçóç" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Õëéêü" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Óçìåßá Mount" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Äßêôõï êáé Äéáäßêôõï" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "ÁóöÜëåéá" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Óýóôçìá" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Äéá÷åéñéóôÞò Ëïãéóìéêïý" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "ñõèìßóçò åéäïðïßçóçò Mail/SMS" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "ÊÝíôñï åëÝã÷ïõ Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 #, fuzzy msgid "Please wait..." msgstr "Ðáñáêáëþ ðåñéìÝíåôå üóï öïñôþíåé ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Áêýñùóç" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-7,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Êáëþò Þñèáôå óôï ÊÝíôñï ÅëÝã÷ïõ ôïõ Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "Äåí ìðïñþ íá áíïßîù áõôü ôï áñ÷åßï ãéá áíÜãíùóç: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Óýóôçìá:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "¼íïìá Host:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "¸êäïóç Êernel:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Ìç÷Üíçìá:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "áäõíáìßá fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "ÅíôÜîåé" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Êëåßóéìï" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Ðåñß - ÊÝíôñïõ åëÝã÷ïõ Mandrake" -#: control-center:733 +#: ../control-center_.c:736 #, fuzzy msgid "Author: " msgstr "Äçìéïõñãïß: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Äçìéïõñãïß: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "ÊÝíôñï åëÝã÷ïõ Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright © 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Ðñïóï÷Þ: Äåí ïñßóôçêå öõëëïìåôñçôÞò" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Ðñïåéäïðïßçóç ÁóöÜëåéáò: Äåí åðéôñÝðåôáé íá óõíäåèþ óôï Internet óáí " "õðåñ÷ñÞóôçò" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Añ÷åßï" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Añ÷åßï" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_¸îïäïò" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_ÅðéëïãÝò" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/ÅðéëïãÝò" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/ÐñïâïëÞ _Logs" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/ÅðéëïãÝò" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Embedded Mode" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_ÂïÞèåéá" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/ÂïÞèåéá" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_ÁíáöïñÜ Bug" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Ðåñß..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/ÐñïâïëÞ Logs" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Embedded Mode" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Æþíç ¿ñáò" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Æþíç þñáò - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Óå ðïéÜ æþíç þñáò âñßóêåóôå;" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Åßíáé ñõèìéóìÝíï óå GMT (þñá ÃêñÞíïõúôò) ôï ñïëüé ôïõ õðïëïãéóôÞ óáò;" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reset" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "ÊÝíôñï Ñõèìßóåùí Ìåíïý" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -518,31 +503,48 @@ msgstr "" "\n" "ÅðéëÝîôå ôï ìåíïý ðïõ èÝëåôå íá ñõèìßóåôå" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Ìåíïý ÓõóôÞìáôïò" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Ñõèìßóôå..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Ìåíïý ÷ñÞóôç" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "¸ãéíå" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 #, fuzzy msgid "Printing configuration" msgstr "ñõèìßóçò åéäïðïßçóçò Mail/SMS" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: ÓöÜëìá" + +#~ msgid "Quit" +#~ msgstr "¸îïäïò" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "ÓöÜëìá êáôÜ ôçí åðåîåñãáóßá\n" +#~ "ôïõ áñ÷åßïõ ñõèìßóåùí." + +#~ msgid "Can't find any program\n" +#~ msgstr "Äåí ìðïñþ íá âñþ êáíÝíá ðñüãñáììá\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2001-09-16 14:46-0500\n" "Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n" "Language-Team: Esperanto <eo@li.org>\n" @@ -13,387 +13,399 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-3\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: eraro" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakHorloøo" -#: placeholder.h:8 -msgid "Quit" -msgstr "Æesu" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Horzono" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Eraro dum sintakse analizi\n" -"konfigurodosiero." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Horzono - DrakHorloøo" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Ne povas trovi iun programon\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "kio estas vian horzonon?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakHorloøo" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Æu via hardvara horloøo estas øustigata en GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Jes" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Nuligu" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reøustigu" + +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "Mandrejko-Regilo %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Bonvole atendu du mi lanæas ..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Startdisko" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Starta Konfigura¼o" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Aýtoinstalado" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Ekrano" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Aparatoj" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Muso" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Printilo" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "uzanto" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Klavilo" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 #, fuzzy msgid "Hard Drives" msgstr "Aparatoj" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 #, fuzzy msgid "NFS mount points" msgstr "Muntlokoj" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 #, fuzzy msgid "Samba mount points" msgstr "Muntlokoj" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 #, fuzzy msgid "WebDAV mount points" msgstr "Muntlokoj" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 #, fuzzy msgid "Partition Sharing" msgstr "Partoprenado de konekta¼o" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Konekta¼o" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Partoprenado de konekta¼o" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "MenuoKonfigurejo" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Sekureconivelo" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Fajroþirmilado" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menuoj" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servoj" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Signaroj" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Date k Tempo" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logdosieroj" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konzolo" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Aýtoinstalado" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/Mandrejka _Spertulo" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "ProgramarAdministrilo" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Prokura Servilo" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "Serviloj" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "Horzono" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Startado" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Aparatoj" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Muntlokoj" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "KD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 #, fuzzy msgid "Network & Internet" msgstr "Reto k Interreto" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sekureco" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistemo" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "ProgramarAdministrilo" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "MenuoKonfigurejo" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrejko-Regilo %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 #, fuzzy msgid "Please wait..." msgstr "Bonvole atendu du mi lanæas ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Nuligu" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 #, fuzzy msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-adobe-times-bold-r-normal--15-*-100-100-p-*-iso8859-3,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 #, fuzzy msgid "Welcome to the Mandrake Control Center" msgstr "Pri - Mandrejko-Regilo" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ne povas malfermi æi tiun dosieron por legi: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistemo:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Poþtejo:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kernoversio:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Maþino:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "Ne povas forki: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Jes" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Fermu" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Pri - Mandrejko-Regilo" -#: control-center:733 +#: ../control-center_.c:736 #, fuzzy msgid "Author: " msgstr "Verkistoj: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Verkistoj: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, fuzzy, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrejko-Regilo %s" -#: control-center:749 +#: ../control-center_.c:752 #, fuzzy msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "" @@ -401,125 +413,98 @@ msgstr "" " \n" " Kopirajto (C) 2001 MakdrakeSoft SA\n" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Averto: Neniu foliumilo elektita" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Sekureca Averto: Mi ne rajtas konekti kun la interreto kiel \"root\" uzanto" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Dosiero" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Dosiero" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Forlasu" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>F" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opcioj" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opcioj" - -#: control-center:791 +#: ../control-center_.c:794 #, fuzzy msgid "/Display _Logs" msgstr "Ekrano" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opcioj" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Helpo" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Helpo" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Raportu Cimo" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Pri..." -#: control-center:825 +#: ../control-center_.c:828 #, fuzzy msgid "/Display Logs" msgstr "Ekrano" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakHorloøo" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Horzono" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Horzono - DrakHorloøo" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "kio estas vian horzonon?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakHorloøo" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Æu via hardvara horloøo estas øustigata en GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reøustigu" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "MenuoKonfigurejo" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -529,30 +514,47 @@ msgstr "" "\n" "Elektu kiun menuon vi deziras konfiguri" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sistemmenuo" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfiguru..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Uzantomenuo " -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Kompleta" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: eraro" + +#~ msgid "Quit" +#~ msgstr "Æesu" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Eraro dum sintakse analizi\n" +#~ "konfigurodosiero." + +#~ msgid "Can't find any program\n" +#~ msgstr "Ne povas trovi iun programon\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-24 17:38-0300\n" "Last-Translator: Fabian Mandelbaum <fabman@mandrakesoft.com>\n" "Language-Team: Spanish <cooker-i18n@linux-mandrake.com>\n" @@ -15,417 +15,430 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.8\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: error" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Salir" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Zona horaria" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Error mientras se analizaba\n" -"el archivo de configuración." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Zona horaria - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "No se pudo encontrar ningún programa\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "¿Cuál es su zona horaria?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "¿El reloj interno del ordenador usa la hora GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Aceptar" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Cancelar" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reiniciar" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Centro de control de Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Cargando... Por favor, espere" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disquete de arranque" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Configuración de arranque" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Instalación automática" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Resolución" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Pantalla" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Lista de Hardware" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Ratón" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Impresora" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Scanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Usuarios" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Teclado" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Discos rígidos" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Puntos de montaje NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Puntos de montaje Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Puntos de montaje WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Compartir la partición" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Conexión" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Compartir conexión" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Configuración del proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Nivel de seguridad" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "Agenda de programas" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Cortafuegos" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "Copia de respaldo" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menús" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servicios" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Tipografías" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Fecha y hora" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Registros" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Consola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Instalar software" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Quitar software" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Administrador de fuentes de software" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "Tarjetas de TV" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Cliente DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Noticias" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Servidor" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Huso horario" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Arranque" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Puntos de montaje" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Grabadora de CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Disquete" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Redes e Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Seguridad" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistema" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Administración de software" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Configuración del servidor" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Centro de control de Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "No se guardarán las modificaciones hechas en el módulo corriente." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Por favor, espere un momento ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Cancelar" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Bienvenido al Centro de Control de Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "no se puede abrir este archivo para lectura: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistema:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nombre del host:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Versión del núcleo:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Máquina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "no se pudo hacer fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Aceptar" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Cerrar" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Más temas" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Obteniendo temas nuevos" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Temas adicionales" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Obtener temas adicionales en www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Acerca - Centro de control de Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Arte: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Centro de control de Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Advertencia: No se especificó navegador" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Advertencia de seguridad: No puede conectarme a Internet como el usuario root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Archivo" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Archivo" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Salir" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>S" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opciones" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opciones" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Mostrar _Logs" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opciones" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Modo _Embebido" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temas" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temas" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -433,67 +446,39 @@ msgstr "" "Esta acción reiniciará el centro de control.\n" "Cualquier cambio no aplicado se perderá." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Más temas" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Ayuda" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Ayuda" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Informar de un error" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Acerca de..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Mostrar Logs" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Modo Embebido" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Zona horaria" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Zona horaria - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "¿Cuál es su zona horaria?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "¿El reloj interno del ordenador usa la hora GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reiniciar" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centro de configuración del menú" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -503,30 +488,47 @@ msgstr "" "\n" "Elija el menú que desea configurar" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menú del sistema" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Configurar..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menú del usuario" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Hecho" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Configuración de la impresión" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Haga clic aquí para configurar el sistema de impresión" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: error" + +#~ msgid "Quit" +#~ msgstr "Salir" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Error mientras se analizaba\n" +#~ "el archivo de configuración." + +#~ msgid "Can't find any program\n" +#~ msgstr "No se pudo encontrar ningún programa\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -693,9 +695,6 @@ msgstr "Haga clic aquí para configurar el sistema de impresión" #~ msgid "Save as.." #~ msgstr "Guardar como..." -#~ msgid "TV Cards" -#~ msgstr "Tarjetas de TV" - #~ msgid "Click here to install standard themes:" #~ msgstr "Haga clic aquí para instalar los temas estándar:" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-24 09:53+0300\n" "Last-Translator: Riho Kurg <rx@linux.ee>\n" "Language-Team: Estonian <et@li.org>\n" @@ -15,416 +15,429 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: viga" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Välju" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Ajavööde" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Viga sättefaili\n" -"lugemisel." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Ajavööde - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Ei leia programmi\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Millises ajavöötmes asute?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Katkesta" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Taaskäivita" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Juhtimiskeskus" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Oodake palun.. Laen moodulit" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Alglaadimisketas" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Alglaaduri sätted" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automaatne install" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Lahutusvõime" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Monitor" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Riistvara nimekiri" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Hiir" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Printer" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skänner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Kasutajad" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Klaviatuur" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Kõvakettad" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS haaked" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba haaked" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV haaked" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partitsiooni jagamine" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Ühendus" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Ühenduse jagamine" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Vahendaja(te) seadmine" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Turvatase" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "Programmid: ajaplaan" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Tulemüür" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "Varukoopiad" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menüüd" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Teenused" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fondid" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Kell ja kuupäev" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logifailid" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsool" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Tarkvara install" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Tarkvara eemaldamine" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake uuendused" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Tarkvara alliktekstide haldur" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS klient" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Uudisgrupid" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix meiliserver" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Vahendaja" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Aeg" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Veeb" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Alglaadimine" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Riistvara" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Haakepunktid" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-lugeja" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD-kirjutaja" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Flopiseade" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "ZIP-ketas" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Kohtvõrk ja Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Turvalisus" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Süsteem" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Tarkvara haldur" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Serveri häälestamine" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake Juhtimiskeskus %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Selles moodulis tehtud muudatused ei ole salvestatud." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Palun oodake.." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Katkesta" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-adobe-times-bold-r-normal--*-100-100-100-p-*-iso8859-*,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Mandrake Juhtimiskeskus" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ei saa lugeda seda faili: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Süsteem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Masinanimi:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kerneli versioon:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Masin:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ei saa käitada: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Sulge" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Veel teemasid" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Uute teemade hankimine" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Veel teemasid" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Hangi teemasid saidist www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Misvärk - Mandrake Juhtimiskeskus" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autori: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Kujundus: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Juhtimiskeskus %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr " Kõik õigused (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Hoiatus: Brauser on vaja ka määrata" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "Turvahoiatus: Mul ei ole lubatud juurkasutajana Internetti ühenduda" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fail" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fail" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/S_ulge" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/Seadis_ta" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Seadistused" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Näita _Logifaile" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Seadistused" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Põimitud vaade" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Teemad" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Teemad" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -432,67 +445,39 @@ msgstr "" "Selle tegevuse tulemusena juhtimiskeskus restarditakse.\n" "Rakendamata muutused tühistatakse" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Veel teemasid" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Abi" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Abi" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Vearaport" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Misvärk..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Näita logifaile" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Põimitud vaade" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Ajavööde" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Ajavööde - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Millises ajavöötmes asute?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Taaskäivita" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menüüde seadistuskeskus" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -502,30 +487,47 @@ msgstr "" "\n" "Valige, millist menüüd soovite seadistada" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Süsteemne menüü" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Seadista..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Kasutajate menüü" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Tehtud" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Printimise seaded" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Siit saate printereid seadistada" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: viga" + +#~ msgid "Quit" +#~ msgstr "Välju" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Viga sättefaili\n" +#~ "lugemisel." + +#~ msgid "Can't find any program\n" +#~ msgstr "Ei leia programmi\n" + #, fuzzy #~ msgid "logdrake" #~ msgstr "DrakNet" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-07-09 00:33+0200\n" "Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n" "Language-Team: Euskara <linux-eu@chanae.alphanet.ch>\n" @@ -15,422 +15,435 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: errorea" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "Drak erlojua" -#: placeholder.h:8 -msgid "Quit" -msgstr "Irten" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Ordu-zona" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Errorea konfigurazio-fitxategia\n" -"analizatzean. " +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Ordu-zona - Drak erlojua" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Ezin da programarik aurkitu\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Zein da zure ordu-zona?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - Drak erlojua" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Zure hardwareko erlojua GMTn ezarrita dago?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Ados" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Utzi" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Berrezarri" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake-ren kontrol-zentroa" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Itxaron..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Abioko disketea" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Abioko konfigurazioa" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Instalazio automatikoa" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Pantaila" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Hardware-zerrenda" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Sagua" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Inprimagailua" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Eskanerra" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Erabiltzaileak" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Teklatua" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Disko gogorrak" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS muntatze-puntuak" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba muntatze-puntuak" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV muntatze-puntuak" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partizio konpartitua" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Konexioa" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Konexio konpartitua" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Proxy-konfigurazioa" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Segurtasun-maila" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Suebakia" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menuak" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Zerbitzuak" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Letra-tipoak" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data eta ordua" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Erregistroak" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Kontsola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Instalatu" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/Mandrake_Expert" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Software-kudeatzailea" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "Telebista-txartelak" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS bezeroa" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Berriak" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy-a" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Zerbitzaria" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Ordua" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Abioa" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardwarea" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Muntatze-puntuak" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROMa" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVDa" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD grabatzailea" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Disketea" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zipa" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Sarea & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Segurtasuna" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistema" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Software-kudeatzailea" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Zerbitzari konfigurazioa" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake-ren %s kontrol-zentroa" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Modulu honetan egindako aldaketak ez dira gordeko." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Itxaron..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Utzi" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Ongi etorri Mandrake-ren Kontrol Zentrora" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ezin da fitxategi hau irakurtzeko ireki: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistema:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Ostalari-izena:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Nukleo-bertsioa:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Makina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ezin da bikoiztu: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Ados" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Itxi" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Gai gehiago" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Hartu gai berriak" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Gai gehigarriak" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Gai gehigarriak jasotzeko: www.damz.net " -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Honi buruz - Mandrake-ren Kontrol Zentroa" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Egilea: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Artelanak: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake-ren %s kontrol-zentroa\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Abisua: Ez da arakatzailerik adierazi" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Segurtasun-abisua: Ez dut Internetekin root gisa konektatzeko baimenik " -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fitxategia" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fitxategia" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Irten" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Aukerak" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Aukerak" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Bistaratu erregistroak" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Aukerak" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Modu _kapsulatua" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Gaiak" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Gaiak" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -438,67 +451,39 @@ msgstr "" "Ekintza honek kontrol-zentroa berrabiaraziko du.\n" "Aplikatu gabeko aldaketak galdu egingo dira." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Gehiago" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Laguntza" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Laguntza" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Honi buruz..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Bistaratu erregistroak" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Modu kapsulatua" -#: clock.pl:47 -msgid "DrakClock" -msgstr "Drak erlojua" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Ordu-zona" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Ordu-zona - Drak erlojua" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Zein da zure ordu-zona?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - Drak erlojua" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Zure hardwareko erlojua GMTn ezarrita dago?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Berrezarri" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menu-konfigurazioaren zentroa" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -508,30 +493,47 @@ msgstr "" "\n" "Aukeratu zein menu ezarri nahi duzun" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sistema-menua" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfiguratu..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Erabiltzaile-menua" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Eginda" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Inprimatzeko konfigurazioa" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Egin klik hemen inprimatze-sistema konfiguratzeko" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: errorea" + +#~ msgid "Quit" +#~ msgstr "Irten" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Errorea konfigurazio-fitxategia\n" +#~ "analizatzean. " + +#~ msgid "Can't find any program\n" +#~ msgstr "Ezin da programarik aurkitu\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -698,9 +700,6 @@ msgstr "Egin klik hemen inprimatze-sistema konfiguratzeko" #~ msgid "Save as.." #~ msgstr "Gorde honela.." -#~ msgid "TV Cards" -#~ msgstr "Telebista-txartelak" - #~ msgid "" #~ "This tool seems to be broken, as it didn't show up.\n" #~ " Try to reinstall it" diff --git a/po/fake_c.pl b/po/fake_c.pl new file mode 100755 index 00000000..21cf25b0 --- /dev/null +++ b/po/fake_c.pl @@ -0,0 +1,22 @@ +#!/usr/bin/perl -lp + +s|^(__?\()| $1|; # add a blank at the beginning (?!) + +s|_\(\[(.*),\s*(.*),\s*(.*)\]|ngettext($2,$3,$1)|; # special plural form handling + +s,\Qs/#.*//,,; # ugly special case + +s,(^|[^\$])#([^+].*),"$1/*" . simpl($2) . "*/",e; + # rewrite comments to C format except for: + # - ``#+ xxx'' comments which are kept + # - ``$#xxx'' which are not comments + +s|//|/""/|g; # ensure // or not understood as comments + +s|$|\\n\\|; # multi-line strings not handled in C + +sub simpl { + local $_ = $_[0]; + s,\*/,,g; + $_; +} @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-03-01 09:03EET\n" "Last-Translator: Matias Griese <mahagr@utu.fi>\n" "Language-Team: Finnish\n" @@ -15,423 +15,436 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: virhe" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Poistu" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Aikavyöhyke" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Virhe jäsennettäessä\n" -"asetustiedostoa." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Aikavyöhyke - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Yhtään ohjelmaa ei löytynyt\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Mikä on järjestelmäsi aikavyöhyke?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Onko koneen kello asetettu GMT-aikaan?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Ok" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Peruuta" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Palauta" + +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "Mandraken kontrollipaneeli %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Odota hetki..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Käynnistyslevyke" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Käynnistyksen asetukset" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automaattinen asennus" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Näyttö" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Laitelista" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Hiiri" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Tulostin" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skanneri" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "käyttäjät" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Näppäimistö" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Kiintolevyt" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS liitoskohdat" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba liitoskohdat" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV liitoskohdat" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Osioiden jako" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Yhteys" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Yhteyden jako" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "Palvelimen asetukset" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Turvataso" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Palomuuri" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Valikot" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Palvelut" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Kirjasimet" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Päivä & aika" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Lokit" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsoli" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Automaattinen asennus" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Ohjelmiston hallinta" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS-asiakasohjelma" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Nyytiset" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Välityspalvelin" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Palvelin" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Aika" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Käynnistys" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Laitteisto" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Liitoskohdat" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-asema" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD-polttaja" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Levyke" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Verkko & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Tietoturva" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Järjestelmä" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Ohjelmiston hallinta" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Palvelimen asetukset" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandraken kontrollipaneeli %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Odota hetki..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Peruuta" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Tervetuloa Mandraken kontrollipaneliin" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "tätä tiedostoa ei voida avata lukemiseen: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Järjestelmä:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Verkkonimi:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Ytimen versio:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Kone:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ei voi haaroittaa: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Ok" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Sulje" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Tietoja - Mandraken kontrollipaneeli" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Tekijä: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Tekijä: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandraken kontrollipaneeli %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Varoitus: selaajaa ei ole valittu" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "Turvavaroitus: Internettiin ei saa liittyä pääkäyttäjätunnuksella" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Tiedosto" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Tiedosto" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Poistu" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>P" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Asetukset" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Asetukset" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Näytä _lokit" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Asetukset" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Upotettu tila" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Teemat" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Teemat" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -439,68 +452,40 @@ msgstr "" "Tämä toiminto käynnistää ohjauskeskusksen uudelleen.\n" "Kaikki toteuttamattomat muutokset häviävät." -#: control-center:813 +#: ../control-center_.c:816 #, fuzzy msgid "/_More themes" msgstr "/_Teemat" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Ohje" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Ohje" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Tietoja..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Näytä lokit" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Upotettu tila" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Aikavyöhyke" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Aikavyöhyke - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Mikä on järjestelmäsi aikavyöhyke?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Onko koneen kello asetettu GMT-aikaan?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Palauta" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Valikon asetuskeskus" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -510,30 +495,47 @@ msgstr "" "\n" "Valitse valikko, jota haluat muokata" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Järjestelmävalikko" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Määrittele..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Käyttäjävalikko" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Valmis" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Tulostuksen asetukset" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Klikkaa tähän asettaaksesi tulostusjärjestelmän" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: virhe" + +#~ msgid "Quit" +#~ msgstr "Poistu" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Virhe jäsennettäessä\n" +#~ "asetustiedostoa." + +#~ msgid "Can't find any program\n" +#~ msgstr "Yhtään ohjelmaa ei löytynyt\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-02-19 10:48+0100\n" "Last-Translator: Christophe Combelles <ccomb@club-internet.fr>\n" "Language-Team: Français <fr@li.org>\n" @@ -15,421 +15,434 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf : erreur" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Quitter" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Fuseau horaire" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Erreur en analysant\n" -"le fichier de configuration." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Fuseaux horaire - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Aucun programme n'a été trouvé\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Quelle est votre fuseau horaire ?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Votre horloge système est-elle réglée sur Greenwich (GMT) ?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Accepter" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Annuler" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Remise à zéro" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Centre de contrôle Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Chargement... Veuillez patienter" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disquette de démarrage" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Configuration du démarrage" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Installation automatique" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Affichage" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Liste du Matériel" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Souris" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Imprimante" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Scanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Utilisateurs" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Clavier" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Disques durs" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Points de montage NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Points de montage Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Points de montage WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partage de partition" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Connexion" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Partage de connexion" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Configuration des serveurs mandataires (proxy)" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Niveau de sécurité" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Pare-feu" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menus" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Services" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Polices" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Date et heure" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Journaux" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Console" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Installation" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Gestionnaire de programmes" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "Cartes TV" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Client DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Serveur" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Date & heure" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Internet" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Démarrage" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Matériel" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Points de montage" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Graveur" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Disquette" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Réseau et Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sécurité" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Système" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Gestionnaire de programmes" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Configuration serveur" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Centre de contrôle Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Les modifications effectuées ne seront pas sauvegardées." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Veuillez patienter ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Annuler" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Bienvenue dans le Centre de contrôle Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "impossible d'ouvrir ce fichier pour lecture : %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Système :" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nom de l'hôte :" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Version du noyau :" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Machine :" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "fork() impossible : %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Accepter" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Fermer" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Plus de thèmes" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Retrait des nouveaux thèmes..." -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Thèmes supplementaires" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Thèmes additionels sur www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "A propos - Centre de contrôle Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Auteur : " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Graphismes : " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Centre de contrôle Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Attention : Aucun navigateur spécifié" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Avertissement de sécurité : la connexion à l'internet en tant " "qu'administrateur système est interdite" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fichier" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fichier" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Quitter" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Options" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Options" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/_Affichage des journaux" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Options" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Mode embarqué" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Thèmes" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Thèmes" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -437,67 +450,39 @@ msgstr "" "Cette action va relancer le centre de contrôle.\n" "Tout changement non enregistré sera perdu." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Plus de Thèmes" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Aide" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Aide" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_A propos..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Affichage des journaux" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Mode embarqué" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Fuseau horaire" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Fuseaux horaire - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Quelle est votre fuseau horaire ?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Votre horloge système est-elle réglée sur Greenwich (GMT) ?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Remise à zéro" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centre de configuration des menus" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -507,30 +492,47 @@ msgstr "" "\n" "Choisissez le menu que vous voulez configurer" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu système : " -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Configuration..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu utilisateur : " -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Terminé" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Configuration de l'impression" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Cliquez ici pour configurer le système d'impression" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf : erreur" + +#~ msgid "Quit" +#~ msgstr "Quitter" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Erreur en analysant\n" +#~ "le fichier de configuration." + +#~ msgid "Can't find any program\n" +#~ msgstr "Aucun programme n'a été trouvé\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -696,9 +698,6 @@ msgstr "Cliquez ici pour configurer le système d'impression" #~ msgid "Save as.." #~ msgstr "Enregistrer sous..." -#~ msgid "TV Cards" -#~ msgstr "Cartes TV" - #~ msgid "Click here to install standard themes:" #~ msgstr "Cliquez ici pour installer des thèmes standards" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2000-09-07 16:24+0200\n" "Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n" "Language-Team: Gaeilge <ga@li.org>\n" @@ -15,380 +15,392 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: earraidh" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "Chlóg" -#: placeholder.h:8 -msgid "Quit" -msgstr "Éalaigh" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Am Críos" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Teip ag parsáil\n" -"comhad cumraíocht." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Am Críos - DrakClock" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Cén ceann do chrois ama" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "DrakClock - GMT" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "An bhfuil an clog cruaearrach ar GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Ceart go Leor" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Níl aon ríomhchlár ann\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Cealaigh" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "" -#: control-center:60 +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "Ionad Bainisteoireacht Mandrake %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Ag Lódail, fam tamall le do thoil ..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Diosca Bootáil" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Cumraigh Boot" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Uath-Feistiú" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Taispeántas" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Crua-earraí" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Luchóg" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Clódóir" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "úsáideoir" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Eocharchlár" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 #, fuzzy msgid "Hard Drives" msgstr "Crua-earraí" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Nasc" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Leibhéil Slándáilach" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Chlaranna" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Seirbishí" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Chlofhoireanna" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data & Am" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Consóil" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Uath-Feistiú" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/Saineoli_Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Bainisteóir Bóg-Earraí" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 #, fuzzy msgid "News" msgstr "nuacht" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Seach-freastáil" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "Seirbishí" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Am" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Bootáil" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Crua-earraí" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 #, fuzzy msgid "Network & Internet" msgstr "Idirlíon" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Slándáil" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Coras" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Bainisteóir Bóg-Earraí" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Ionad Bainisteoireacht Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 #, fuzzy msgid "Please wait..." msgstr "Ag Lódail, fam tamall le do thoil ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Cealaigh" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 #, fuzzy msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 #, fuzzy msgid "Welcome to the Mandrake Control Center" msgstr "Faoi Ionad Bainisteoireacht Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Corás:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Ostainm:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Leagan Kernel:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Meaisín:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "Teip ag fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Ceart go Leor" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Dún" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Faoi Ionad Bainisteoireacht Mandrake" -#: control-center:733 +#: ../control-center_.c:736 #, fuzzy msgid "Author: " msgstr "Údáir: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Údáir: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, fuzzy, c-format msgid "Mandrake Control Center %s\n" msgstr "Ionad Bainisteoireacht Mandrake %s" -#: control-center:749 +#: ../control-center_.c:752 #, fuzzy msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "" @@ -396,154 +408,144 @@ msgstr "" "\n" " Cóipcheart © 2001 Mandrakesoft SA\n" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/C_omhad" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Comhad" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Ériggh" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>E" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Roghanna" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Roghanna" - -#: control-center:791 +#: ../control-center_.c:794 #, fuzzy msgid "/Display _Logs" msgstr "Taispeántas" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Roghanna" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/C_úidiú" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Cúidiú" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Tuairaisc Fabht" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Faoi..." -#: control-center:825 +#: ../control-center_.c:828 #, fuzzy msgid "/Display Logs" msgstr "Taispeántas" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -msgid "DrakClock" -msgstr "Chlóg" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Am Críos" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Am Críos - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Cén ceann do chrois ama" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "DrakClock - GMT" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "An bhfuil an clog cruaearrach ar GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" "Choose which menu you want to configure" msgstr "" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Clar Choras" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Cumraigh..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Clar Úsáideoir" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Críochnaithe." -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: earraidh" + +#~ msgid "Quit" +#~ msgstr "Éalaigh" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Teip ag parsáil\n" +#~ "comhad cumraíocht." + +#~ msgid "Can't find any program\n" +#~ msgstr "Níl aon ríomhchlár ann\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2001-03-18 11:41+0200\n" "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n" "Language-Team: Galician <trasno@ceu.fi.udc.es>\n" @@ -14,534 +14,536 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: erro" +#: ../clock.pl_.c:47 +#, fuzzy +msgid "DrakClock" +msgstr "Drakelogo" -#: placeholder.h:8 -msgid "Quit" -msgstr "Saír" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "" + +#: ../clock.pl_.c:66 +#, fuzzy +msgid "Which is your timezone?" +msgstr "¿ Cal é o uso do seu sistema ?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "¿O reloxo interno do seu ordenador usa a hora GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" msgstr "" -"Erro ó analizar o\n" -"ficheiro de configuración." -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Non se atopa ningún programa\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Cancelar" -#: control-center:60 +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "" + +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "/Centro de control de _Mandrake" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Por favor, sexa paciente" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disquete de arrinque" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Configuración do arrinque" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Pantalla" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Hardware" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Rato" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Impresora" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "Usuario: " -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Teclado" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 #, fuzzy msgid "Hard Drives" msgstr "HardDrake" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 #, fuzzy msgid "Partition Sharing" msgstr "Compartición da conexión" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Conexión" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Compartición da conexión" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "Configuración do hardware" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menús" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servicios" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fontes" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data e hora" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 #, fuzzy msgid "Console" msgstr "Pechar" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/Axuda/Centro de control de _Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "Servicios" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Arrinque" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 #, fuzzy msgid "Floppy" msgstr "DrakFloppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Rede e Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistema" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Xestión de fontes" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "Configuración do hardware" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Centro de control de Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 #, fuzzy msgid "Please wait..." msgstr "Por favor, sexa paciente" -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Cancelar" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 #, fuzzy msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-adobe-times-bold-r-normal--*-100-100-100-p-*-iso8859-*,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 #, fuzzy msgid "Welcome to the Mandrake Control Center" msgstr "Acerca - Centro de control de Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "non se pode abrir este ficheiro para lectura: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistema:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nome de máquina:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Versíon do núcleo:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Máquina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "non se pode facer fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Pechar" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Acerca - Centro de control de Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Centro de control de Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Ficheiro" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Ficheiro" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Saír" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "" - -#: control-center:791 +#: ../control-center_.c:794 #, fuzzy msgid "/Display _Logs" msgstr "Pantalla" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/A_xuda" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Axuda" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Comunicar erro" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Acerca..." -#: control-center:825 +#: ../control-center_.c:828 #, fuzzy msgid "/Display Logs" msgstr "Pantalla" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -#, fuzzy -msgid "DrakClock" -msgstr "Drakelogo" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "" - -#: clock.pl:66 -#, fuzzy -msgid "Which is your timezone?" -msgstr "¿ Cal é o uso do seu sistema ?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "¿O reloxo interno do seu ordenador usa a hora GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" "Choose which menu you want to configure" msgstr "" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menú do sistema" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 #, fuzzy msgid "Configure..." msgstr "Configurando o IDE" -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menú de usuario" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: erro" + +#~ msgid "Quit" +#~ msgstr "Saír" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Erro ó analizar o\n" +#~ "ficheiro de configuración." + +#~ msgid "Can't find any program\n" +#~ msgstr "Non se atopa ningún programa\n" + #, fuzzy #~ msgid "logdrake" #~ msgstr "draknet" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-03-13 01:50CET\n" "Last-Translator: Vlatko Kosturjak <kost@iname.com>\n" "Language-Team: Croatian <lokalizacija@linux.hr>\n" @@ -15,420 +15,433 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.8\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: gre¹ka" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Izlaz" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Vremenska Zona" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Gre¹ka prilikom procesiranja\n" -"konfiguracijske datoteke." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Vremenska zona - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Ne mogu pronaæi nijedan program\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Koja je va¹a vremenska zona?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Da li je va¹ hardverski sat namje¹ten na GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "U redu" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Odustani" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reset" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Kontrolni Centar" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Uèitavam... Molim prièekajte" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Boot Disketa" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Boot Konfiguracija" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Auto Instalacija" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Zaslon" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Popis Hardwarea" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mi¹" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Pisaè" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skener" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Korisnici" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastatura" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Tvrdi diskovi" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS toèke montiranja" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba toèke montiranja" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV toèke montiranja" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Dijeljenje Particija" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Veza" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Dijeljenje veze" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Proxy Postavke" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Sigurnosna Razina" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Vatrozid" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Meniji" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servisi" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Pisma" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datum i Vrijeme" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Zapisi" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konzola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Auto Instalacija" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Upravitelj Softwareom" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS Klijent" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Diskusije" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proksi" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Poslu¾itelj" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Vrijeme" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Boot" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Toèke montiranja" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD Pr¾ilica" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Mre¾a i Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sigurnost" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sustav" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Upravitelj Softwareom" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Postavke poslu¾itelja" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake Kontrolni Centar %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Promjene napravljene u trenutnom modulu neæe biti spremljene." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Molim prièekajte..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Odustani" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-2,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Dobro do¹li u Mandrake Kontrolni Centar" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ne mogu otvoriti datoteku za èitanje: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sustav:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Ime raèunala:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kernel Inaèica:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Raèunalo:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ne mogu napraviti fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "U redu" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Zatvori" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "O - Mandrake Kontrolnom Centru" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Grafika: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helena Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Kontrolni Centar %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Autorska prava (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Upozorenje: Preglednik nije specifiran" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Sigurnosno Upozorenje: Nemam dozvolu se spojiti na internet kao root korisnik" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Datoteka" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Datoteka" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Izlaz" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opcije" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opcije" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Prika¾i _Zapise" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opcije" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Ugradbeni Mod" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Teme" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Teme" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -436,68 +449,40 @@ msgstr "" "Navedena akcija æe ponovno pokrenuti kontrolni centar.\n" "Svaka neprimijenjena promjena æe biti izgubljena." -#: control-center:813 +#: ../control-center_.c:816 #, fuzzy msgid "/_More themes" msgstr "/_Teme" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Pomoæ" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Pomoæ" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_O programu..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Prika¾i Zapise" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Ugradbeni Mod" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Vremenska Zona" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Vremenska zona - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Koja je va¹a vremenska zona?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Da li je va¹ hardverski sat namje¹ten na GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reset" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centar Menu Postavki" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -507,30 +492,47 @@ msgstr "" "\n" "Izaberite koji menu ¾elite postaviti" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sustavski menu" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Pode¹avanje..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Korisnièki menu" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Zavr¹i" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Postavke ispisa" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Pritisnite ovdje za pode¹avanje ispisnog sustava" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: gre¹ka" + +#~ msgid "Quit" +#~ msgstr "Izlaz" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Gre¹ka prilikom procesiranja\n" +#~ "konfiguracijske datoteke." + +#~ msgid "Can't find any program\n" +#~ msgstr "Ne mogu pronaæi nijedan program\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-24 12:11+0000\n" "Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n" "Language-Team: Hungarian\n" @@ -15,422 +15,435 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: hiba" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Kilépés" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Idõzóna" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Hiba történt a konfigurációs\n" -"fájl feldolgozása közben." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Idõzóna - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Egyetlen program sem található\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Melyik az Ön idõzónája?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "A hardver-óra GMT szerint van beállítva?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Mégsem" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Visszaállítás" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Vezérlõközpont" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Betöltés; kis türelmet..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Indítólemez" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Rendszerindítási beállítások" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automatikus telepítés" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Felbontás" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Képernyõ" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Hardverlista" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Egér" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Nyomtató" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Lapolvasó" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Felhasználók" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Billentyûzet" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Merevlemezek" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS csatolási pontok" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba csatolási pontok" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV csatolási pontok" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partíciómegosztás" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Kapcsolat" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Kapcsolatmegosztás" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Proxy beállítása" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Biztonsági szint" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "Programütemezés" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Tûzfal" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "Mentések" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menük" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Szolgáltatások" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Betûtípusok" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Dátum és idõ" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Naplók" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konzol" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Szoftvertelepítés" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Szoftvereltávolítás" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake-frissítés" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Szoftverforrás-kezelõ" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS-kliens" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Hírek" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Kiszolgáló" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Idõ" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Rendszerindítás" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardver" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Csatolási pontok" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD-író" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Hálózat és internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Biztonság" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Rendszer" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Szoftverkezelés" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Kiszolgáló beállítása" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake Vezérlõközpont %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "A jelenlegi modulban végzett módosítások nem kerülnek mentésre." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Kis türelmet..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Mégsem" - # It may give better results to localize "iso8859-1" to "iso8859-2" # (it is not "needed" as the ending *-r-* will catch a -iso8859-2 # font anyway; but maybe the one caught that way won't be the # best looking one...) -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-2,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Üdvözöljük a Mandrake Vezérlõközpontban" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "nem nyitható meg olvasásra: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Rendszer:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Gépnév:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kernelverzió:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Gép:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "nem sikerült létrehozni új példányt: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Bezárás" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "További témák" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Új témák beszerzése" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "További témák" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "További témákat a www.damz.net helyen lehet szerezni" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Névjegy - Mandrake Vezérlõközpont" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Szerzõ: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Grafika: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Vezérlõközpont %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) Mandrakesoft SA, 2001." -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Figyelmeztetés: nincs megadva böngészõ" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Biztonsági figyelmeztetés: az internetre való kapcsolódás rendszergazdaként " "nem engedélyezett" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fájl" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fájl" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Kilépés" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Beállítások" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Beállítások" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Naplók _megjelenítése" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Beállítások" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Beá_gyazott üzemmód" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Témák" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Témák" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -438,67 +451,39 @@ msgstr "" "Ez a mûvelet újraindítja a vezérlõközpontot.\n" "Az életbe nem léptetett módosítások elvesznek." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/To_vábbi témák" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Segítség" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Segítség" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Hibabejelentés" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Névjegy..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Naplók megjelenítése" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Beágyazott üzemmód" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Idõzóna" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Idõzóna - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Melyik az Ön idõzónája?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "A hardver-óra GMT szerint van beállítva?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Visszaállítás" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menübeállító" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -508,30 +493,47 @@ msgstr "" "\n" "Válassza ki, melyik menüt szeretné beállítani" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Rendszermenü" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Beállítás..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Felhasználói menü" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Kész" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Nyomtatás beállítása" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "A nyomtatási rendszer beállításához kattintson ide" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: hiba" + +#~ msgid "Quit" +#~ msgstr "Kilépés" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Hiba történt a konfigurációs\n" +#~ "fájl feldolgozása közben." + +#~ msgid "Can't find any program\n" +#~ msgstr "Egyetlen program sem található\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.90\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-06 16:24+0900\n" "Last-Translator: Budi Rachmanto <rac@linux-mandrake.com>\n" "Language-Team: Indonesian\n" @@ -13,414 +13,429 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: gagal" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" + +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Zona Waktu" -#: placeholder.h:8 -msgid "Quit" -msgstr "Keluar" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Zona waktu - DrakClock" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "Analisa file konfigurasi gagal." +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Pilih zonawaktu Anda" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Apakah jam hardware Anda merujuk GMT?" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Program tak tertemukan\n" +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Batal" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reset" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Pusat Kontrol Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Tunggu, sedang dimuat..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disk Boot" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Konfigurasi Boot" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Instal Otomatis" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Resolusi" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Display" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Daftar Hardware" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mouse" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Printer" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Scanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "User" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Keyboard" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Harddisk" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Titik mount NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Titik Mount Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Titik Mount WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partisi Bersama" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Koneksi" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Koneksi Bersama" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Konfigurasi Proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Level Keamanan" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Tembok api" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menu" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servis" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Font" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Tanggal & Waktu" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Log" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsol" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Instal Piranti Lunak" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Hapus Piranti Lunak" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Update Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Manajer Source Piranti Lunak" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "Kartu TV" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Klien DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Berita" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proksi (Wakil)" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Waktu" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Boot" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Titik Mount" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Pembakar CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Network & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Keamanan" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistem" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Manajemen Piranti Lunak" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Konfigurasi Server" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Sentral Kontrol Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Modifikasi yang dilakukan di modul ini takkan disimpan" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Tunggu..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Batal" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Selamat Datang di Sentral Kontrol Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "file tak terbaca: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nama host:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Versi Kernel:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Mesin:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "gagal mencabang: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Tutup" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Tema lain" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Ambil tema baru" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Tema tambahan" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Ambil tema tambahan di www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Keterangan - Sentral Kontrol Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Pengarang: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Kerja Seni: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Sentral Kontrol Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Hak Cipta (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Peringatan: browser tak disebut" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "Peringatan Keamanan: Koneksi internet sbg root tak diizinkan" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_File" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/File" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Keluar" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opsi" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opsi" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Tampilan _Log" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opsi" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Mode Cangkok" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Tema" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Tema" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -428,67 +443,39 @@ msgstr "" "Aksi ini akan menjalankan ulang pusat kontrol.\n" "Perubahan yang belum diterapkan akan hilang." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/Tema _lain" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Help" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Help" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Laporan Bug" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Keterangan" -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Tampilan Log" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Mode Cangkok" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Zona Waktu" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Zona waktu - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Pilih zonawaktu Anda" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Apakah jam hardware Anda merujuk GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reset" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Sentral Konfigurasi Menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -498,30 +485,45 @@ msgstr "" "\n" "Pilih menu yg akan di-konfigurasi" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu Sistem" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfigurasikan ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu user" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Selesai" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Konfigurasi pencetakan" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Klik di sini untuk konfigurasi sistem cetak" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: gagal" + +#~ msgid "Quit" +#~ msgstr "Keluar" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "Analisa file konfigurasi gagal." + +#~ msgid "Can't find any program\n" +#~ msgstr "Program tak tertemukan\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -684,9 +686,6 @@ msgstr "Klik di sini untuk konfigurasi sistem cetak" #~ msgid "Save as.." #~ msgstr "Simpan di.." -#~ msgid "TV Cards" -#~ msgstr "Kartu TV" - #~ msgid "Click here to install standard themes:" #~ msgstr "Klik di sini untuk menginstal tema standar" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-13 18:25+0200\n" "Last-Translator: Roberto Rosselli Del Turco <rosselli@ling.unipi.it>\n" "Language-Team: Italian <it@li.org>\n" @@ -15,417 +15,430 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: errore" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Esci" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Fuso orario" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Errore nel controllo\n" -"del file di configurazione" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Fuso orario - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Non riesco a trovare nessun programma\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Qual'è il tuo fuso orario?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "L'orologio hardware è impostato su GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Annulla" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reimposta" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Control Center" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Caricamento... Attendere per favore..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disco di avvio" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Configurazione di avvio" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Installazione automatica" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Risoluzione" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Monitor" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Lista hardware" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mouse" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Stampante" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Scanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Utenti" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastiera" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Dischi fissi" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Punti di mount NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Punti di mount Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Punti di mount WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Condivisione della partizione" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Connessione" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Condivisione della connessione" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Configurazione del proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Livello di sicurezza" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Firewall" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menu" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servizi" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Font" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data e ora" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "File di Log" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Console" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Installa Software" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Rimuovi Software" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Gestione fonti software" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Client DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Ora" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Avvio" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Punti di mount" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Masterizzatore CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Rete & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sicurezza" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistema" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Gestione software" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Configurazione server" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Centro di controllo Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Le modifiche apportate nel modulo corrente non verranno salvate" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Attendere per favore..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Annulla" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Benvenuti a Mandrake Control Center" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "non posso aprire il file in lettura: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistema:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nome dell'host:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Versione del kernel:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Macchina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "non posso smistare: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Chiudi" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Altri temi" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Come procurarsi altri temi" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Ulteriori temi" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Procurarsi ulteriori temi su www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Informazioni su - Mandrake Control Center" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autore: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Grafica: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Centro di controllo Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Attenzione: Nessun browser specificato" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Sicurezza: Attenzione, non posso connettermi a Internet come utente root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_File" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/File" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Esci" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opzioni" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opzioni" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Mostra i _Log" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opzioni" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Modalità _Embedded" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temi" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temi" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -433,67 +446,39 @@ msgstr "" "Questa azione riavvierà il centro di controllo.\n" "Ogni modifica non salvata andrà persa." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Altri temi" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Guida" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Guida" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Segnala un bug" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Informazioni su..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Mostra i Log" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Modalità Embedded" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Fuso orario" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Fuso orario - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Qual'è il tuo fuso orario?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "L'orologio hardware è impostato su GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reimposta" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centro configurazione menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -503,30 +488,47 @@ msgstr "" "\n" "Scegli il menu che vuoi configurare" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu di sistema" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Configura..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu Utente" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Fatto" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Configurazione stampa" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Fai click qui per configurare il sistema di stampa" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: errore" + +#~ msgid "Quit" +#~ msgstr "Esci" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Errore nel controllo\n" +#~ "del file di configurazione" + +#~ msgid "Can't find any program\n" +#~ msgstr "Non riesco a trovare nessun programma\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2000-09-13 19:00+0200\n" "Last-Translator: YAMAGATA Hiroo <hiyori13@alum.mit.edu>\n" "Language-Team: japanese\n" @@ -14,418 +14,431 @@ msgstr "" "Content-Type: text/plain; charset=euc-jp\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: ¥¨¥é¡¼" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakeClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "½ªÎ»" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "»þ´ÖÂÓ" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"ÀßÄê¥Õ¥¡¥¤¥ë¤òÆɤߤȤêÃæ¤Ë\n" -"¥¨¥é¡¼" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "»þ´ÖÂÓ - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "¥×¥í¥°¥é¥à¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "¤¢¤Ê¤¿¤Î»þ´ÖÂӤϤɤì¤Ç¤¹¤«¡©" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "¥Ï¡¼¥É¥¦¥§¥¢¥¯¥í¥Ã¥¯¤Ï GMT ¤Ë¥»¥Ã¥È¤·¤Æ¤¢¤ê¤Þ¤¹¤«¡©" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "¥¥ã¥ó¥»¥ë" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "¥ê¥»¥Ã¥È" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake ¥³¥ó¥È¥í¡¼¥ë¥»¥ó¥¿¡¼" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Æɤ߹þ¤ßÃæ...¾¯¡¹¤ªÂÔ¤Á¤ò¡£" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "µ¯Æ°¥Ç¥£¥¹¥¯" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "µ¯Æ°ÀßÄê" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "¼«Æ°¥¤¥ó¥¹¥È¡¼¥ë" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "¥â¥Ë¥¿" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "²òÁüÅÙ" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "¥Ç¥£¥¹¥×¥ì¥¤" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "¥Ï¡¼¥É¥¦¥§¥¢°ìÍ÷" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "¥Þ¥¦¥¹" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "¥×¥ê¥ó¥¿" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "¥¹¥¥ã¥Ê" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "¥æ¡¼¥¶" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "¥¡¼¥Ü¡¼¥É" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "¥Ï¡¼¥É¥É¥é¥¤¥Ö" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS¥Þ¥¦¥ó¥È¥Ý¥¤¥ó¥È" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba¥Þ¥¦¥ó¥È¥Ý¥¤¥ó¥È" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV¥Þ¥¦¥ó¥È¥Ý¥¤¥ó¥È" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "¥Ñ¡¼¥Æ¥£¥·¥ç¥ó¤ò¶¦Í" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Àܳ" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Àܳ¤ò¶¦Í" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "¥×¥í¥¯¥·ÀßÄê" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "¥»¥¥å¥ê¥Æ¥£¥ì¥Ù¥ë" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "¥Õ¥¡¥¤¥¢¥¦¥©¡¼¥ë" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "¥á¥Ë¥å¡¼" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "¥µ¡¼¥Ó¥¹" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "¥Õ¥©¥ó¥È" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "ÆüÉդȻþ´Ö" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "¥í¥°" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "¥³¥ó¥½¡¼¥ë" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "¥½¥Õ¥È¤Î¥¤¥ó¥¹¥È¡¼¥ë" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "¥½¥Õ¥È¤Îºï½ü" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "¥½¥Õ¥È¥¦¥§¥¢¥½¡¼¥¹ ¥Þ¥Í¡¼¥¸¥ã" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS ¥¯¥é¥¤¥¢¥ó¥È" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "¥Ë¥å¡¼¥¹" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "¥×¥í¥¯¥·" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "¥µ¡¼¥Ð" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "»þ´Ö" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "¥¦¥§¥Ö" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "µ¯Æ°" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "¥Ï¡¼¥É¥¦¥§¥¢" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "¥Þ¥¦¥ó¥È¥Ý¥¤¥ó¥È" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD ¾Æ¤" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "¥Õ¥í¥Ã¥Ô¡¼" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "¥Í¥Ã¥È¥ï¡¼¥¯¤È ¥¤¥ó¥¿¡¼¥Í¥Ã¥È" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "¥»¥¥å¥ê¥Æ¥£" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "¥·¥¹¥Æ¥à" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "¥½¥Õ¥È¥¦¥§¥¢´ÉÍý" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "¥µ¡¼¥ÐÀßÄê" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake ¥³¥ó¥È¥í¡¼¥ë¥»¥ó¥¿¡¼ %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "¤¤¤Þ¤Î¥â¥¸¥å¡¼¥ë¤Ø¤ÎÊѹ¹¤ÏÊݸ¤µ¤ì¤Þ¤»¤ó¡£" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "¾¯¡¹¤ªÂÔ¤Á¤ò¡£" -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "¥¥ã¥ó¥»¥ë" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "" "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,-*-fixed-medium-r-" "normal--24-*-100-100-c-*-jisx0208.1983-0,*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Mandrake ¥³¥ó¥È¥í¡¼¥ë¥»¥ó¥¿¡¼¤Ø¤¤¤é¤Ã¤·¤ã¤¤¤Þ¤»¡Á" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "¼¡¤Î¥Õ¥¡¥¤¥ë¤òÆɤ߹þ¤ßÍѤ˳«¤±¤Þ¤»¤ó¡§ %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "¥·¥¹¥Æ¥à¡§" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "¥Û¥¹¥È̾¡§" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "¥«¡¼¥Í¥ë¥Ð¡¼¥¸¥ç¥ó¡§" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "¥Þ¥·¥ó¡§" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "¥Õ¥©¡¼¥¯¤Ç¤¤Þ¤»¤ó: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "ÊĤ¸¤ë" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "¥Æ¡¼¥Þ¤ò¤â¤Ã¤È" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "¿·¤·¤¤¥Æ¡¼¥Þ¼èÆÀÃæ" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "ÄɲäΥơ¼¥Þ" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "www.damz.net¤«¤éÄɲåơ¼¥Þ¤ò¼èÆÀ" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "¾ðÊó - Mandrake ¥³¥ó¥È¥í¡¼¥ë¥»¥ó¥¿" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Ãø¼Ô: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "ºî²è: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake ¥³¥ó¥È¥í¡¼¥ë¥»¥ó¥¿ %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "·Ù¹ð¡§¥Ö¥é¥¦¥¶¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "¥»¥¥å¥ê¥Æ¥£·Ù¹ð¡§¥¤¥ó¥¿¡¼¥Í¥Ã¥È¤Ë¤Ïroot¥æ¡¼¥¶¤À¤ÈÀܳ¤Ç¤¤Þ¤»¤ó" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/¥Õ¥¡¥¤¥ë(_F)" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/¥Õ¥¡¥¤¥ë(F)" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/½ªÎ»(_Q)" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/¥ª¥×¥·¥ç¥ó(_O)" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/¥ª¥×¥·¥ç¥ó(O)" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/¥Ç¥£¥¹¥×¥ì¥¤¥í¥°(_L)" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/¥ª¥×¥·¥ç¥ó(O)" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Ëä¤á¹þ¤ß¥â¡¼¥É(_E)" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/¥Æ¡¼¥Þ(_T)" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/¥Æ¡¼¥Þ(T)" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -433,67 +446,39 @@ msgstr "" "¤³¤ì¤ò¤ä¤ë¤È¥³¥ó¥È¥í¡¼¥ë¥»¥ó¥¿¤¬ºÆµ¯Æ°¤·¤Þ¤¹¡£\n" "ŬÍѤµ¤ì¤Æ¤¤¤Ê¤¤Êѹ¹¤Ï¼º¤ï¤ì¤Þ¤¹¡£" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/Äɲåơ¼¥Þ(_M)" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/¥Ø¥ë¥×(_H)" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/¥Ø¥ë¥×(H)" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/¥Ð¥°Êó¹ð(_R)" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/¾ðÊó(_A)..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/¥Ç¥£¥¹¥×¥ì¥¤¥í¥°(L)" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Ëä¤á¹þ¤ß¥â¡¼¥É(E)" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakeClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "»þ´ÖÂÓ" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "»þ´ÖÂÓ - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "¤¢¤Ê¤¿¤Î»þ´ÖÂӤϤɤì¤Ç¤¹¤«¡©" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "¥Ï¡¼¥É¥¦¥§¥¢¥¯¥í¥Ã¥¯¤Ï GMT ¤Ë¥»¥Ã¥È¤·¤Æ¤¢¤ê¤Þ¤¹¤«¡©" - -#: clock.pl:131 -msgid "Reset" -msgstr "¥ê¥»¥Ã¥È" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "¥á¥Ë¥å¡¼ÀßÄꥻ¥ó¥¿¡¼" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -503,30 +488,47 @@ msgstr "" "\n" "ÀßÄꤷ¤¿¤¤¥á¥Ë¥å¡¼¤òÁª¤Ó¤Þ¤·¤ç¤¦" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "¥·¥¹¥Æ¥à¥á¥Ë¥å¡¼" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "ÀßÄêÃæ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "¥æ¡¼¥¶¥á¥Ë¥å¡¼" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "´°Î»" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "°õºþÀßÄê" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "°õºþ¥·¥¹¥Æ¥àÀßÄê¤Ë¤Ï¤³¤³¤ò¥¯¥ê¥Ã¥¯" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: ¥¨¥é¡¼" + +#~ msgid "Quit" +#~ msgstr "½ªÎ»" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "ÀßÄê¥Õ¥¡¥¤¥ë¤òÆɤߤȤêÃæ¤Ë\n" +#~ "¥¨¥é¡¼" + +#~ msgid "Can't find any program\n" +#~ msgstr "¥×¥í¥°¥é¥à¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2000-05-17 00:19+0200\n" "Last-Translator: levan shoshiashvili <shoshia@hotmail.com>\n" "Language-Team: Georgian\n" @@ -18,515 +18,500 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: შეცდáƒáƒ›áƒ" +#: ../clock.pl_.c:47 +#, fuzzy +msgid "DrakClock" +msgstr "დრáƒáƒ™áƒ¡áƒáƒáƒ—ი" -#: placeholder.h:8 -msgid "Quit" -msgstr "დáƒáƒ›áƒ—áƒáƒ•áƒ ებáƒ" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "დრáƒáƒ˜áƒ¡ ზáƒáƒœáƒ" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"შეცდáƒáƒ›áƒ კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡\n" -"ფáƒáƒ˜áƒšáƒ˜áƒ¡ პრáƒáƒªáƒ”სირებისáƒáƒ¡" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "დრáƒáƒ˜áƒ¡ ზáƒáƒœáƒ-დრáƒáƒ™áƒ¡áƒáƒáƒ—ი" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "áƒáƒ იჩიეთ დრáƒáƒ˜áƒ¡ ზáƒáƒœáƒ" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "გრინვიჩის დრრ- დრáƒáƒ™áƒ¡áƒáƒáƒ—ი" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "თქვენის მáƒáƒœáƒ¥áƒáƒœáƒ˜áƒ¡ სáƒáƒáƒ—ი გრინვიჩზეáƒ" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "ვერვიპáƒáƒ•áƒœáƒ” რáƒáƒ˜áƒ›áƒ” პრáƒáƒ’რáƒáƒ›áƒ\n" +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "დიáƒáƒ®" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "გáƒáƒ£áƒ¥áƒ›áƒ”ბáƒ" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "შეცვლáƒ" -#: control-center:60 +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "მáƒáƒœáƒ“რეიკის სáƒáƒ™áƒáƒœáƒ¢áƒ áƒáƒšáƒ ცენტრი %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "იტვირთებáƒ. დáƒáƒ”ლáƒáƒ“ეთ.." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "ჩáƒáƒ›áƒ¢áƒ•áƒ˜áƒ თი დისკი" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "ჩáƒáƒ¢áƒ•áƒ˜áƒ თე კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "áƒáƒ£áƒ¢áƒ ინსტáƒáƒšáƒ˜áƒ ებáƒ" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "დისპლეი" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘áƒ" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 #, fuzzy msgid "Mouse" msgstr "მáƒáƒ£áƒ¡áƒ˜" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 #, fuzzy msgid "Printer" msgstr "ბეáƒáƒ“ვáƒ" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ ებელი: " -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 #, fuzzy msgid "Keyboard" msgstr "კლáƒáƒ•áƒ˜áƒáƒ¢áƒ£áƒ áƒ" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 #, fuzzy msgid "Hard Drives" msgstr "მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘áƒ" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 #, fuzzy msgid "Partition Sharing" msgstr "კáƒáƒ•áƒ¨áƒ˜áƒ ის გáƒáƒ–იáƒáƒ ებáƒ" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "კáƒáƒ•áƒ¨áƒ˜áƒ ი" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "კáƒáƒ•áƒ¨áƒ˜áƒ ის გáƒáƒ–იáƒáƒ ებáƒ" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘ირკáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "დáƒáƒªáƒ•áƒ˜áƒ¡ დáƒáƒœáƒ”" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "დáƒáƒªáƒ•áƒ˜áƒ¡ კედელი" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "მენიუ" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "სერვისი" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 #, fuzzy msgid "Fonts" msgstr " დრáƒáƒ™áƒ¤áƒáƒœáƒ¢áƒ˜" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "თáƒáƒ იღი დრდრáƒ" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "ლáƒáƒ’ები" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 #, fuzzy msgid "Console" msgstr "კáƒáƒœáƒ¡áƒáƒšáƒ˜" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "áƒáƒ£áƒ¢áƒ ინსტáƒáƒšáƒ˜áƒ ებáƒ" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/მáƒáƒœáƒ“რეიკ_ექსპერტი" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "პრáƒáƒ’რáƒáƒ›áƒ”ბის მენეჯერი" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "პრáƒáƒ¥áƒ¡áƒ˜" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "სერვისი" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "დრáƒáƒ˜áƒ¡ ზáƒáƒœáƒ" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "ჩáƒáƒ¢áƒ•áƒ˜áƒ თვáƒ" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘áƒ" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 #, fuzzy msgid "Floppy" msgstr "დრáƒáƒ™áƒ¤áƒšáƒáƒžáƒ˜" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 #, fuzzy msgid "Network & Internet" msgstr "ქსელები დრინტერნეტი" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "უსáƒáƒ¤áƒ თხáƒáƒ”ბáƒ" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "სისტემáƒ" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "პრáƒáƒ’რáƒáƒ›áƒ”ბის მენეჯერი" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘ირკáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "მáƒáƒœáƒ“რეიკის სáƒáƒ™áƒáƒœáƒ¢áƒ áƒáƒšáƒ ცენტრი %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 #, fuzzy msgid "Please wait..." msgstr "იტვირთებáƒ. დáƒáƒ”ლáƒáƒ“ეთ.." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "გáƒáƒ£áƒ¥áƒ›áƒ”ბáƒ" - # there is only one font with georgian glyphs... -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-clearlyu-*-r-normal--17-*-100-100-p-*-iso10646-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 #, fuzzy msgid "Welcome to the Mandrake Control Center" msgstr "მáƒáƒœáƒ“რეიკის სáƒáƒ™áƒáƒœáƒ¢áƒ áƒáƒšáƒ ცენტრი" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ვერგáƒáƒ•áƒ®áƒ¡áƒ”ნი ფáƒáƒ˜áƒšáƒ˜ წáƒáƒ¡áƒáƒ™áƒ˜áƒ—ხáƒáƒ“: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "სისტემáƒ:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "ჰáƒáƒ¡áƒ¢áƒ˜áƒ¡ სáƒáƒ®áƒ”ლი:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "გულის ვერსიáƒ:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "მáƒáƒœáƒ¥áƒáƒœáƒ:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ვერვნáƒáƒ®áƒ”: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "დიáƒáƒ®" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "დáƒáƒ®áƒ£áƒ ვáƒ" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "შესáƒáƒ®áƒ”ბ - მáƒáƒœáƒ“რეიკის სáƒáƒ™áƒáƒœáƒ¢áƒ áƒáƒšáƒ ცენტრი" -#: control-center:733 +#: ../control-center_.c:736 #, fuzzy msgid "Author: " msgstr "áƒáƒ•áƒ¢áƒáƒ ები: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "áƒáƒ•áƒ¢áƒáƒ ები: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "მáƒáƒœáƒ“რეიკის სáƒáƒ™áƒáƒœáƒ¢áƒ áƒáƒšáƒ ცენტრი %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "(C) 2001 Mandrakesoft SA " -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "გáƒáƒ¤áƒ თხილებáƒ: ბრáƒáƒ£áƒ–ერი áƒáƒ áƒáƒ’ირჩევიáƒáƒ—" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "გáƒáƒ¤áƒ თხილებáƒ: უსიშრáƒáƒ”ბის გáƒáƒ›áƒ áƒáƒ მáƒáƒ¥áƒ•áƒ¡ უფლებრდáƒáƒ•áƒ£áƒ™áƒáƒ•áƒ¡áƒ˜áƒ დე ქსელს რáƒáƒ’áƒáƒ ც " "სუპერმáƒáƒ›áƒ®áƒ›áƒáƒ ებელი" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_ფáƒáƒ˜áƒšáƒ˜" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/ფáƒáƒ˜áƒšáƒ˜" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_დáƒáƒ›áƒ—áƒáƒ•áƒ ებáƒ" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>დ" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_თვისებები" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/თვისებები" - -#: control-center:791 +#: ../control-center_.c:794 #, fuzzy msgid "/Display _Logs" msgstr "დისპლეი" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/თვისებები" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_დáƒáƒ®áƒ›áƒáƒ ებáƒ" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/დáƒáƒ®áƒ›áƒáƒ ებáƒ" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_ხáƒáƒ ვეზის შეტყáƒáƒ‘ინებáƒ" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_შესáƒáƒ®áƒ”ბ..." -#: control-center:825 +#: ../control-center_.c:828 #, fuzzy msgid "/Display Logs" msgstr "დისპლეი" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -#, fuzzy -msgid "DrakClock" -msgstr "დრáƒáƒ™áƒ¡áƒáƒáƒ—ი" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "დრáƒáƒ˜áƒ¡ ზáƒáƒœáƒ" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "დრáƒáƒ˜áƒ¡ ზáƒáƒœáƒ-დრáƒáƒ™áƒ¡áƒáƒáƒ—ი" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "áƒáƒ იჩიეთ დრáƒáƒ˜áƒ¡ ზáƒáƒœáƒ" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "გრინვიჩის დრრ- დრáƒáƒ™áƒ¡áƒáƒáƒ—ი" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "თქვენის მáƒáƒœáƒ¥áƒáƒœáƒ˜áƒ¡ სáƒáƒáƒ—ი გრინვიჩზეáƒ" - -#: clock.pl:131 -msgid "Reset" -msgstr "შეცვლáƒ" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 #, fuzzy msgid "Menu Configuration Center" msgstr "მენიუ კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ: " -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -536,33 +521,50 @@ msgstr "" "\n" "რáƒáƒ›áƒ”ლი მენიუს კáƒáƒœáƒ¤áƒ˜áƒ’ურირებრგსურთ" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 #, fuzzy msgid "System menu" msgstr "სისტემáƒ: " -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ.." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 #, fuzzy msgid "User menu" msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ ებელი: " -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "მáƒáƒ ჩáƒ" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 #, fuzzy msgid "Printing configuration" msgstr "მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘ირკáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: შეცდáƒáƒ›áƒ" + +#~ msgid "Quit" +#~ msgstr "დáƒáƒ›áƒ—áƒáƒ•áƒ ებáƒ" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "შეცდáƒáƒ›áƒ კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡\n" +#~ "ფáƒáƒ˜áƒšáƒ˜áƒ¡ პრáƒáƒªáƒ”სირებისáƒáƒ¡" + +#~ msgid "Can't find any program\n" +#~ msgstr "ვერვიპáƒáƒ•áƒœáƒ” რáƒáƒ˜áƒ›áƒ” პრáƒáƒ’რáƒáƒ›áƒ\n" + #, fuzzy #~ msgid "logdrake" #~ msgstr "ლáƒáƒ’დრეიკი" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-25 14:34+0900\n" "Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n" "Language-Team: Korean <baedaron@hanafos.com>\n" @@ -14,418 +14,431 @@ msgstr "" "Content-Type: text/plain; charset=euc-kr\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "µå·¹ÀÌÅ©¼³Á¤: ¿À·ù" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "µå·¹ÀÌÅ©½Ã°è" -#: placeholder.h:8 -msgid "Quit" -msgstr "Á¾·á" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Áö¿ª ½Ã°£´ë" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"¼³Á¤ ÆÄÀÏÀ» ºÐ¼®ÇÏ´Â µµÁß\n" -"¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "½Ã°£´ë - µå·¹ÀÌÅ©½Ã°è" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "´ÔÀÇ ½Ã°£´ë´Â ¾îµðÀԴϱî?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - µå·¹ÀÌÅ©½Ã°è" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Çϵå¿þ¾î ½Ã°£ÀÌ GMT¿¡ ¸ÂÃçÁ® ÀÖ½À´Ï±î?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "È®ÀÎ" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "¾î¶² ÇÁ·Î±×·¥µµ ãÀ» ¼ö ¾ø½À´Ï´Ù\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Ãë¼Ò" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "ÃʱâÈ" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "¸Çµå·¹ÀÌÅ© Á¦¾î ¼¾ÅÍ" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Àд Áß, ±â´Ù·Á ÁÖ¼¼¿ä." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "ºÎÆ® µð½ºÅ©" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "ºÎÆ® ¼³Á¤" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "ÀÚµ¿ ¼³Ä¡" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "¸ð´ÏÅÍ" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "ÇØ»óµµ" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "µð½ºÇ÷¹ÀÌ" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Çϵå¿þ¾î ¸ñ·Ï" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "¸¶¿ì½º" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "ÇÁ¸°ÅÍ" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "½ºÄ³³Ê" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "»ç¿ëÀÚµé" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Å°º¸µå" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Çϵåµð½ºÅ©" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS ¸¶¿îÆ® À§Ä¡" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "»ï¹Ù ¸¶¿îÆ® À§Ä¡" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV ¸¶¿îÆ® À§Ä¡" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "ÆÄƼ¼Ç °øÀ¯" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "¿¬°á" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "¿¬°á °øÀ¯" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "ÇÁ¶ô½Ã ¼³Á¤" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "º¸¾È µî±Þ" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "ÇÁ·Î±×·¥ ÀÏÁ¤" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "¹æȺ®" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "¹é¾÷" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "¸Þ´º" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "¼ºñ½º" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "ÆùÆ®" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "³¯Â¥¿Í ½Ã°£" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "·Î±×" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "ÄܼÖ" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "¼ÒÇÁÆ®¿þ¾î ¼³Ä¡" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "¼ÒÇÁÆ®¿þ¾î Á¦°Å" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "¸Çµå·¹ÀÌÅ© ¾÷µ¥ÀÌÆ®" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "¼ÒÇÁÆ®¿þ¾î ¼Ò½º °ü¸®ÀÚ" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS Ŭ¶óÀ̾ðÆ®" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "´º½º" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Æ÷½ºÆ®ÇȽº" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "ÇÁ¶ô½Ã" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "»ï¹Ù" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "¼¹ö" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "½Ã°£" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "À¥" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "ºÎÆ®" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Çϵå¿þ¾î" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "¸¶¿îÆ® À§Ä¡" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD ±¸ÀÌ" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Ç÷ÎÇÇ" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "¤" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "³×Æ®¿÷°ú ÀÎÅͳÝ" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "º¸¾È" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "½Ã½ºÅÛ" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "¼ÒÇÁÆ®¿þ¾î °ü¸®" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "¼¹ö ¼³Á¤" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "¸Çµå·¹ÀÌÅ© Á¦¾î ¼¾ÅÍ %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "ÇöÀç ¸ðµâÀÇ ¼³Á¤Àº ÀúÀåµÇÁö ¾ÊÀ» °ÍÀÔ´Ï´Ù." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "±â´Ù·Á ÁÖ¼¼¿ä..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Ãë¼Ò" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "" "-*-helvetica-medium-r-normal-*-20-*-75-75-p-*-iso8859-1,-*-gulim-medium-r-" "normal--20-*-75-75-*-*-ksc5601.1987-0,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "¸Çµå·¹ÀÌÅ© Á¦¾î ¼¾ÅÍ¿¡ Àß ¿À¼Ì½À´Ï´Ù." -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ÀÌ ÆÄÀÏÀ» ÀÐÀ» ¼ö ¾ø½À´Ï´Ù: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "½Ã½ºÅÛ:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "È£½ºÆ®¸í:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Ä¿³Î ¹öÀü:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "±â°è:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ºÐ±âÇÒ ¼ö ¾ø½À´Ï´Ù: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "È®ÀÎ" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "´Ý±â" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Ãß°¡ Å׸¶" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "»õ Å׸¶ ã´Â Áß" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Ãß°¡ Å׸¶" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "www.damz.net¿¡¼ Ãß°¡ Å׸¶ ã±â" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "ÀÌ ÇÁ·Î±×·¥Àº - ¸Çµå·¹ÀÌÅ© ÄÁÆ®·Ñ ¼¾ÅÍ" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Á¦ÀÛÀÚ: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "¿¹¼ú°¡: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "¸Çµå·¹ÀÌÅ© Á¦¾î ¼¾ÅÍ %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "°æ°í: ¾î¶² Ž»ö±âµµ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù." -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "º¸¾È °æ°í: ·çÆ® ±ÇÇÑÀ¸·Î ÀÎÅͳݿ¡ Á¢¼ÓÇÏ´Â °ÍÀÌ Çã°¡µÇÁö ¾Ê¾Ò½À´Ï´Ù." -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/ÆÄÀÏ(_F)" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/ÆÄÀÏ(F)" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/Á¾·á(_Q)" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/¿É¼Ç(_O)" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/¿É¼Ç(O)" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/µð½ºÇ÷¹ÀÌ ·Î±×(_L)" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/¿É¼Ç(O)" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/ÀÓº£µðµå ¸ðµå(_E)" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/Å׸¶(_T)" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Å׸¶(T)" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -433,67 +446,39 @@ msgstr "" "Á¦¾î¼¾Å͸¦ Àç½ÃÀÛÇØ¾ß ÇÕ´Ï´Ù.\n" "Àû¿ëµÇÁö ¾ÊÀº º¯°æ»çÇ×Àº ¹ö·ÁÁý´Ï´Ù." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/Ãß°¡ Å׸¶(_M)" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/µµ¿ò¸»(_H)" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/µµ¿ò¸»(H)" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/¹ö±× º¸°í(_R)" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/ÀÌ ÇÁ·Î±×·¥Àº(_A)..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/µð½ºÇ÷¹ÀÌ ·Î±×(L)" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/ÀÓº£µðµå ¸ðµå(E)" -#: clock.pl:47 -msgid "DrakClock" -msgstr "µå·¹ÀÌÅ©½Ã°è" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Áö¿ª ½Ã°£´ë" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "½Ã°£´ë - µå·¹ÀÌÅ©½Ã°è" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "´ÔÀÇ ½Ã°£´ë´Â ¾îµðÀԴϱî?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - µå·¹ÀÌÅ©½Ã°è" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Çϵå¿þ¾î ½Ã°£ÀÌ GMT¿¡ ¸ÂÃçÁ® ÀÖ½À´Ï±î?" - -#: clock.pl:131 -msgid "Reset" -msgstr "ÃʱâÈ" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "¸Þ´º ¼³Á¤ ¼¾ÅÍ" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -503,26 +488,43 @@ msgstr "" "\n" "¾î¶² ¸Þ´º¸¦ ¼³Á¤ÇÒÁö ¼±ÅÃÇϼ¼¿ä." -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "½Ã½ºÅÛ ¸Þ´º" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "¼³Á¤..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "»ç¿ëÀÚ ¸Þ´º" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "¿Ï·á" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Àμ⠼³Á¤" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Àμ⠽ýºÅÛÀ» ¼³Á¤ÇÏ·Á¸é, ¿©±â¸¦ ´©¸£¼¼¿ä." + +#~ msgid "DrakConf: error" +#~ msgstr "µå·¹ÀÌÅ©¼³Á¤: ¿À·ù" + +#~ msgid "Quit" +#~ msgstr "Á¾·á" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "¼³Á¤ ÆÄÀÏÀ» ºÐ¼®ÇÏ´Â µµÁß\n" +#~ "¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù." + +#~ msgid "Can't find any program\n" +#~ msgstr "¾î¶² ÇÁ·Î±×·¥µµ ãÀ» ¼ö ¾ø½À´Ï´Ù\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-02-16 15:59+0200\n" "Last-Translator: Gediminas Paulauskas <menesis@delfi.lt>\n" "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n" @@ -14,499 +14,484 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-13\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: klaida" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Iðeiti" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Laiko juosta" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Klaida nagrinëjant\n" -"konfigûracijos bylà." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Laiko juosta - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Negaliu rasti jokios programos\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Kokia tavo laiko juosta?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Ar tavo árangos laikrodis nustatytas GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Gerai" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Nutraukti" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Atstatyti" + +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "/_Mandrake Kontrolës Centras" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Praðome palaukti..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Ákrovos diskelis" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Ákrovos konfiguracija" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automatinis ádiegimas" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Displëjus" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Geleþis" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Pelë" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Spausdintuvas" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "Vartotojas: " -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Klaviatûra" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Kietieji diskai" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS prijungimo taðkai" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba prijungimo taðkai" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV prijungimo taðkai" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 #, fuzzy msgid "Partition Sharing" msgstr "Prisijungimo dalinimasis" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Jungimasis" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Prisijungimo dalinimasis" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "Paðto/SMS perspëjimø konfigûravimas" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Saugumo lygis" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Ugniasienës" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Meniu" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Tarnybos" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Ðriftai" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data & Laikas" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logai" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsolë" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Automatinis ádiegimas" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Programinës árangos tvarkyklë" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "Serveriai" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "Laiko juosta" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Ákrova" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Geleþis" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Prijungimo taðkai" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 #, fuzzy msgid "Floppy" msgstr "DrakFloppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Tinklas & nternetas" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Saugumas" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistema" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Programinës árangos tvarkyklë" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "Paðto/SMS perspëjimø konfigûravimas" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake valdymo centras %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Praðome palaukti..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Nutraukti" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-13,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Sveiki atvykæ á Mandrake valdymo centrà" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "negaliu atidaryti bylos skaitymui: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistema: " -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Kompiuterio vardas:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kernelio versija:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Kompiuteris:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "negaliu ðakotis: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Gerai" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Uþdaryti" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Apie - Mandrake valdymo centras" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autorius: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Autorius: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake valdymo centras %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright © 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Áspëjimas: nenurodyta jokia narðyklë" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Saugumo áspëjimas: man neleista prisijungti prie interneto kaip root " "vartotoju" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Byla" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Byla" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/I_ðeiti" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/Nu_ostatos" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Nuostatos" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Rodyti _logus" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Nuostatos" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Pagalba" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Pagalba" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Raportuoti Klaidà" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Apie..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Rodyti logus" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Laiko juosta" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Laiko juosta - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Kokia tavo laiko juosta?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Ar tavo árangos laikrodis nustatytas GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Atstatyti" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Meniu konfigûravimo centras" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -515,31 +500,48 @@ msgstr "" "\n" "Pasirink, kurá meniu nori konfigûruoti" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sistemos meniu" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfigûruoti..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Vartotojo Meniu" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Atlikta" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 #, fuzzy msgid "Printing configuration" msgstr "Paðto/SMS perspëjimø konfigûravimas" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: klaida" + +#~ msgid "Quit" +#~ msgstr "Iðeiti" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Klaida nagrinëjant\n" +#~ "konfigûracijos bylà." + +#~ msgid "Can't find any program\n" +#~ msgstr "Negaliu rasti jokios programos\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-11 22:08+0200\n" "Last-Translator: Vitauts Stoèka <vit@dau.lv>\n" "Language-Team: Latvian <cooker-i18n@linux-mandrake.com>\n" @@ -14,421 +14,434 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-13\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: kïûda" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Iziet" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Laika josla" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Kïûda analizçjot\n" -"konfigurâcijas failu." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Laika josla - DrakConf" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Nevar atrast nevienu programmu\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Kâda ir jûsu laika josla?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakConf" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Vai dzelþu pulkstenî uzstâdîts GMT laiks?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Labi" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Atcelt" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Atgriezt" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake vadîbas centrs" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Ielâdçju... Lûdzu, uzgaidiet" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Sâknçðanas disks" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Sâknçðanas konfigurâcija" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automâtiska instalçðana" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Parâdît" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Dzelþu saraksts" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Pele" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Printeris" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skaneris" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Lietotâji" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastatûra" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Cietie diski" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS montçðanas punkti" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba montçðanas punkti" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV montçðanas punkti" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Sadaïu koplietoðana" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Pieslçgums" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Pieslçguma koplietoðana" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Proxy konfigurâcija" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Droðîbas lîmenis" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Izvçlnes" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servisi" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fonti" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datums & laiks" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Þurnâli" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsole" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Automâtiskâ uzstâdîðana" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/Mandrake_Expert" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Programmatûras vadîba" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS klients" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Jaunumi" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Serveris" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Laiks" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "WWW" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Sâknçðana" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Dzelþi" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Montçðanas punkti" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD rakstîtâjs" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Diskete" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Tîkls & Internets" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Droðîba" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistçma" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Programmatûras vadîba" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Servera konfigurâcija" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake vadîbas centrs %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Ðajâ modulî veiktâs izmainâs netiks saglabâtas." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Lûdzu, uzgaidiet..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Atcelt" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Laipni lûdzam Mandrake vadîbas centrâ" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "nevar atvçrt lasîðanai ðo failu: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistçma:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Resursa vârds:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kodola versija:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Dators:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "nevar sadalît: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Labi" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Aizvçrt" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Vçl vairâk tçmu" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Jaunu tçmu saòemðana" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Papildus tçmas" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Saòemt papildus tçmas no www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Par - Mandrake vadîbas centrs" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autors: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Mâkslinieks: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake vadîbas centrs %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Autortiesîbas (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Brîdinâjums: Nav norâdîts pârlûks" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Droðîbas brîdinâjums: Nav atïauts pieslçgties internetam kâ root lietotâjam" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fails" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fails" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Iziet" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opcijas" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opcijas" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Râdît Þ_urnâlus" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opcijas" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Iekïautais reþîms" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Tçmas" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Tçmas" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -436,67 +449,39 @@ msgstr "" "Ðî darbîba pârstartçs vadîbas centru.\n" "Jebkuras nepielietotâs izmaiòas tiks pazaudçtas." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Papildus tçmas" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Palîdzîba" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Palîdzîba" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Ziòot kïûdu" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Par..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Râdît Þurnâlus" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Iekïautais reþîms" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Laika josla" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Laika josla - DrakConf" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Kâda ir jûsu laika josla?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakConf" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Vai dzelþu pulkstenî uzstâdîts GMT laiks?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Atgriezt" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Izvçlòu konfigurçðanas centrs" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -506,30 +491,47 @@ msgstr "" "\n" "Izvçlieties, kuru izvçlni konfigurçt" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sistçmas izvçlne" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfigurçt..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Lietotâja izvçlne" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Gatavs" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Drukas konfigurâcija" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Uzklikðíiniet ðeit, lai konfigurçtu drukas sistçmu" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: kïûda" + +#~ msgid "Quit" +#~ msgstr "Iziet" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Kïûda analizçjot\n" +#~ "konfigurâcijas failu." + +#~ msgid "Can't find any program\n" +#~ msgstr "Nevar atrast nevienu programmu\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.90\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-03-06 09:51+0800\n" "Last-Translator: Yuzz <yuzz@emasonline.com>\n" "Language-Team: Malaysia <yuzz@emasonline.com>\n" @@ -14,421 +14,436 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: ralat" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" + +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Zona Masa" -#: placeholder.h:8 -msgid "Quit" -msgstr "Keluar" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Zona masa - DrakClock" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "Ralat semasa analisa fail konfigurasi." +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Pilih zona masa Anda" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Apakah jam perkakasan Anda merujuk GMT?" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Program tidak dijmpai\n" +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Batal" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reset" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Pusat Kawalan Mandrake" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Tunggu..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Cakera Boot" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Konfigurasi Boot" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Instal automatik" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Paparan" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Senarai Perkakasan" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Tetikus" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Pencetak" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Pengimbas" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "User" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Papan Kekunci" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Cakera Keras" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Titik mount NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Titik Mount Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Titik Mount WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Pembahagian Bersama" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Perhubungan" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Perhubungan Bersama" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "Konfigurasi Server" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Level Keselamatan" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Tembok api" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menu" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servis" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Font" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Tarikh & Waktu" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Log" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsol" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Instal automatik" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 #, fuzzy msgid "Remove Software" msgstr "Tambah / Hapus Perisian" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Pengurus Software" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Pelanggan DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Berita" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proksi" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Masa" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Boot" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Perkakasan" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Titik Mount" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD Burner" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Pemacu" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Rangkaian & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Keselamatan" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistem" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Pengurus Software" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Konfigurasi Server" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Pusat Kawalan Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Modifikasi yang berlaku pada modul semasa tidak akan disimpan" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Tunggu..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Batal" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Selamat Datang ke Pusat Kawalan Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "fail tidak boleh dibuka utk dibaca: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nama hos:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Versi Kernel:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Mesin:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "gagal mencabang: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Tutup" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Keterangan - Pusat Kawalan Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Pengarang: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Pengarang: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Pusat Kawalan Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Hak Cipta (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Peringatan: pelayar tidak dispesifikasikan" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "Peringatan Keselamatan: Perhubungan internet sbg root tidak dibenarkan" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fail" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fail" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Keluar" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Pilihan" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Pilihan" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Paparan _Log" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Pilihan" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Mod Cangkok" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Tema" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Tema" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -436,68 +451,40 @@ msgstr "" "Aksi ini akan mula semula kawalan pusat.\n" "Sebarang perubahan yang tidak diaplikasikan akan hilang." -#: control-center:813 +#: ../control-center_.c:816 #, fuzzy msgid "/_More themes" msgstr "/_Tema" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Bantuan" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Bantuan" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Keterangan" -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Paparan Log" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Mod Cangkok" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Zona Masa" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Zona masa - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Pilih zona masa Anda" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Apakah jam perkakasan Anda merujuk GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reset" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Pusat Konfigurasi Menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -507,30 +494,45 @@ msgstr "" "\n" "Pilih menu yg hendak dikonfigurasi" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu Sistem" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfigurasikan ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu user" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Selesai" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Konfigurasi pencetak" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Klik di sini utk konfigurasi sistem pencetak" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: ralat" + +#~ msgid "Quit" +#~ msgstr "Keluar" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "Ralat semasa analisa fail konfigurasi." + +#~ msgid "Can't find any program\n" +#~ msgstr "Program tidak dijmpai\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-17 18:21+0200\n" "Last-Translator: Ramon Casha <ramon.casha@linux.org.mt>\n" "Language-Team: Maltese <mt@li.org>\n" @@ -14,421 +14,434 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: problema" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "OħroÄ¡" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Å»ona orarja" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Problema waqt l-analiżi\n" -"tal-fajl \"config\"." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Å»ona orarja - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Ma stajt insib ebda programm\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Liem hi ż-żona orarja tiegħek?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "L-arloÄ¡Ä¡ fiżiku tas-sistema huwa ssettjat GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "IkkanÄ‹ella" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Irrisettja" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "ÄŠentru tal-Kontroll Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Tiela'... stenna ftit" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Diska \"boot\"" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Konfurazzjoni tal-bidu" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Awto-installazzjoni" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitur" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Reżoluzzjoni" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Skrin" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Lista ta' apparat" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Maws" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Printer" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skaner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Users" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastiera" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Diski interni" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Punti ta' mmuntar NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Punti ta' mmuntar Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Punti ta' mmuntar WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Qsim ta' partizzjonijiet" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Konnessjoni" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Qsim ta' konnessjoni" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Konfigurazzjoni proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Livell ta' sigurtà " -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Firewall" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menus" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servizzi" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fonts" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data u ħin" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logs" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsol" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Installa softwer" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Neħħi softwer" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "AÄ¡Ä¡ornament Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "ManiÄ¡Ä¡jar ta' sorsi ta' softwer" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "Kards TV" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Klijent DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Newsgroups" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Ħin" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Boot" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Apparat" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Punti ta' mmuntar" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Kittieb tas-CDs" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Å»ip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Network u Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sigurtà " -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistema" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "ManiÄ¡Ä¡jar ta' softwer" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Konfigurazzjoni tas-server" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "ÄŠentru tal-Kontroll Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Il-bidliet li għamilt fil-modulu attwali mhux se jinkitbu." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Jekk jogħġbok stenna ftit..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "IkkanÄ‹ella" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "" "-*-arial-medium-r-normal-*-20-*-*-*-p-*-iso8859-3,-*-lucidux sans-medium-r-" "normal-*-20-*-*-*-p-*-iso8859-3,-mdk-helvetica-medium-r-normal-*-*-*-*-*-p-*-" "iso8859-3,*-r-*-iso8859-3,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Merħba għaÄ‹-ÄŠentru tal-Kontroll Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "dan il-fajl ma jistax jinfetaħ għall-qari: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistema:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Isem tal-kompjuter:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Verżjoni kernel:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Magna:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ma setax jinħoloq proÄ‹ess: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Agħlaq" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Iżjed temi" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Biex tikseb temi Ä¡odda" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Temi oħra" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Ikseb temi oħra minn www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Dwar - ÄŠentru tal-Kontroll Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Awtur: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Xogħol artistiku: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "ÄŠentru tal-Kontroll Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Twissija: Ebda browser speÄ‹ifikat" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Twissija tas-sigurtà : M'inix permess naqbad mal-internet bħala user root." -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fajl" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fajl" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_OħroÄ¡" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/Għa_żliet" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Għażliet" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Uri _logs" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Għażliet" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Modalità _integrata" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temi" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temi" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -436,67 +449,39 @@ msgstr "" "Din l-azzjoni se tirristartja Ä‹-Ä‹entru tal-kontroll.\n" "Il-bidliet li ma Ä¡ewx applikati jintilfu." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Iżjed Temi" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Għajnuna" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Għajnuna" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/I_rrapporta bug" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Dwar..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Uri logs" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Modalità integrata" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Å»ona orarja" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Å»ona orarja - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Liem hi ż-żona orarja tiegħek?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "L-arloÄ¡Ä¡ fiżiku tas-sistema huwa ssettjat GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Irrisettja" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "ÄŠentru tal-konfigurazzjoni tal-menus" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -506,30 +491,47 @@ msgstr "" "\n" "Agħżel liema menu trid tissettja" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu tas-sistema" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Ikkonfigura..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu tal-user" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Lest" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Konfigurazzjoni tal-ipprintjar" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Ikklikkja hawn biex tikkonfigura s-sistema tal-ipprintjar" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: problema" + +#~ msgid "Quit" +#~ msgstr "OħroÄ¡" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Problema waqt l-analiżi\n" +#~ "tal-fajl \"config\"." + +#~ msgid "Can't find any program\n" +#~ msgstr "Ma stajt insib ebda programm\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -696,9 +698,6 @@ msgstr "Ikklikkja hawn biex tikkonfigura s-sistema tal-ipprintjar" #~ msgid "Save as.." #~ msgstr "Ikteb b'isem Ä¡did..." -#~ msgid "TV Cards" -#~ msgstr "Kards TV" - #~ msgid "Click here to install standard themes:" #~ msgstr "Klikkja hawn biex tinstalla temi standard:" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-12 16:56+0200\n" "Last-Translator: Jeroen ten Berge <j.ten.berge@twinbit.nl>\n" "Language-Team: (nl) Dutch team\n" @@ -17,420 +17,433 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: fout" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Beëindigen" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Tijdzone" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Fout bij het inlezen\n" -"van het configuratiebestand." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Tijdzone - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Kan geen enkel programma vinden\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Wat is uw tijdzone?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Is uw hardware-klok ingesteld op GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Annuleren" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Herstellen" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Configuratiecentrum" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Bezig met laden... even geduld" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Opstartdiskette" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Opstartconfiguratie" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Auto-installatie" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Resolutie" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Beeldscherm" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Hardwarelijst" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Muis" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Printer" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Scanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Gebruikers" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Toetsenbord" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Harde schijven" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS koppelpunten" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba koppelpunten" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV koppelpunten" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partities delen" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Verbinding" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Verbinding delen" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Proxy-configuratie" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Veiligheidsniveau" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menu's" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Diensten" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Lettertypes" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datum & Tijd" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logs" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Console" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Installeren Software" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Verwijderen Software" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Vernieuwen" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Software Bron Beheer" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "TV-kaarten" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS Cliënt" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Nieuws" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Tijd" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Opstarten" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Koppelpunten" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD-brander" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Diskette" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Netwerk & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Veiligheid" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Systeem" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Software Beheer" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Serverconfiguratie" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake Configuratiecentrum %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" "De wijzigingen aangebracht in de huidige module zullen niet opgeslagen " "worden." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Even geduld..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Annuleren" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Welkom bij het Mandrake Configuratiecentrum" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "kan dit bestand niet inlezen: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Systeem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Hostnaam:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kernel-versie:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Computer:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "kon geen nieuw proces beginnen: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Sluiten" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Meer thema's" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Bezig met ophalen van nieuwe thema's" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Aanvullende thema's" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Haal extra thema's van www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Info - Mandrake Configuratiecentrum" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Auteur: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Grafisch werk: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Configuratiecentrum %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Waarschuwing: geen browser opgegeven" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Veiligheidswaarschuwing: het is niet toegestaan verbinding te maken met het " "internet als root-gebruiker" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Bestand" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Bestand" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Beëindigen" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opties" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opties" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Toon _Logs" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opties" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Ingebedde modus" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Thema's" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Thema's" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -438,67 +451,39 @@ msgstr "" "Dit zal het configuratiecentrum opnieuw starten.\n" "Alle wijzigen die niet zijn opgeslagen gaan verloren." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Meer thema's" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Help" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Help" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Rapporteer Bug" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Info..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Toon Logs" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Ingebedde modus" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Tijdzone" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Tijdzone - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Wat is uw tijdzone?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Is uw hardware-klok ingesteld op GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Herstellen" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menu-configuratiecentrum" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -508,30 +493,47 @@ msgstr "" "\n" "Kies welk menu u wenst te configureren" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Systeemmenu" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Configureren..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Gebruikersmenu" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Klaar" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Printerconfiguratie" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Klik hier om het printsysteem te configureren" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: fout" + +#~ msgid "Quit" +#~ msgstr "Beëindigen" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Fout bij het inlezen\n" +#~ "van het configuratiebestand." + +#~ msgid "Can't find any program\n" +#~ msgstr "Kan geen enkel programma vinden\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -701,8 +703,5 @@ msgstr "Klik hier om het printsysteem te configureren" #~ msgid "Save as.." #~ msgstr "Opslaan als..." -#~ msgid "TV Cards" -#~ msgstr "TV-kaarten" - #~ msgid "Click here to install standard themes:" #~ msgstr "Klik hier om de standaard-thema's te installeren:" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-03-09 14:22GMT\n" "Last-Translator: Terje Bjerkelia <terje@bjerkelia.com>\n" "Language-Team: Norsk\n" @@ -15,416 +15,429 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: feil" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Avslutt" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Tidssone" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Feil ved spalting av\n" -"config fil." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Tidssone - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Kan ikke finne noen program\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Hva er din tidssone?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Er maskinvareklokken din satt til GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Avbryt" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Start på nytt" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake kontrollsenter" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Laster... Vennligst vent" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Oppstartsdiskett" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Oppstartskonfigurasjon" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automatisk installasjon" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Oppløsning" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Visning" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Maskinvareliste" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mus" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Skriver" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Brukere" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastatur" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Harddisker" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS-monteringspunkter" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba-monteringspunkter" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV-monteringspunkter" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Deling partisjon" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Tilkobling" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Deling tilkobling" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Proxy-konfigurasjon" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Sikkerhetsnivå" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Brannmur" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menyer" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Tjenester" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fonter" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Dato og tid" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logger" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsoll" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Installer programvare" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Fjern programvare" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Programvare kildehåndterer" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "TV-kort" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS-klient" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Nyheter" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Tjener" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Tid" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Oppstart" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Maskinvare" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Monteringspunkter" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD-brenner" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Diskett" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Nettverk & Internett" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sikkerhet" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "System" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Programvarehåndtering" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Konfigurasjon tjener" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake kontrollsenter %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Modifiseringene som blir gjort i nåværende modul vil ikke bli lagret." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Vennligst vent..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Avbryt" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Velkommen til Mandrake kontrollsenter" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "kan ikke åpne denne filen for lesing: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "System:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Vertsnavn:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kjerneversjon:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Maskin:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "kan ikke dele: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Lukk" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Flere temaer" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Få tak i nye temaer" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Flere temaer" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Få tak i flere temaer på www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Om - Mandrake kontrollsenter" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Opphavsperson: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Artwork: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake kontrollsenter %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Advarsel: Ingen leser er spesifisert" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "Sikkerhetsadvarsel: Jeg kan ikke koble til Internett som bruker root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fil" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fil" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Avslutt" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>A" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Valg" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Valg" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Vis _logger" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Valg" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Embedded Mode" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temaer" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temaer" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -432,67 +445,39 @@ msgstr "" "Denne handlingen vil starte kontrollsenteret på nytt.\n" "Endringer som ikke er lagret vil gå tapt." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Flere temaer" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Hjelp" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Hjelp" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Rapporter feil" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Om..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Vis logger" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Embedded Mode" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Tidssone" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Tidssone - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Hva er din tidssone?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Er maskinvareklokken din satt til GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Start på nytt" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menykonfigurasjon" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -502,30 +487,47 @@ msgstr "" "\n" "Velg hvilken meny du ønsker å konfigurere" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Systemmeny" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfigurer..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Brukermeny" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Ferdig" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Utskriftskonfigurasjon" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Klikk her for å konfigurere utskriftssystemet" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: feil" + +#~ msgid "Quit" +#~ msgstr "Avslutt" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Feil ved spalting av\n" +#~ "config fil." + +#~ msgid "Can't find any program\n" +#~ msgstr "Kan ikke finne noen program\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -688,9 +690,6 @@ msgstr "Klikk her for å konfigurere utskriftssystemet" #~ msgid "Save as.." #~ msgstr "Lagre Som..." -#~ msgid "TV Cards" -#~ msgstr "TV-kort" - #~ msgid "Click here to install standard themes:" #~ msgstr "Klikk her for å installere standardtemaer:" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: control-center\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2001-08-06 15:43+0100\n" "Last-Translator: Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>\n" "Language-Team: Polish <pl@li.org>\n" @@ -15,417 +15,430 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: b³±d" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Zakoñcz" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Strefa czasowa" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"B³±d podczas przeszukiwania\n" -"pliku konfiguracyjnego." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Strefa czasowa - DrakClock" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Wybierz swoj± strefê czasow±." + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Czy ustawiæ zegar sprzêtowy na czas GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Nie mo¿na znale¿æ ¿adnego programu\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Anuluj" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reset" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Centrum Sterowania Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "£adowanie...Proszê czekaæ" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Dysk startowy" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Konfiguracja uruchamiania" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automatyczna instalacja" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Rozdzielczo¶æ" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Ekran" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Lista sprzêtowa" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mysz" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Drukarka" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skaner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "U¿ytkownicy" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Klawiatura" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Twarde dyski" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Punkty montowania NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Punkty montowania Samby" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Punkty montowania WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Wspó³dzielenie partycji" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Po³±czenie" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Wspó³dzielenie po³±czenia" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Po³±czenie po¶rednicz±ce (proxy)" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Poziom bezpieczeñstwa" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "Harmonogram programów" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Zapora ogniowa" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "Archiwa" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menu" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Us³ugi" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Czcionki" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data i czas" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logi" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Instalacja oprogramowania" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Usuwanie oprogramowania" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Aktualizacja Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Mened¿er ¼róde³ oprogramowania" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Klient DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Grupy dyskusyjne" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Po¶rednik" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Serwer" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Czas" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Sieæ" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Uruchamianie" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Sprzêt" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Punkty montowania" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Nagrywarka CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Stacja dyskietek" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Sieæ i Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Bezpieczeñstwo" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "System" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Zarz±dzanie oprogramowaniem" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Konfiguracja serwera" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Centrum Sterowania Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Modyfikacje dokonane w aktualnym module nie zostan± zapisane." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Proszê czekaæ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Anuluj" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Witaj w Centrum Sterowania Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "nie mo¿na otworzyæ tego pliku do odczytu: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "System:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nazwa komputera:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Wersja j±dra:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Komputer:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "nie mo¿na rozwidliæ procesu: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Zamknij" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Wiêcej tematów" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Pobieranie nowych tematów" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Dodatkowe tematy" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Pobieranie dodatkowych tematów z www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "O programie - Centrum Sterowania Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Projekt: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Dursini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Centrum Sterowania Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Ostrze¿enie: nie okre¶lono przegl±darki" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Ostrze¿enie bezpieczeñstwa: Nie nale¿y ³±czyæ siê z Internetem jako root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Plik" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Plik" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/Za_koñcz" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opcje" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opcje" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Wy¶wietl _logi" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opcje" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Tryb zagnie¿d¿ony" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Tematy" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Tematy" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -433,67 +446,39 @@ msgstr "" "Ta akcja spowoduje ponowne uruchomienie centrum sterowania.\n" "Niezastosowane zmiany zostan± utracone." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Wiêcej tematów" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/Pomo_c" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Pomoc" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Zg³o¶ b³±d" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_O programie.." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Wy¶wietl logi" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Tryb zagnie¿d¿ony" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Strefa czasowa" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Strefa czasowa - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Wybierz swoj± strefê czasow±." - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Czy ustawiæ zegar sprzêtowy na czas GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reset" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centrum konfiguracji menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -503,26 +488,43 @@ msgstr "" "\n" "Wybierz menu do konfiguracji" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu systemowe" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfiguracja..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu u¿ytkownika" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Gotowe" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Konfiguracja drukowania" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Kliknij tutaj aby skonfigurowaæ system drukowania" + +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: b³±d" + +#~ msgid "Quit" +#~ msgstr "Zakoñcz" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "B³±d podczas przeszukiwania\n" +#~ "pliku konfiguracyjnego." + +#~ msgid "Can't find any program\n" +#~ msgstr "Nie mo¿na znale¿æ ¿adnego programu\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-07 11:15+0200\n" "Last-Translator: José JORGE <jose.jorge@oreka.com>\n" "Language-Team: Português\n" @@ -15,418 +15,431 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: erro" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Sair" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Fuso Horário" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Erro ao analisar\n" -"Ficheiro de Configuração." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Fuso Horário - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Não foram encontrados programas\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Qual é o seu fuso horário?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "O seu relógio de hardware está definido GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Cancelar" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Inicializar" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Centro de Controle do Mandrake %s" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Carregando... Por favor aguarde" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disco de Arranque" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Configuração de Arranque" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Auto Instalação" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Ecrã" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Definição" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Mostrar" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Lista do Material" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Rato" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Impressora" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Digitalizador" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Utilizadores" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Teclado" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Discos Duros" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Pontos de Montagem NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Pontos de Montagem Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Pontos de Montagem WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partilha de partição" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Ligação" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Partilha da Ligação" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Configuração do Proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Nível de Segurança" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Firewalling" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menus" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Serviços" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Tipos de Letra" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data e Hora" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Registos" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Consola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Instalar Programas" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Apagar Programas" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Actualização" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Gestão de Fontes de Programas" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Cliente DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Servidores" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Fuso Horário" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Arranque" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Material" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Pontos de Montagem" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Gravador de CDs" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Disquete" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Rede e Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Segurança" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistema" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Gestão de Programas" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Configuração do servidor" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Centro de Controle do Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "As modificações feitas no módulo actual não vão ser gravadas." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Por favor aguarde..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Cancelar" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Bemvindo ao Centro de Controle do Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "Não é possível abrir o ficheiro %s para leitura" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistema:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nome da máquina:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Versão do núcleo:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Máquina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "não é possível bifurcar (fork): %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Fechar" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Mais temas" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Obter mais temas" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Temas suplementares" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Obter mais temas em www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Sobre - Centro de Controle do Mandrake %s" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Arte: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Centro de Controle do Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Aviso: Nenhum navegador especificado" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Aviso de segurança: Não tenho permissões para me ligar à Internet como root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Ficheiro" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Ficheiro" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Sair" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opções" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opções" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Mostrar _Registos" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opções" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Modo _Embebido" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temas" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temas" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -434,67 +447,39 @@ msgstr "" "Esta acção vai relançar o centro de controlo.\n" "Todas as modificações não aplicadas vão ser perdidas." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Mais temas" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Ajuda" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Ajuda" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Comunicar Erro" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Acerca..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Mostrar Registos" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Modo Embebido" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Fuso Horário" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Fuso Horário - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Qual é o seu fuso horário?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "O seu relógio de hardware está definido GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Inicializar" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centro de Configuração do Menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -504,30 +489,47 @@ msgstr "" "\n" "Escolha o menu que deseja configurar" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu de Sistema" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Configurar..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu de Utilizador" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Finalizado" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Configuração da Impressora" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Clique aqui para configurar o sistema de impressão" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: erro" + +#~ msgid "Quit" +#~ msgstr "Sair" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Erro ao analisar\n" +#~ "Ficheiro de Configuração." + +#~ msgid "Can't find any program\n" +#~ msgstr "Não foram encontrados programas\n" + #~ msgid "logdrake" #~ msgstr "logdrake" diff --git a/po/pt_BR.po b/po/pt_BR.po index 56490d7c..6772a5c9 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-02-21 18:45GMT -2\n" "Last-Translator: Bruno Dorfman Buys <brunobuys@zipmail.com.br>\n" "Language-Team: Portuguës\n" @@ -15,431 +15,444 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: erro" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Sair" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Fuso Horário" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Erro enquanto criava\n" -"arquivo de configuração." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Fuso horário - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Nenhum programa encontrado\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Qual é o seu fuso horário?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Seu relógio está configurado como GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Cancelar" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reset" + +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "Centro de Controle Mandrake %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Abrindo... Por favor aguarde" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disco de Inicialização" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Configuração da Inicialização" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Auto instalação" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Vídeo" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Hardware" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mouse" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Impressora" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Scanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "Usuário:" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Teclado" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Discos rígidos" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Pontos de montagem NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Pontos de montagem SAMBA" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Pontos de montagem WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Compartilhamento de partição" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Conexão" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Compartilhamento da Internet" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "Configuração de Proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Nível de Segurança" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Firewall" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menus" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Serviços" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fontes" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data & Hora" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logs" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Console" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Auto instalação" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Gerenciador de Software" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Cliente DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Notícias" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "Servidores" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "Fuso Horário" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Inicialização" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Pontos de montagem" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Gravador de CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Rede & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Segurança" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistema" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Gerenciador de Software" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "Configuração do servidor" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Centro de Controle Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Por favor aguarde..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Cancelar" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Benvindo ao Centro de Controle Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "não foi possível abrir esse arquivo para leitura: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistema:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nome do host:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Versão do Kernel:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Máquina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "não foi possível dividir: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Fechar" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Mais Temas" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Pegando novos temas" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Temas adicionais" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Pegar temas adicionais em www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Sobre - Centro de Controle Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor:" -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Trabalho artístico: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Centro de Controle Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Atenção: Nenhum browser especificado" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Aviso de segurança: Eu não tenho permissão para conectar à internet como " "usuário root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Arquivo" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Arquivo" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Sair" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>R" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opções" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opções" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Display _Logs" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opções" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Modo _embutido" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temas" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temas" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -447,68 +460,40 @@ msgstr "" "Esta ação poderá reiniciar o centro de controle.\n" "Qualquer modificação não aplicada poderá ser perdida." -#: control-center:813 +#: ../control-center_.c:816 #, fuzzy msgid "/_More themes" msgstr "/_Mais Temas" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Ajuda" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Ajuda" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Sobre..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Exibir Logs" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Modo embutido" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Fuso Horário" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Fuso horário - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Qual é o seu fuso horário?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Seu relógio está configurado como GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reset" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centro de Configuração do Menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -518,30 +503,47 @@ msgstr "" "\n" "Escolha qual menu você deseja configurar" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu do sistema" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Configurar..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu do usuário" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Feito" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Configuração da impressão" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Clique aqui para configurar o sistema de impressão" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: erro" + +#~ msgid "Quit" +#~ msgstr "Sair" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Erro enquanto criava\n" +#~ "arquivo de configuração." + +#~ msgid "Can't find any program\n" +#~ msgstr "Nenhum programa encontrado\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -1,12 +1,13 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Free Software Foundation, Inc. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# DrakConf Romanian Translation. +# Copyright (C) 2002 Free Software Foundation, Inc. +# Harald Ersch <hersch@romatsa.ro>, 2002 +# Ovidiu Constantin <ovidiu.soft@xnet.ro>, 2002 # msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" -"PO-Revision-Date: 2002-08-07 12:41GMT+2\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" +"PO-Revision-Date: 2002-08-26 08:54GMT+2\n" "Last-Translator: Harald Ersch <hersch@romatsa.ro>\n" "Language-Team: romanian <ro@li.org>\n" "MIME-Version: 1.0\n" @@ -14,486 +15,471 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: eroare" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Ieºire" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Zona de timp" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Eroare la parsarea\n" -"fiºierului de configurare." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Zona de timp - DrakClock" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Care este zona dvs. de timp?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Sistemul dvs. are ceasul hardware configurat pe GMT?" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Nu gãsesc nici un program\n" +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Renunþã" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reseteazã" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" -msgstr "Mandrake Control Center (Centrul de control Mandrake)" +msgstr "Centrul de control Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" -msgstr "Încarc, aºteptaþi vã rog!" +msgstr "Încarc... Vã rog aºteptaþi!" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Disc de pornire" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Configurare pornire" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Auto-instalare" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Rezoluþie" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Ecran" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Listã echipamente" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" -msgstr "ªoricel (Mouse)" +msgstr "Mouse" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Imprimantã" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Scanner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Utilizatori" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastaturã" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" -msgstr "Discuri dure" +msgstr "Discuri fixe" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Puncte de montare NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Puncte de montare Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Puncte de montare WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partajare partiþii" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" -msgstr "Conexiuni" +msgstr "Conexiune" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" -msgstr "Partajare conexiuni" +msgstr "Partajare conexiune" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" -msgstr "Configurare Proxy" +msgstr "Configurare proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" -msgstr "Nivel de securizare" +msgstr "Nivel de securitate" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" -msgstr "" +msgstr "Planificare programe" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" -msgstr "" +msgstr "Firewall" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" -msgstr "" +msgstr "Cópii de siguranþã" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Meniuri" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servicii" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fonturi" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datã ºi orã" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" -msgstr "Loguri" +msgstr "Jurnale" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Consolã" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Instalare programe" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "ªtergere programe" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Actualizare Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Administrator surse de programe" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Client DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" -msgstr "ªtiri (News)" +msgstr "ªtiri" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Orã" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Pornire" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" -msgstr "Echipamente" +msgstr "Dispozitive" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Puncte de montare" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Inscriptor CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Reþea ºi Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Securitate" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistem" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Administrare programe" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Configurare server" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Centrul de control Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Modificãrile fãcute în modulul curent NU vor fi salvate!" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Aºteptaþi vã rog..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Renunþã" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" +msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-2,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" -msgstr "Bun venit la centrul de control Mandrake" +msgstr "Bun venit la Centrul de control Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "Nu pot citi din fiºierul: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Nume gazdã:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" -msgstr "Versiune Kernel:" +msgstr "Versiune nucleu:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Maºinã:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "Nu pot executa fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Închide" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Mai multe teme" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Preiau noile teme" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Teme suplimentare" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Preluaþi teme suplimantare de la http://www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Despre - Centrul de control Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Graficã: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Centrul de control Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" -msgstr "Atenþie: Browser nespecificat" +msgstr "Atenþie: Navigator nespecificat" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" -"Atenþionare de securitate: Nu este permisa conectarea la Internet ca user " -"root" +"Atenþionare de securitate: Nu este permisã conectarea la Internet ca super-" +"utilizator" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fiºier" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fiºier" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Ieºire" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opþiuni" -#: control-center:791 control-center:796 control-center:825 control-center:826 +#: ../control-center_.c:794 +msgid "/Display _Logs" +msgstr "/Afiºeazã _jurnale" + +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 msgid "/Options" msgstr "/Opþiuni" -#: control-center:791 -msgid "/Display _Logs" -msgstr "/Afiºeazã _Loguri" - -#: control-center:796 +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Mod încapsulat" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Teme" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Teme" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" "Aceastã acþiune va reporni centrul de control.\n" -"Toate modificãrile ce nu au fost aplicate se vor pierde!" +"Toate modificãrile ce nu au fost aplicate se vor pierde." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Mai multe teme" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Ajutor" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Ajutor" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" -msgstr "/_Raportare eroare (Bug)" +msgstr "/_Raportare eroare" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/Despre..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" -msgstr "/Afiºeazã Loguri" +msgstr "/Afiºeazã jurnale" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Mod încapsulat" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Zona de timp" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Zona de timp - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Care este zona dvs. de timp?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Sistemul dvs are ceasul hardware setat pe GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reseteazã" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centrul de configurare meniuri" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -501,28 +487,45 @@ msgid "" msgstr "" "\n" "\n" -"Selectaþi meniul de configurat" +"Selectaþi meniul pe care doriþi sã-l configuraþi" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Meniu sistem" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Configureazã..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Meniu utilizator" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Gata" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Configurare imprimare" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" -msgstr "Click aici pentru configurarea sistemului de imprimare" +msgstr "Clic aici pentru configurarea sistemului de imprimare" + +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: eroare" + +#~ msgid "Quit" +#~ msgstr "Ieºire" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Eroare la parcurgerea\n" +#~ "fiºierului de configurare." + +#~ msgid "Can't find any program\n" +#~ msgstr "Nu pot gãsi nici un program\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2000-08-01 16:24+0200\n" "Last-Translator: Pavel Maryanov <acid_jack@ukr.net>\n" "Language-Team: Russian\n" @@ -17,418 +17,431 @@ msgstr "" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: ÏÛÉÂËÁ" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "÷ÙÈÏÄ" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "þÁÓÏ×ÏÊ ÐÏÑÓ" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"ïÛÉÂËÁ ÐÒÉ ÒÁÚÂÏÒÅ\n" -"ÆÁÊÌÁ ËÏÎÆÉÇÕÒÁÃÉÉ." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "þÁÓÏ×ÏÊ ÐÏÑÓ - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ ËÁËÕÀ-ÌÉÂÏ ÐÒÏÇÒÁÍÍÕ\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "ëÁËÏÊ Õ ×ÁÓ ÞÁÓÏ×ÏÊ ÐÏÑÓ?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "÷ÁÛÉ ÁÐÐÁÒÁÔÎÙÅ ÞÁÓÙ ×ÙÓÔÁ×ÌÅÎÙ ÐÏ GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "ïë" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "ïÔÍÅÎÁ" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "óÂÒÏÓÉÔØ" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "ãÅÎÔÒ õÐÒÁ×ÌÅÎÉÑ Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "éÄÅÔ ÚÁÇÒÕÚËÁ... ðÏÄÏÖÄÉÔÅ, ÐÏÖÁÌÕÊÓÔÁ" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "úÁÇÒÕÚÏÞÎÙÊ ÄÉÓË" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "îÁÓÔÒÏÊËÁ ÚÁÇÒÕÚËÉ" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "á×ÔÏÍÁÔÉÞÅÓËÁÑ ÕÓÔÁÎÏ×ËÁ" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "íÏÎÉÔÏÒ" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "òÁÚÒÅÛÅÎÉÅ" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "íÏÎÉÔÏÒ" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "óÐÉÓÏË ÕÓÔÒÏÊÓÔ×" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "íÙÛØ" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "ðÒÉÎÔÅÒ" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "óËÁÎÅÒ" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "ðÏÌØÚÏ×ÁÔÅÌÉ" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "ëÌÁ×ÉÁÔÕÒÁ" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "öÅÓÔËÉÅ ÄÉÓËÉ" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "ôÏÞËÉ ÍÏÎÔÉÒÏ×ÁÎÉÑ NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "ôÏÞËÉ ÍÏÎÔÉÒÏ×ÁÎÉÑ Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "ôÏÞËÉ ÍÏÎÔÉÒÏ×ÁÎÉÑ WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "óÏ×ÍÅÓÔÎÏ ÉÓÐÏÌØÚÏ×ÁÎÉÅ ÒÁÚÄÅÌÏ×" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "ðÏÄËÌÀÞÅÎÉÅ" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "óÏ×ÍÅÓÔÎÏÅ ÉÓÐÏÌØÚÏ×ÁÎÉÅ ÐÏÄËÌÀÞÅÎÉÑ" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "îÁÓÔÒÏÊËÁ ÐÒÏËÓÉ" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "õÒÏ×ÅÎØ ÂÅÚÏÐÁÓÎÏÓÔÉ" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "âÒÁÎÄÍÁÕÜÒ" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "íÅÎÀ" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "óÅÒ×ÉÓÙ" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "ûÒÉÆÔÙ" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "äÁÔÁ & ÷ÒÅÍÑ" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "ìÏÇÉ" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "ëÏÎÓÏÌØ" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "õÓÔÁÎÏ×ËÁ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "õÄÁÌÅÎÉÅ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "íÅÎÅÄÖÅÒ ÎÁËÏÐÉÔÅÌÅÊ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS-ËÌÉÅÎÔ" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "îÏ×ÏÓÔÉ" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "ðÒÏËÓÉ" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "óÅÒ×ÅÒ" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "÷ÒÅÍÑ" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "úÁÇÒÕÚËÁ" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "ïÂÏÒÕÄÏ×ÁÎÉÅ" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "ôÏÞËÉ ÍÏÎÔÉÒÏÁÎÉÑ" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "ðÉÛÕÝÉÊ CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "äÉÓËÏ×ÏÄ" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "óÅÔØ & éÎÔÅÒÎÅÔ" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "âÅÚÏÐÁÓÎÏÓÔØ" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "óÉÓÔÅÍÁ" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "õÐÒÁ×ÌÅÎÉÅ ÐÒÏÇÒÁÍÍÎÙÍ ÏÂÅÓÅÞÅÎÉÅÍ" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "îÁÓÔÒÏÊËÁ ÓÅÒ×ÅÒÁ" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "ãÅÎÔÒ ÕÐÒÁ×ÌÅÎÉÑ Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "éÚÍÅÎÅÎÉÑ, ÓÄÅÌÁÎÎÙÅ × ÄÁÎÎÏÍ ÍÏÄÕÌÅ, ÎÅ ÂÕÄÕÔ ÓÏÈÒÁÎÅÎÙ." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "ðÏÄÏÖÄÉÔÅ, ÐÏÖÁÌÕÊÓÔÁ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "ïÔÍÅÎÁ" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-cronyx-helvetica-medium-r-normal-*-20-*-100-100-p-*-koi8-r,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "äÏÂÒÏ ÐÏÖÁÌÏ×ÁÔØ × ãÅÎÔÒ ÕÐÒÁ×ÌÅÎÉÑ Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÜÔÏÔ ÆÁÊÌ ÄÌÑ ÞÔÅÎÉÑ: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "óÉÓÔÅÍÁ:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "éÍÑ ÈÏÓÔÁ:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "÷ÅÒÓÉÑ ÑÄÒÁ:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "íÁÛÉÎÁ:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÒÁÓËÒÙÔØ: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "ïë" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "úÁËÒÙÔØ" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "âÏÌØÛÅ ÔÅÍ" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "ðÏÌÕÞÉÔØ ÎÏ×ÙÅ ÔÅÍÙ" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "äÏÐÏÌÎÉÔÅÌØÎÙÅ ÔÅÍÙ" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "ðÏÌÕÞÉÔØ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÔÅÍÙ Ó www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "ï ÐÒÏÇÒÁÍÍÅ - ãÅÎÔÒ ÕÐÒÁ×ÌÅÎÉÑ Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "á×ÔÏÒ: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "ïÆÏÒÍÌÅÎÉÅ: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "ãÅÎÔÒ ÕÐÒÁ×ÌÅÎÉÑ Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "ðÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÎÅ ×ÙÂÒÁÎ ÂÒÏÕÚÅÒ" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "ðÒÅÄÕÐÒÅÖÄÅÎÉÅ Ï ÂÅÚÏÐÁÓÎÏÓÔÉ: ÍÎÅ ÎÅ ÒÁÚÒÅÛÁÅÔÓÑ ÐÏÄËÌÀÞÁÔØÓÑ Ë éÎÔÅÒÎÅÔÕ Ó " "ÐÒÁ×ÁÍÉ root'Á" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_æÁÊÌ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/æÁÊÌ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_÷ÙÈÏÄ" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_ïÐÃÉÉ" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/ïÐÃÉÉ" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/ðÏËÁÚÁÔØ _ìÏÇÉ" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/ïÐÃÉÉ" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "_÷ÎÅÄÒÅÎÎÙÊ ÒÅÖÉÍ" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "_ôÅÍÙ" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/ôÅÍÙ" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -436,67 +449,39 @@ msgstr "" "üÔÏ ÄÅÊÓÔ×ÉÅ ÐÅÒÅÚÁÐÕÓÔÉÔ ÃÅÎÔÒ ÕÐÒÁ×ÌÅÎÉÑ.\n" "ìÀÂÙÅ ÎÅÐÒÉÍÅÎÅÎÎÙÅ ÉÚÍÅÎÅÎÉÑ ÂÕÄÕÔ ÐÏÔÅÒÑÎÙ." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_âÏÌØÛÅ ÔÅÍ" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_óÐÒÁ×ËÁ" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/óÐÒÁ×ËÁ" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_ïÔÞÅÔ Ï ÏÛÉÂËÅ" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_ï ÐÒÏÇÒÁÍÍÅ..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/ðÏËÁÚÁÔØ ÌÏÇÉ" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/÷ÎÅÄÒÅÎÎÙÊ ÒÅÖÉÍ" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "þÁÓÏ×ÏÊ ÐÏÑÓ" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "þÁÓÏ×ÏÊ ÐÏÑÓ - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "ëÁËÏÊ Õ ×ÁÓ ÞÁÓÏ×ÏÊ ÐÏÑÓ?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "÷ÁÛÉ ÁÐÐÁÒÁÔÎÙÅ ÞÁÓÙ ×ÙÓÔÁ×ÌÅÎÙ ÐÏ GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "óÂÒÏÓÉÔØ" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "ãÅÎÔÒ ÎÁÓÔÒÏÊËÉ ÍÅÎÀ" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -506,30 +491,47 @@ msgstr "" "\n" "÷ÙÂÅÒÉÔÅ ÍÅÎÀ, ËÏÔÏÒÏÅ ×Ù ÈÏÔÉÔÅ ÎÁÓÔÒÏÉÔØ" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "óÉÓÔÅÍÎÏÅ ÍÅÎÀ" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "îÁÓÔÒÏÊËÁ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "íÅÎÀ ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "÷ÙÐÏÌÎÅÎÏ" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "ðÅÞÁÔØ ËÏÎÆÉÇÕÒÁÃÉÉ" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "îÁÖÍÉÔÅ ÚÄÅÓØ, ÞÔÏÂÙ ÎÁÓÔÒÏÉÔØ ÓÉÓÔÅÍÕ ÐÅÞÁÔÉ" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: ÏÛÉÂËÁ" + +#~ msgid "Quit" +#~ msgstr "÷ÙÈÏÄ" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "ïÛÉÂËÁ ÐÒÉ ÒÁÚÂÏÒÅ\n" +#~ "ÆÁÊÌÁ ËÏÎÆÉÇÕÒÁÃÉÉ." + +#~ msgid "Can't find any program\n" +#~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ ËÁËÕÀ-ÌÉÂÏ ÐÒÏÇÒÁÍÍÕ\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.90\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-07 08:36+0100\n" "Last-Translator: Pavol Cvengros <orpheus@hq.alert.sk>\n" "Language-Team: sk <i18n@hq.alert.sk>\n" @@ -14,417 +14,430 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: chyba" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Koniec" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Èasová zóna" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Chyba poèas parsovania\n" -"konfiguraèného súboru." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Èasová zóna - DrakClock" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Ktoré je va¹e èasové pásmo?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Sú va¹e hardvérové hodiny nastavené na GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Nemô¾em nájs» ¾iaden program\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Zru¹" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Reset" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Kontrolné centrum Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Nahrávam... Prosím èakajte" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "©tartovací disk" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Nastavenie ¹tartu" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automatická in¹talácia" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Rozlí¹enie" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Obrazovka" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Zoznam hardvéru" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "My¹" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Tlaèiareò" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skaner" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "U¾ívatelia" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Klávesnica" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Pevné disky" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Body pripojenia NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Body pripojenia SAMBA" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Body pripojenia WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Zdieµanie oddielu" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Pripojenie" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Zdieµanie pripojenia" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Nastavenie proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Úroveò bezpeènosti" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menu" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Slu¾by" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Písma" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Dátum a èas" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logy" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konzola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "In¹talova» softvér" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Odstráni» softvér" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Aktualizácia Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Mana¾ér zdrojov softvéru" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS klient" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Èas" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "©tart" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardvér" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Body pripojenia" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Napaµovaèka CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Pru¾ný disk" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Sie» & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Bezpeènos»" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Systém" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Mana¾ment softvéru" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Nastavenie servera" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Kontrolné centrum Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Modifikácie urobené v tomto module nebudú ulo¾ené." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Prosím èakajte..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Zru¹" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-2,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Vítajte v kontrolnom centre Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "nemô¾em otvori» tento súbor na èítanie: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Systém:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Názov poèítaèa:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Verzia kernelu:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Poèítaè:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "nemô¾em vykona» fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Zatvor" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Ïal¹ie témy" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Preberanie nových tém" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Dodatkové témy" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Ïal¹ie témy nájdete na www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "O Kontrolnom centre Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Artwork: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Kontrolné centrum Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Upozornenie: nie je ¹pecifikovaný prehliadaè" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Bezpeènostné varovanie: nemám povolené pripoji» sa k internetu ako root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Súbor" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Súbor" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Koniec" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Nastavenia" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Nastavenia" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Zobrazi» _Logy" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Nastavenia" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Embedded Mód" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Témy" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Témy" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -432,67 +445,39 @@ msgstr "" "Táto akcia re¹tartuje kontrolné centrum.\n" "V¹etky neaplikované zmeny budú stratené." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Ïal¹ie témy" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Pomoc" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Pomoc" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Ohlási» chybu" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_O aplikácii..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Zobrazi» Logy" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Embedded Mód" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Èasová zóna" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Èasová zóna - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Ktoré je va¹e èasové pásmo?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Sú va¹e hardvérové hodiny nastavené na GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Reset" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Konfiguraèné centrum menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -502,26 +487,43 @@ msgstr "" "\n" "Zvoµte si menu ktoré chcete nastavi»" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Systémové menu" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfigurácia..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "U¾ívateµské menu" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Hotovo" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Nastavenia tlaèe" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Pre konfiguráciu systému tlaèe kliknite tu" + +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: chyba" + +#~ msgid "Quit" +#~ msgstr "Koniec" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Chyba poèas parsovania\n" +#~ "konfiguraèného súboru." + +#~ msgid "Can't find any program\n" +#~ msgstr "Nemô¾em nájs» ¾iaden program\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-05 13:45+0200\n" "Last-Translator: Gregor Pirnaver <gregor.pirnaver@email.si>\n" "Language-Team: Sloven¹èina <lugos-slo@lugos.si>\n" @@ -16,421 +16,434 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: napaka" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Konèaj" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Èasovna cona" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Napaka pri procesiranju\n" -"konfiguracijske datoteke" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Èasovna cona - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Nobenega programa ni mogoèe najti\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Katere ja va¹a èasovna cona?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Je ura v raèunalniku nastavljana na GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "V redu" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Preklièi" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Resetiraj" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake nadzorno sredi¹èe" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Nalagam... Prosim poèakajte" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Zagonska disketa" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Nastavitve zagona" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Samodejna namestitev" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Ekran" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Loèljivost" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Zaslon" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr " Strojna oprema" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mi¹ka" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Tiskalnik" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Optièni èitalec (skener)" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Uporabniki" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tipkovnica" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Trdi diski" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS priklopne toèke" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba priklopne toèke" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV priklopne toèke" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Deljenje partiticije" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Povezava" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Deljenje povezave" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Nastavitve proksijev" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Varnostni nivo" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menuji" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Storitve" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Pisave" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datum & Èas" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logi" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konzola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Nemesti" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Upravljalnik paketov" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "TV kartice" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS Odjemalec" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News (Novièarske skupine - usenet)" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proksi" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Stre¾nik" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Èas" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Splet" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Zagon" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Strojna oprema" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Mount direktoriji" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD-R (\"Burner\")" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Disketnik" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Mre¾a & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Varnost" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistem" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Upravljalnik paketov" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Nastavitve stre¾nikov" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake nadzorno sredi¹èe %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Sprememebe narejene v trenutnem naèinu ne bodo shranjene" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Prosim poèakajte..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Preklièi" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-2,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Dobrodo¹li v Mandrake nadzorno sredi¹èe" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ne morem odpreti datotek %s za branje" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Ime gostitelja (hostname):" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Razlièica jedra:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Raèunalnik:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ne morem ustvariti novega procesa: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "V redu" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Zapri" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Veè tem" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Pridobivanje novih tem" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Dodatne teme" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Dodatne teme dobite na www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "O - Mandrake nadzornem sredi¹èu" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Avtor " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Oblikovanje: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake nadzorno sredi¹èe %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Opozorilo: Brskalnik ni doloèen" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Varnostno opozorilo: Ni mi dovoljeno, da se pove¾em na Internet kot root " "uporabnik" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Datoteka" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Datoteka" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Konèaj" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Mo¾nosti" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Mo¾nosti" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Display _\"Logi\"" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Mo¾nosti" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Naèin vstavka" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Teme" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Teme" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -438,67 +451,39 @@ msgstr "" "To bo ponovno zagnalo Nadzorno sredi¹èe\n" "Vse nepotrjene spremembe bodo izgubljene." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Veè tem" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Pomoè" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Pomoè" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_O..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Zaslon \"Logi\"" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/_Naèin vstavka" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Èasovna cona" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Èasovna cona - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Katere ja va¹a èasovna cona?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Je ura v raèunalniku nastavljana na GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Resetiraj" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menu - Nastavitveno sredi¹èe" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -508,30 +493,47 @@ msgstr "" "\n" "Izberi kateri menu ¾eli¹ urediti" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sistemski menu" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Uredi..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Uporabni¹ki menu" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Storjeno" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Nastavitve tiskanja" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Nastavljanje sistema za tiskanje" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: napaka" + +#~ msgid "Quit" +#~ msgstr "Konèaj" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Napaka pri procesiranju\n" +#~ "konfiguracijske datoteke" + +#~ msgid "Can't find any program\n" +#~ msgstr "Nobenega programa ni mogoèe najti\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -696,8 +698,5 @@ msgstr "Nastavljanje sistema za tiskanje" #~ msgid "Save as.." #~ msgstr "Shrani kot..." -#~ msgid "TV Cards" -#~ msgstr "TV kartice" - #~ msgid "Click here to install standard themes:" #~ msgstr "Za namestitev standardnih tem kliknite sem:" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-12 18:06GMT+1\n" "Last-Translator: Toma Jankovic <tomaja@net.yu>\n" "Language-Team: Serbian <i18n@mandrake.co.yu>\n" @@ -15,419 +15,432 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: ÓàeèÚa" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "´àÐÚ ÇÐáÞÒÝØÚ" -#: placeholder.h:8 -msgid "Quit" -msgstr "·ÐÒàèØ" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "²àÕÜÕÝáÚÐ ·ÞÝa" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"³àeèÚÐ ßàØ àÐáâÐÒùaúã\n" -"ÚÞÝäØÓãàÐæØÞÝe ÔÐâÞâÕÚe." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "²àÕÜÕÝáÚÐ ×ÞÝÐ - ´àÐÚ ÇÐáÞÒÝØÚ" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "ºÞjÐ jÕ ÒaèÐ ÒàÕÜÕÝáÚÐ ×ÞÝa ?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - ´àÐÚ ÇÐáÞÒÝØÚ" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "´Ð ÛØ øÕ ÒÐè áØáâÕÜáÚØ (BIOS) çÐáÞÒÝØÚ ßÞÔÕèÕÝ ÝÐ GMT ?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "à àÕÔã" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "½Õ ÜÞÓã ÔÐ ßàÞÝaòÕÜ ÝØ jeÔÐÝ ßàÞÓàÐÜ\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "¿ÞÝØèâØ" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "ÀÕáÕâÞÒaúe" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake ºÞÝâàÞÛÝØ ÆÕÝâÐà" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "ÃçØâÐÒÐÜ... ÁaçÕÚÐjâÕ ÜÞÜÕÝÐâ" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Boot ÔØáÚ" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Boot ÚÞÝäØÓãàÐæØja" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "°ãâÞ ¸ÝáâÐÛÐæØøÐ" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "¼ÞÝØâÞà" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "ÀÕ×ÞÛãæØøÐ" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "´ØáßÛÕj" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "»ØáâÐ ÅÐàÔÒÕàÐ" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "¼Øè" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "ÈâÐÜßaç" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "ÁÚÕÝÕà" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "ºÞàØáÝØæØ" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "ÂÐáâÐâãàa" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "ÅÐàÔ ÔØáÚÞÒØ" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS âÐçÚÕ ÜÞÝâØàÐúÐ" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba âÐçÚÕ ÜÞÝâØàÐúÐ" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV âÐçÚÕ ÜÞÝâØàÐúÐ" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "·ÐøÕÔÝØçÚÞ ÚÞàØèûÕúÕ ßÐàâØæØøÐ" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "ºÞÝÕÚæØja" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "´eùeúÕ ÚÞÝÕÚæØje" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "¿ÞÔÕèÐÒÐúÕ ßàÞÚáØøÐ" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "½ØÒÞ áØÓãàÝÞáâØ" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "¼ÕÝØjØ" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "ÁÕàÒØáØ" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "ÄÞÝâÞÒØ" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "´ÐâãÜ Ø ÒàÕÜe" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "»ÞÓ ×ÐßØáØ" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "ºÞÝ×ÞÛÐ" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "¸ÝáâÐÛØàÐø ÁÞäâÒÕà" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "ÃÚÛÞÝØ ÁÞäâÒÕà" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "¼ÕÝÐÿÕà ×Ð áÞäâÒÕà" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS ºÛØøÕÝâ" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "²ÕáâØ" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "¿àÞÚáØ" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "ÁÐÜÑÐ" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "ÁÕàÒÕà" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "²àÕÜÕ" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Boot" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "ÅÐàÔÒÕà" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "ÂÐçÚÕ ÜÞÝâØàÐúÐ" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD ÀÕ×Ðç" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "ÄÛÞßØ" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "¼àeÖÐ & ¸ÝâÕàÝÕâ" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "ÁØÓãàÝÞáâ" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "ÁØáâÕÜ" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "¿ÞÔÕèÐÒÐúÕ ÁÞäâÒÕàÐ" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "¿ÞÔÕèÐÒÐúÕ ÁÕàÒÕàÐ" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake ºÞÝâàÞÛÝØ ÆÕÝâÐà %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "¸×ÜÕÝÐ ÚÞøÐ øÕ ÝÐßàÐÒùÕÝÐ ã âàÕÝãâÝÞÜ ÜÞÔãÛã ÝÕ ÜÞÖÕ ÑØâØ áÐçãÒÐÝÐ." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "ÁaçÕÚÐjâÕ ÜÞÜÕÝÐâ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "¿ÞÝØèâØ" - # control-center:335n -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "´ÞÑàÞÔÞèÛØ ã ¼andrake ºÞÝâàÞÛÝØ ÆÕÝâÐà" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "½Õ ÜÞÓã ÔÐ ÞâÒÞàØÜ ÞÒÐj äÐjÛ ×Ð çØâaúe: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "ÁØáâÕÜ:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "¸ÜÕ åÞáâÐ:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "²Õà×ØjÐ ÚÕàÝÕÛa:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "¼aèØÝÐ:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ÝÕ ÜÞÓã ÔÐ fork-ãjÕÜ: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "à àÕÔã" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "·ÐâÒÞàØ" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "¨Þè âÕÜÐ" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "ÁÚØÝØâÕ ÝÞÒÕ âÕÜÕ" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "´ÞÔÐâÝÕ âÕÜÕ" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "ÁÚØÝØâÕ ÝÞÒÕ âÕÜÕ áÐ www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "¾ - Mandrake ºÞÝâàÞÛÝÞÜ ÆÕÝâàã" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "°ãâÞà: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "´Ø×ÐøÝ: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake ºÞÝâàÞÛÝØ ÆÕÝâÐà %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft S°" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "ÃßÞ×Þàeúe: ¿àÕâàaÖØÒaç ÝØjÕ ÞÔàÕóÕÝ" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "ÁØÓãàÝÞáÝÞ ÃßÞ×Þàeúe: ½ØjÕ ÜØ ÔÞ×ÒÞùÕÝÞ ÔÐ áÕ ÚÞÝÕÚâãjÕÜ ÝÐ ØÝâÕàÝÕâ ÚÐÞ " "root ÚÞàØáÝØÚ" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_ÄÐøÛ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/ÄÐøÛ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_ºàÐj" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_¾ßæØje" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/¾ßæØje" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/¿àØÚÐÖØ _»ÞÓÞÒÕ" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/¾ßæØje" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Embedded ¼ÞÔ" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_ÂÕÜÕ" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/ÂÕÜÕ" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -435,67 +448,39 @@ msgstr "" "¾ÒÐ ÐÚæØøÐ ûÕ àÕáâÐàâÞÒÐâØT ºÞÝâàÞÛÝØ æÕÝâÐà.\n" "ÁÒÕ Ø×ÜÕÝÕ ÚÞøÕ ÝØáã ßàØÜÕúÕÝÕ ûÕ ÑØâØ Ø×ÓãÑùÕÝÕ." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_¨Þè âÕÜÐ" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_¿ÞÜÞû" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/¿ÞÜÞû" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_¿àØøÐÒØâÕ ±ÐÓ" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_¾..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/¿àØÚÐÖØ »ÞÓÞÒÕ" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Embedded ÜÞÔ" -#: clock.pl:47 -msgid "DrakClock" -msgstr "´àÐÚ ÇÐáÞÒÝØÚ" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "²àÕÜÕÝáÚÐ ·ÞÝa" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "²àÕÜÕÝáÚÐ ×ÞÝÐ - ´àÐÚ ÇÐáÞÒÝØÚ" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "ºÞjÐ jÕ ÒaèÐ ÒàÕÜÕÝáÚÐ ×ÞÝa ?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - ´àÐÚ ÇÐáÞÒÝØÚ" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "´Ð ÛØ øÕ ÒÐè áØáâÕÜáÚØ (BIOS) çÐáÞÒÝØÚ ßÞÔÕèÕÝ ÝÐ GMT ?" - -#: clock.pl:131 -msgid "Reset" -msgstr "ÀÕáÕâÞÒaúe" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "ÆÕÝâÐà ×Ð ßÞÔeèÐÒaúÕ ÜÕÝØja" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -505,26 +490,43 @@ msgstr "" "\n" "¸×ÐÑÕàØâÕ ÜÕÝØ ÚÞjØ ÖÕÛØâÕ ÔÐ ßÞÔeáØâe" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "ÁØáâÕÜáÚØ ÜÕÝØ" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "KÞÝäØÓãàÐæØjÐ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "ºÞàØáÝØçÚØ ÜÕÝØ" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "·ÐÒàèÕÝÞ" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "ÈâÐÜßÐúÕ ÚÞÝäØÓãàÐæØøÕ" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "ºÛØÚÝØ ÞÒÔÕ ×Ð ÚÞÝäØÓãàØáÐúÕ áØáâÕÜÐ ×Ð èâÐÜßÐúÕ" + +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: ÓàeèÚa" + +#~ msgid "Quit" +#~ msgstr "·ÐÒàèØ" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "³àeèÚÐ ßàØ àÐáâÐÒùaúã\n" +#~ "ÚÞÝäØÓãàÐæØÞÝe ÔÐâÞâÕÚe." + +#~ msgid "Can't find any program\n" +#~ msgstr "½Õ ÜÞÓã ÔÐ ßàÞÝaòÕÜ ÝØ jeÔÐÝ ßàÞÓàÐÜ\n" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-02-25 08:02GMT\n" "Last-Translator: Laurent Dhima <laurent.dhima@albalinuxs.f2s.com>\n" "Language-Team: albanian <sq@li.org>\n" @@ -14,497 +14,482 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: gabim" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Dil" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Ora Lokale" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Gabim duke parsing\n" -"config file." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Ora Lokale - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Nuk arrij të gjej asnjë program\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Kush është ora juaj lokale?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Është setuar koha e hardware tuaj me GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Elemino" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Rikthe" + +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "Qëndra e Kontrollit të Mandrake %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Ju lutem prisni..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Boot Disk" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Boot Konfig" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Auto Instal" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Display" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Hardware" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mouse" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Stampante" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "përdorues" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastiera" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Disqet fiks" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Pikat e montimit NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Pikat e montimit të Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Pikat e montimit të WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Particione të Përbashkët" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Lidhja" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Ndarja e lidhjes" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "Mail/SMS kujdes konfigurimi" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Niveli i Sigurimit" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Firewalling" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menu" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Shërbime" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Gërma" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Data & Ora" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logs" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsolë" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 #, fuzzy msgid "Install Software" msgstr "Auto Instal" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Kontrolluesi i Software" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "Server-ët" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "Ora Lokale" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Boot" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Pikat e Montimit" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD Krijues" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Floppy" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Network & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sigurimi" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistemi" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Kontrolluesi i Software" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "Mail/SMS kujdes konfigurimi" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Qëndra e Kontrollit të Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Ju lutem prisni..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Elemino" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Mirësevini në Qendrën e Kontrollit të Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "nuk mund të hap këtë file për lexim: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistemi:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Emri i Host:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Versioni i Kernel:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Makina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "nuk mund të fork-oj: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Mbylle" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Mbi - Qendra e Kontrollit Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autori: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Autori: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Qëndra e Kontrollit të Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Kujdes: Asnjë browser i zgjedhur" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Paralajmërim Sigurie: Nuk duhet të lidhem në internet si përdorues root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_File" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/File" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Dil" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opcione" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opcione" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Display _Logs" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opcione" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Embedded Mënyrë" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temat" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temat" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 #, fuzzy msgid "/_More themes" msgstr "/_Temat" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Ndihmë" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Ndihmë" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Mbi..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Display Logs" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Embedded Mënyrë" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Ora Lokale" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Ora Lokale - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Kush është ora juaj lokale?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Është setuar koha e hardware tuaj me GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Rikthe" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Qendra e Konfigurimit të Menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -514,30 +499,47 @@ msgstr "" "\n" "Zgjidhni kë menu doni të konfiguroni" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu e Sistemit" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfiguroje..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu e Përdoruesit" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Fund" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Kunfigurimi i Stampës" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Kliko këtu për të konfiguruar sistemin e stampës" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: gabim" + +#~ msgid "Quit" +#~ msgstr "Dil" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Gabim duke parsing\n" +#~ "config file." + +#~ msgid "Can't find any program\n" +#~ msgstr "Nuk arrij të gjej asnjë program\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-12 18:06GMT+1\n" "Last-Translator: Toma Jankovic_<tomaja@net.yu>\n" "Language-Team: Serbian <i18n@mandrake.co.yu>\n" @@ -15,419 +15,432 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: gre¹ka" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "Drak Èasovnik" -#: placeholder.h:8 -msgid "Quit" -msgstr "Zavr¹i" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Vremenska Zona" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Gre¹ka pri rastavljanju\n" -"konfiguracione datoteke." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Vremenska zona - Drak Èasovnik" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Koja je va¹a vremenska zona ?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - Drak Èasovnik" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Da li je va¹ sistemski (BIOS) èasovnik pode¹en na GMT ?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "U redu" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Ne mogu da pronaðem ni jedan program\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Poni¹ti" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Resetovanje" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Kontrolni Centar" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Uèitavam... Saèekajte momenat" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Boot disk" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Boot konfiguracija" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Auto Instalacija" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Rezolucija" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Displej" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Lista Hardvera" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mi¹" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "©tampaè" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Skener" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Korisnici" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tastatura" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Hard diskovi" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS taèke montiranja" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba taèke montiranja" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV taèke montiranja" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Zajednièko kori¹æenje particija" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Konekcija" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Deljenje konekcije" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Pode¹avanje proksija" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Nivo sigurnosti" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Meniji" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Servisi" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fontovi" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datum i vreme" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Log zapisi" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konzola" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Instaliraj Softver" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Ukloni Softver" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Update" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Menad¾er za softver" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS Klijent" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Vesti" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proksi" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Vreme" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Boot" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardver" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Taèke montiranja" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD Rezaè" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Flopi" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Mre¾a & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Sigurnost" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistem" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Pode¹avanje Softvera" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Pode¹avanje Servera" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake Kontrolni Centar %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Izmena koja je napravljena u trenutnom modulu ne mo¾e biti saèuvana." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Saèekajte momenat..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Poni¹ti" - # control-center:335n -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Dobrodo¹li u Mandrake Kontrolni Centar" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "Ne mogu da otvorim ovaj fajl za èitanje: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Ime hosta:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Verzija kernela:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Ma¹ina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ne mogu da fork-ujem: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "U redu" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Zatvori" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Jo¹ tema" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Skinite nove teme" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Dodatne teme" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Skinite nove teme sa www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "O - Mandrake Kontrolnom Centru" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Autor: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Dizajn: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Kontrolni Centar %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Upozorenje: Pretra¾ivaè nije odregjen" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Sigurnosno Upozorenje: Nije mi dozvoljeno da se konektujem na internet kao " "root korisnik" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fajl" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fajl" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Kraj" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Opcije" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Opcije" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Prika¾i _Logove" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Opcije" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Embedded Mod" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Teme" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Teme" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -435,67 +448,39 @@ msgstr "" "Ova akcija æe restartovatiT Kontrolni centar.\n" "Sve izmene koje nisu primenjene æe biti izgubljene." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Jo¹ tema" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Pomoæ" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Pomoæ" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Prijavite Bag" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_O..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Prika¾i Logove" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Embedded mod" -#: clock.pl:47 -msgid "DrakClock" -msgstr "Drak Èasovnik" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Vremenska Zona" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Vremenska zona - Drak Èasovnik" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Koja je va¹a vremenska zona ?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - Drak Èasovnik" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Da li je va¹ sistemski (BIOS) èasovnik pode¹en na GMT ?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Resetovanje" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Centar za pode¹avanje menija" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -505,26 +490,43 @@ msgstr "" "\n" "Izaberite meni koji ¾elite da podesite" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sistemski meni" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Konfiguracija..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Korisnièki meni" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Zavr¹eno" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "©tampanje konfiguracije" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Klikni ovde za konfigurisanje sistema za ¹tampanje" + +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: gre¹ka" + +#~ msgid "Quit" +#~ msgstr "Zavr¹i" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Gre¹ka pri rastavljanju\n" +#~ "konfiguracione datoteke." + +#~ msgid "Can't find any program\n" +#~ msgstr "Ne mogu da pronaðem ni jedan program\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-24 10:11+0100\n" "Last-Translator: Mattias Dahlberg <voz@home.se>\n" "Language-Team: <sv@li.org>\n" @@ -17,418 +17,431 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "Drakconf: fel" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "Drakclock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Avsluta" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Tidszon" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Fel vid bearbetning av\n" -"konfigurationsfil." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Tidszon - Drakclock" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Vilken är din tidszon?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - Drakclock" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Är hårdvaruklockan ställd till GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Kan inte hitta några program\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Avbryt" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Återställ" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrakes kontrollcentral" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Laddar... Vänta" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Startdiskett" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Startkonfiguration" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Automatisk installation" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Skärm" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Upplösning" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Bild" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Hårdvarulista" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mus" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Skrivare" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Bildläsare" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Användare" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Tangentbord" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Hårddiskar" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS-monteringspunkter" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba-monteringspunkter" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV-monteringspunkter" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Partitionsdelning" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Anslutning" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Internetdelning" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Proxy-konfiguration" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Säkerhetsnivå" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "Programschema" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Brandvägg" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "Säkerhetskopior" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menyer" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Tjänster" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Teckensnitt" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Datum & tid" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Loggar" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsoll" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Installera program" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Ta bort program" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Uppdatera Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Programhanterare för källor" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS-klient" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Diskussionsgrupper" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Tid" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Webb" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Start" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hårdvara" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Monteringspunkter" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "Cd-rom" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Cd-brännare" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Diskett" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Nätverk & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Säkerhet" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "System" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Programhantering" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Serverkonfiguration" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrakes kontrollcentral %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Ändringar gjorda i den aktuella modulen kommer inte att sparas." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Vänta..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Avbryt" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Välkommen till Mandrakes kontrollcentral" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "kan inte öppna den här filen för läsning: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "System:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Värddatornamn:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kärnversion:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Maskin:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "kan inte dela: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Stäng" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Fler teman" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Hämta nya teman" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Ytterligare teman" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Fler teman finns på www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Om - Mandrakes kontrollcentral" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Upphovsman: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Bilder: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Control Center %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Varning: Ingen webbläsare angiven" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Säkerhetsvarning: Har inte behörighet att ansluta till Internet som root-" "användare" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/A_rkiv" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Arkiv" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/A_vsluta" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Alternativ" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Alternativ" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Visa _loggar" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Alternativ" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Inbäddat läge" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Teman" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Teman" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -436,67 +449,39 @@ msgstr "" "Denna åtgärd kommer att starta om kontrollcentralen.\n" "Alla ändringar som inte sparats går förlorade." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/Fler te_man" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Hjälp" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Hjälp" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Rapportera fel" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Om..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Visa loggar" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Inbäddat läge" -#: clock.pl:47 -msgid "DrakClock" -msgstr "Drakclock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Tidszon" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Tidszon - Drakclock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Vilken är din tidszon?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - Drakclock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Är hårdvaruklockan ställd till GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Återställ" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menyanpassning" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -506,26 +491,43 @@ msgstr "" "\n" "Välj vilken meny du vill anpassa" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Systemmeny" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Anpassa..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Användarmeny" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Färdig" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Konfiguration av utskrift" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Klicka här för att konfigurera utskriftssystemet" + +#~ msgid "DrakConf: error" +#~ msgstr "Drakconf: fel" + +#~ msgid "Quit" +#~ msgstr "Avsluta" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Fel vid bearbetning av\n" +#~ "konfigurationsfil." + +#~ msgid "Can't find any program\n" +#~ msgstr "Kan inte hitta några program\n" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 1.0\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-23 19:47-0400\n" "Last-Translator: prabu <prabu_anand2000@yahoo.com>\n" "Language-Team: <en@li.org>\n" @@ -14,416 +14,429 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "ʧÃìÅÊŨÁôÀ¡ý;À¢¨Æ" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "ʧÃì¸Ê¸¡Ãõ" -#: placeholder.h:8 -msgid "Quit" -msgstr "¦ÅǢø" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "¸¡Ä Áñ¼Äõ" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"ÅÊŨÁôÒ째¡ô¨À «Ä¸¢Îõ §À¡Ð\n" -" À¢¨Æ" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "¸¡Ä Áñ¼Äõ-ʧÃì¸Ê¸¡Ãõ" + +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "¿£í¸û ±ó¾ ¸¡Ä Áñ¼Äò¨¾î §º÷ó¾Å÷?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - ʧÃì¸Ê¸¡Ãõ" + +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "¯í¸û Åý¦À¡ÕÇ¢ø ¸Ê¸¡Ãõ GMTìÌ «¨ÁóÐûǾ¡?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "ºÃ¢" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "±ó¾ ¿¢Ã¨ÄÔõ ¸¡½ ÓÊÂÅ¢ø¨Ä\n" +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "¿£ìÌ" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "¿¢¨Ä Á£ð¼ø" -#: control-center:60 +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Á¡ñʧÃì ¸ðÎôÀðÎ ¨ÁÂõ" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "²üÈôÀθ¢ÈÐ....¾ÂצºöÐ ¸¡ò¾¢Õì¸×õ..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "¦¾¡¼ì¸ ÅðÎ" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "¦¾¡¼ì¸ ÅÊŨÁôÒ" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "¾¡¿¢ÚÅø" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "¾¢¨Ã¸õ" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "ÀâÁ¡½í¸û" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "¸¡ðÊ" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Åý¦À¡Õð¸Ç¢ý ÀðÊÂø" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "±Ä¢" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "«îÍô¦À¡È¢" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "ÅÕÊ" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "ÀÂÉ÷" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Å¢¨ºôÀĨ¸" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Åý ÅðÎì¸û" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS ²üÈôÒûÇ¢¸û" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "ºõÀ¡ ²üÈôÒûÇ¢¸û" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV ²üÈôÒûÇ¢¸û" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Ÿ¢÷ À¸¢÷¾ø" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "þ¨½ôÀ¸õ" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "þ¨½ÂôÀ¸¢÷×" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "À¢É¡Á¢ ÅÊŨÁôÒ" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "À¡Ð¸¡ôÒ ¿¢¨Ä" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Àðʸû" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "ÐÅì¸î§º¨Å¸û" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "±ØòÐÕ" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "¸¡Ä§¿Ãõ" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "À¾¢×¸û" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Ó¨ÉÂõ" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "¿¢Ãø¿¢ÚÅ¢" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "¿¢ÃøÅ¢Ä츢" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Á¡ñʧÃì ¿¢¸ú¿¢¨Ä" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "ãÄ ¿¢Ãø §ÁÄ¡Ç÷" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS §ÅñÊ" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "§¸¡ôÒô À¡¢Á¡È¢" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "¦ºö¾¢" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix-Á¢ýÉïºø §º¨Å¸õ" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "À¢É¡Á¢" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "ºõÀ¡" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "§º¨Å¸õ" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "§¿Ãõ" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "ŨÄÂõ" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "ÐÅì̾ø" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Åý¦À¡Õû" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "²üÈôÒûÇ¢¸û" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "º¢Ê¸õ" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "ÊÅ¢Ê" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "º¢Ê±Ã¢ôÀ¡ý" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "¦¿¸¢ú ÅðÎ" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "ÌÕ츢" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "ŨĨÁôÒõ þ¨½ÂÓõ" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "À¡Ð¸¡ôÒ" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "¸½¢½¢ «¨ÁôÒ" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "¿¢Ãø §ÁÄ¡ñ¨Á" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "§º¨Å¸ ÅÊŨÁôÒ" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Á¡ñʧÃì ¸ðÎôÀðÎ ¨ÁÂõ %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "¿¼ôÒì ÜÈ¢ø ¿£í¸û ¦ºö¾ Á¡üÈí¸û §ºÁ¢ì¸ôÀ¼ Á¡ð¼¡Ð" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "¾ÂצºöÐ ¸¡ò¾¢Õì¸×õ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "¿£ìÌ" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-Tsc_Avarangal-medium-r-normal--20-*-100-100-p-*-tscii-0,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Á¡ñʧÃì ¸ðÎôÀðÎ ¨ÁÂò¾¢üÌ ÅÕ¸" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr " %s þ¿¾ §¸¡ô¨À ¾¢Èì¸ ÓÊÂÅ¢ø¨Ä" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "«¨ÁôÒ" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "þÂì¸ô¦ÀÂ÷" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "¸ÕÅ¢ý ¦ÅǢ£Î" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "¸½¢½¢" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "%s ¯ûÐÅì¸ ÓÊÂÅ¢ø¨Ä" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "ºÃ¢" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "ãÎ" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "§ÁÖõ ¯Õì¸Õì¸û" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Ò¾¢Â ¯Õì¸Õì¸û ¦ÀÈôÀθ¢ýÈÉ" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "§ÁÖõ º¢Ä ¯Õì¸Õì¸û" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "§ÁÖõ º¢Ä ¯Õì¸Õì¸û ¦ÀÈ www.damz.net ¦ºøÖí¸û" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Á¡ñʧÃì ¸ðÎôÀðÎ ¨ÁÂõ-ÀüÈ¢" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "þÂüÈ¢ÂÅ÷: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "¸¨Ä: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "¦†Äý ЧẢɢ" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Á¡ñʧÃì ¸ðÎôÀðÎ ¨ÁÂõ%s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "¯¡¢¨Á; Á¡ñʧÃì ¿¢ÚÅÉõ" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "±îºÃ¢ì¨¸; §Á§Ä¡Ê ±Ð×õ §¾÷×î ¦ºöÂôÀ¼Å¢ø¨Ä" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "À¡Ð¸¡ôÒ ±îºÃ¢ì¨¸; ¿¡ý ¿¢÷Å¡¸¢Â¡¸ þ¨½Âò¨¾ ¦¾¡¼÷Òì ¦¸¡ûÇìܼ¡Ð" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_§¸¡ôÒ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/§¸¡ôÒ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_¦ÅǢø" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Å¢ÕôÀò§¾÷×" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Å¢ÕôÀò§¾÷×" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/À¾¢×¸¨Çì ¸¡Á¢" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Å¢ÕôÀò§¾÷×" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/¯ð¦À¡¾¢ó¾ ӨȨÁ" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_¯Õì¸Õì¸û" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/¯Õì¸Õì¸û" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -431,67 +444,39 @@ msgstr "" "þÂø ¸ðÎôÀðÎ ¨ÁÂò¨¾ ÁÚ¦¾¡¼ì¸õ .\n" "¿£í¸û ¦ºö¾ Á¡üÈí¸û «¨ÉòÐõ þÆóРŢÎÅ£÷¸û" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_§ÁÖõ ¯Õì¸Õì¸û" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_¯¾Å¢" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/¯¾Å¢" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_À¢¨Æ¸¨Ç «È¢Å¢ì¸" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_ÀüÈ¢" -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/À¾¢×¸¨Çì ¸¡Á¢" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/¯ð¦À¡¾¢ó¾ ӨȨÁ" -#: clock.pl:47 -msgid "DrakClock" -msgstr "ʧÃì¸Ê¸¡Ãõ" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "¸¡Ä Áñ¼Äõ" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "¸¡Ä Áñ¼Äõ-ʧÃì¸Ê¸¡Ãõ" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "¿£í¸û ±ó¾ ¸¡Ä Áñ¼Äò¨¾î §º÷ó¾Å÷?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - ʧÃì¸Ê¸¡Ãõ" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "¯í¸û Åý¦À¡ÕÇ¢ø ¸Ê¸¡Ãõ GMTìÌ «¨ÁóÐûǾ¡?" - -#: clock.pl:131 -msgid "Reset" -msgstr "¿¢¨Ä Á£ð¼ø" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "ÀðÊ ÅÊŨÁôÒ ¨ÁÂõ" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -501,26 +486,43 @@ msgstr "" "\n" "¿£í¸û ±ó¾ Àðʨ ÅÊŨÁì¸ Å¢ÕõÒ¸¢È¢÷¸û" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "«¨ÁôÒ ÀðÊ" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "ÅÊŨÁ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "ÀÂÉ÷ ÀðÊ" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "ÓÊó¾Ð" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "«îÍ ÅÊŨÁôÒ" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "¿£í¸û ¯í¸û «î¨º þíÌ ÅÊŨÁì¸Ä¡õ" + +#~ msgid "DrakConf: error" +#~ msgstr "ʧÃìÅÊŨÁôÀ¡ý;À¢¨Æ" + +#~ msgid "Quit" +#~ msgstr "¦ÅǢø" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "ÅÊŨÁôÒ째¡ô¨À «Ä¸¢Îõ §À¡Ð\n" +#~ " À¢¨Æ" + +#~ msgid "Can't find any program\n" +#~ msgstr "±ó¾ ¿¢Ã¨ÄÔõ ¸¡½ ÓÊÂÅ¢ø¨Ä\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2000-08-01 16:24+0200\n" "Last-Translator: Dilshod Marupov <abdula@khujandcomptech.dyn.tj>\n" "Language-Team: Tajik\n" @@ -18,508 +18,493 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: хатогӣ" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "" + +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Соати Минтақа" -#: placeholder.h:8 -msgid "Quit" -msgstr "Баромадан" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Соатиминтақаи шумо кадом?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" msgstr "" -"Хатогӣ ҳангоми таҷзиÑи\n" -"файли танзимдарорӣ." -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Ягон барнома ёфта намешавад\n" +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Соати Ñахтафзори шумо ба GMT гузошта шудааÑÑ‚?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Бекор кардан" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Бознишондан" -#: control-center:60 +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "Маркази Идоракунии Mandrake %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "Ð˜Ð»Ñ‚Ð¸Ð¼Ð¾Ñ Ð¿Ð¾Ð¸Ð´Ð° иÑтед. Корандозӣ..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "ДиÑки Пурборкунӣ" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Танзимдарории Пурборкунӣ" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Ðамоиш" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Сахтафзор" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Муш" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Чопгар" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "Муш" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Забонак" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 #, fuzzy msgid "Hard Drives" msgstr "Сахтафзор" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 #, fuzzy msgid "Partition Sharing" msgstr "ТақÑимкунии ПайваÑткунӣ" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "ПайваÑткунӣ" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "ТақÑимкунии ПайваÑткунӣ" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "Маркази Танзимдарории Меню" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "СавиÑи Бехатарӣ" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Девориоташӣ" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Менюҳо" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Хизматҳо" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Ҳуруфҳо" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Соат ва Сана" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 #, fuzzy msgid "Console" msgstr "Пӯшидан" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/Mandrake_Expert" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Мудири Ðармафзор" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "Хизматҳо" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "Соати Минтақа" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Пурборкунӣ" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Сахтафзор" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 #, fuzzy msgid "Network & Internet" msgstr "Шабака ва Интернет" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Бехатарӣ" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "СиÑтем" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Мудири Ðармафзор" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "Маркази Танзимдарории Меню" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Маркази Идоракунии Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 #, fuzzy msgid "Please wait..." msgstr "Ð˜Ð»Ñ‚Ð¸Ð¼Ð¾Ñ Ð¿Ð¾Ð¸Ð´Ð° иÑтед. Корандозӣ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Бекор кардан" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "" "-monotype-arial-medium-r-normal-*-20-*-*-*-p-*-iso10646-1,-*-clearlyu-medium-" "r-normal--17-*-100-100-p-*-iso10646-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 #, fuzzy msgid "Welcome to the Mandrake Control Center" msgstr "Дар бораи - Маркази Идоракунии Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ин файлро барои хондан кушода намешавад: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "СиÑтем:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Ðоми Компютор:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "РивоÑти ÐÑоÑÓ£:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Мошина:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "fork намешавад: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Пӯшидан" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Дар бораи - Маркази Идоракунии Mandrake" -#: control-center:733 +#: ../control-center_.c:736 #, fuzzy msgid "Author: " msgstr "Муаллифҳо: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "Муаллифҳо: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Маркази Идоракунии Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Ҳуқуқи муаллифӣ (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Огоҳӣ: Браузер муаÑн нашудааÑÑ‚" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Огоҳи Бехатарӣ: Ман рухÑати ба интернет ҳамчун корванди root пайваÑÑ‚ шудан " "надорам" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Файл" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Файл" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Баромадан" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "" - -#: control-center:791 +#: ../control-center_.c:794 #, fuzzy msgid "/Display _Logs" msgstr "Ðамоиш" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_ÐÑ€Ó£" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/ÐÑ€Ó£" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Маърӯзаи Ғалат" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Дар бораи..." -#: control-center:825 +#: ../control-center_.c:828 #, fuzzy msgid "/Display Logs" msgstr "Ðамоиш" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "" -#: clock.pl:47 -msgid "DrakClock" -msgstr "" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Соати Минтақа" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Соатиминтақаи шумо кадом?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Соати Ñахтафзори шумо ба GMT гузошта шудааÑÑ‚?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Бознишондан" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Маркази Танзимдарории Меню" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -529,30 +514,47 @@ msgstr "" "\n" "Менюи хоÑтатонро интихоб кунед барои танзимдарорӣ" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Менюи СиÑтемӣ" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Танзимдарорӣ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Менюи корванд" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: хатогӣ" + +#~ msgid "Quit" +#~ msgstr "Баромадан" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Хатогӣ ҳангоми таҷзиÑи\n" +#~ "файли танзимдарорӣ." + +#~ msgid "Can't find any program\n" +#~ msgstr "Ягон барнома ёфта намешавад\n" + #, fuzzy #~ msgid "/File/_New" #~ msgstr "/Файл" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.90\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-04-20 23:53GMT\n" "Last-Translator: Wachara Chinsettawong <wachara@yahoo.com>\n" "Language-Team: Thai <wachara@yahoo.com>\n" @@ -15,496 +15,481 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: à¡Ô´¢éͼԴ¾ÅÒ´" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "àÅÔ¡" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "ªèǧàÇÅÒ" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"à¡Ô´¡ÒüԴ¾ÅÒ´¢³Ðà¢Õ¹\n" -"ä¿Åì config" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "ªèǧàÇÅÒ-DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "äÁèÊÒÁÒöËÒâ»Ãá¡ÃÁã´æä´é\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "¤Ø³ãªéªèǧàÇÅÒã´? " + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT-DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "¤Ø³µéͧ¡ÒÃãËéà«çµ¹ÒÌÔ¡ÒÎÒÃì´áÇÃìà»ç¹ GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "¡àÅÔ¡" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "àÃÔèÁµé¹ãËÁè" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake °Ò¹¤Çº¤ØÁ" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "â»Ã´ÃÍÊÑ¡¤ÃÙè..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Boot Disk" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Boot Config" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "µÔ´µÑé§â´ÂÍѵâ¹ÁѵÔ" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Display" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "Hardware" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Mouse" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "à¤Ã×èͧ¾ÔÁ¾ì" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "¼Ùéãªé" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "¤ÕÂìºÍÃì´" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "ÎÒÃì´ä´Ãì" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "¨Ø´àÁéÒ·ì¢Í§ NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "¨Ø´àÁéÒ·ì¢Í§ Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "¨Ø´àÁéÒ·ì¢Í§ WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "áªÃì¾ÒÃìµÔªÑè¹" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Connection" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Connection Sharing" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "¡Ó˹´¡ÒþÔÁ¾ì" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "ÃдѺ¤ÇÒÁ»ÅÍ´ÀÑÂ" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "Firewalling" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menus" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Services" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "¿Í¹Êì" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Çѹ·ÕèáÅÐàÇÅÒ" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logs" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Console" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "Software Manager" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 #, fuzzy msgid "DNS Client" msgstr "client" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 #, fuzzy msgid "News" msgstr "¢èÒÇ" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "à«ÔÃì¿àÇÍÃì" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "ªèǧàÇÅÒ" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Boot" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Hardware" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Mount Points" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "à¹çµàÇÔÃ줡ѺÍÔ¹àµÍÃìà¹çµ" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "¤ÇÒÁ»ÅÍ´ÀÑÂ" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "System" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "Software Manager" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "¡ÒáÓ˹´¢éͤÇÒÁàµ×͹â´Â Mail/SMS" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake °Ò¹¤Çº¤ØÁ %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "â»Ã´ÃÍÊÑ¡¤ÃÙè..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "¡àÅÔ¡" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-Norasi-medium-r-normal--20-*-*-*-p-*-tis620-0,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "ÂÔ¹´Õµé͹ÃѺÊÙè°Ò¹¤Çº¤ØÁ¢Í§ Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "äÁèÊÒÁÒöÍèÒ¹ä¿Åì¹Õéä´é: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "System:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Hostname:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Kernel Version:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Machine:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "äÁèÊÒÁÒö fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "»Ô´" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "à¡ÕèÂǡѺ - Mandrake °Ò¹¤Çº¤ØÁ" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "¼Ùéáµè§: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "¼Ùéáµè§: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake °Ò¹¤Çº¤ØÁ %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "¢éͤÇÃÃÐÇѧ:äÁèä´éàÅ×Í¡ browser" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "à¾×èͤÇÒÁ»ÅÍ´ÀÑÂ: äÁèÊÒÁÒöàª×èÍÁµèÍ internet à»ç¹ root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_ä¿Åì" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/ä¿Åì" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_àÅÔ¡" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Options" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Options" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/ÅçÍ¡ÊÓËÃѺ¡ÒÃáÊ´§¼Åº¹Ë¹éÒ¨Í" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Options" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_âËÁ´½Ñ§" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_¸ÕÁ" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/¸ÕÁ" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 #, fuzzy msgid "/_More themes" msgstr "/_¸ÕÁ" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/ªèÇÂàËÅ×Í" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/ªèÇÂàËÅ×Í" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_à¡ÕèÂǡѺ..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/ÅçÍ¡ÊÓËÃѺ¡ÒÃáÊ´§¼Åº¹Ë¹éÒ¨Í" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/âËÁ´½Ñ§" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "ªèǧàÇÅÒ" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "ªèǧàÇÅÒ-DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "¤Ø³ãªéªèǧàÇÅÒã´? " - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT-DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "¤Ø³µéͧ¡ÒÃãËéà«çµ¹ÒÌÔ¡ÒÎÒÃì´áÇÃìà»ç¹ GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "àÃÔèÁµé¹ãËÁè" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menu Configuration Center" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -514,30 +499,47 @@ msgstr "" "\n" "àÅ×Í¡ãªéÃÒ¡Ò÷Õè¤Ø³µéͧ¡Ò÷ӡÒûÃѺáµè§" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "System menu" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "·Ó¡ÒûÃѺáµè§.." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu ¼Ùéãªé " -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "ãªéä´é" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "¡Ó˹´¡ÒþÔÁ¾ì" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "¤ÅÔê¡·Õè¹Õèà¾×èÍ¡Ó˹´Ãкº¡ÒþÔÁ¾ì" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: à¡Ô´¢éͼԴ¾ÅÒ´" + +#~ msgid "Quit" +#~ msgstr "àÅÔ¡" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "à¡Ô´¡ÒüԴ¾ÅÒ´¢³Ðà¢Õ¹\n" +#~ "ä¿Åì config" + +#~ msgid "Can't find any program\n" +#~ msgstr "äÁèÊÒÁÒöËÒâ»Ãá¡ÃÁã´æä´é\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-11 02:23+0300\n" "Last-Translator: Ömer Fadıl USTA <omer_fad@hotmail.com>\n" "Language-Team: Turkish <tr@li.org>\n" @@ -16,417 +16,430 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: hata" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Çık" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Zaman Dilimi" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Yapılandırma dosyası\n" -"ayrıştırılırken hata." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Zaman Dilimi - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Hiçbir uygulama bulunamıyor\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "BulunduÄŸunuz zaman dilimi hangisi?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Donanım saatiniz GMT'ye göre mi ayarlı?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "Tamam" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Ä°ptal" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Sıfırla" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake Denetim Merkezi" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Yükleniyor... Lütfen Bekleyiniz" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Açılış Disketi" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Önyükleme Yapılandırması" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Otomatik Kurulum" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Ekran" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Çözünürlük" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Ekran Kartı" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Donanım Listesi" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Fare" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Yazıcı" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Tarayıcı" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Kullanıcılar" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Klavye" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Sabit Sürücüler" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS baÄŸlantı noktaları" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba baÄŸlantı noktaları" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV baÄŸlantı noktaları" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Disk Bölümü Paylaşımı" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "BaÄŸlantı" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "BaÄŸlantı Paylaşımı" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Vekil Sunucu Yapılandırması" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Güvenlik Düzeyi" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menüler" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Hizmetler" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Yazı Tipleri" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Tarih ve Zaman" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Günlük Kayıtları" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Konsol" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Yazılımı Yükle" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Yazılımı Kaldır" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Güncellemesi" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Yazılım Kaynak Yöneticisi" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS Ä°stemci (client)" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy (Vekil Sunucu)" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Sunucu" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Zaman" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Önyükleme" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Donanım" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "BaÄŸlantı Noktaları" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD Yazıcı" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Disket" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "AÄŸ & Ä°nternet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Güvenlik" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistem" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Yazılım Yöneticisi" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Sunucu Yapılandırması" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake Denetim Merkezi %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Geçerli modulde yapılan düzenlemeler kaydedilmeyecek." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Lütfen bekleyiniz..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Ä°ptal" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-9,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Mandrake Denetim Merkezine HoÅŸgeldiniz" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "okumak için ÅŸu dosya açılamıyor: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistem:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Makina Adı:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Çekirdek Sürümü:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Makina:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "%s baÅŸlatılamadı (fork)" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "Tamam" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Kapat" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Daha çok tema" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Yeni temalar alınıyor" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Ek Temalar" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Ek temaları www.damz.net'ten alabilirsiniz" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Hakkında - Mandrake Kontrol Merkezi" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Yazar: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Sanat Çalışmaları: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake Denetim Merkezi %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Tel'if Hakkı (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Uyarı : Tarayıcı belirtilmedi" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Güvenlik Uyarısı: Ä°nternet'e root kullanıcı olarak baÄŸlanmaya izin verilmiyor" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Dosya" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Dosya" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/Çı_k" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Seçenekler" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Seçenekler" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/_Kayıtları Göster" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Seçenekler" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Gömülü Kip" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Temalar" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Temalar" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -434,67 +447,39 @@ msgstr "" "Bu eylem denetim merkezini yeniden baÅŸlatacaktır.\n" "KaydedilmemiÅŸ deÄŸiÅŸiklikler yitirilecek (eski durumuna gelecek)." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Daha çok tema" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Yardım" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Yardım" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Hata raporla" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/Hakkın_da..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Kayıtları Göster" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Gömülü Kip" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Zaman Dilimi" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Zaman Dilimi - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "BulunduÄŸunuz zaman dilimi hangisi?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Donanım saatiniz GMT'ye göre mi ayarlı?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Sıfırla" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Menü Yapılandırma Merkezi" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -504,30 +489,47 @@ msgstr "" "\n" "Hangi menüyü düzenleyeceÄŸinizi seçiniz" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Sistem menüsü" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Yapılandır..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Kullanıcı menüsü" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Tamamlandı" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Yazdırma yapılandırması" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Yazıdırma sistemini yapılandırmak için buraya tıktayın" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: hata" + +#~ msgid "Quit" +#~ msgstr "Çık" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Yapılandırma dosyası\n" +#~ "ayrıştırılırken hata." + +#~ msgid "Can't find any program\n" +#~ msgstr "Hiçbir uygulama bulunamıyor\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.90\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-02-25 17:02+0200\n" "Last-Translator: Sergey Ribalchenko <fisher@obu.ck.ua>\n" "Language-Team: Ukrainian <linux@linux.org.ua>\n" @@ -15,499 +15,484 @@ msgstr "" "Content-Type: text/plain; charset=koi8-u\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: ÐÏÍÉÌËÁ" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "÷ÉȦÄ" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "þÁÓÏ×Á ÚÏÎÁ" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"ðÏÍÉÌËÁ ÒÏÚ¦ÂÒÁÎÎÑ\n" -"ÆÁÊÌÕ ËÏÎƦÇÕÒÁæ§." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "þÁÓÏ×Á ÚÏÎÁ - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "îÅ ÍÏÖÕ ÚÎÁÊÔÉ ÐÒÏÇÒÁÍÕ\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "÷ ÑË¦Ê ÞÁÓÏ×¦Ê ÓÍÕÚ¦ ×É ÚÎÁÈÏÄÉÔÅÓØ?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "þÉ ×ÁÛ ÇÏÄÉÎÎÉË ×ÓÔÁÎÏ×ÌÅÎÉÊ ÄÏ GMT (ÞÁÓ ÐÏ ½Ò¦ÎצÞÕ)?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "çÁÒÁÚÄ" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "óËÁÓÕ×ÁÔÉ" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "óËÉÎÕÔÉ" + +#: ../control-center_.c:64 #, fuzzy msgid "Mandrake Control Center" msgstr "ãÅÎÔÒ ËÅÒÕ×ÁÎÎÑ Mandrake %s" -#: control-center:65 +#: ../control-center_.c:69 #, fuzzy msgid "Loading... Please wait" msgstr "úÁÞÅËÁÊÔÅ, ÂÕÄØ ÌÁÓËÁ..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "úÁ×ÁÎÔÁÖ. ÄÉÓË" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "ðÁÒÁÍÅÔÒÉ ÚÁ×ÁÎÔÁÖÅÎÎÑ" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "á×ÔÏ-÷ÓÔÁÎÏ×ÌÅÎÎÑ" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "äÉÓÐÌÅÊ" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 #, fuzzy msgid "Hardware List" msgstr "úÁ̦ÚÏ" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "íÉÛÁ" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "äÒÕËÁÒËÁ" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 #, fuzzy msgid "Users" msgstr "ËÏÒÉÓÔÕ×ÁÞ" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "ëÌÁצÁÔÕÒÁ" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "öÏÒÓÔ˦ ÄÉÓËÉ" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "ôÏÞËÉ ÍÏÎÔÕ×ÁÎÎÑ NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "ôÏÞËÉ ÍÏÎÔÕ×ÁÎÎÑ Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "ôÏÞËÉ ÍÏÎÔÕ×ÁÎÎÑ WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "òÏÚÐÏÄ¦Ì ÒÏÚĦ̦×" # !!! ÔÕÔ sharing -- ÎÅ ÚÏ×Ó¦Í "ÒÏÚÐÏĦÌ", ÓËÏÒ¦ÛÅ "ÓÕͦÓÎÅ ×ÉËÏÒÉÓÔÁÎÎÑ" IMO -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "ú'¤ÄÎÁÎÎÑ" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "òÏÚÐÏÄ¦Ì Ú'¤ÄÎÁÎÎÑ" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 #, fuzzy msgid "Proxy Configuration" msgstr "ìÁÛÔÕ×ÁÎÎÑ ÄÒÕËÕ" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "ò¦×ÅÎØ ÂÅÚÐÅËÉ" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 #, fuzzy msgid "Firewall" msgstr "æÁÊÒ×ÏÌ̦Î" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "íÅÎÀ" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "óÅÒצÓÉ" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "ûÒÉÆÔÉ" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "äÁÔÁ ÔÁ ÞÁÓ" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "öÕÒÎÁÌÉ" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "ëÏÎÓÏÌØ" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 #, fuzzy msgid "Mandrake Update" msgstr "/Mandrake_Expert" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 #, fuzzy msgid "Software Sources Manager" msgstr "íÅÎÅÄÖÅÒ ðú" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "ðÒÏËÓ¦" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 #, fuzzy msgid "Server" msgstr "óÅÒ×ÅÒÉ" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 #, fuzzy msgid "Time" msgstr "þÁÓÏ×Á ÚÏÎÁ" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "úÁ×ÁÎÔÁÖÅÎÎÑ" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "úÁ̦ÚÏ" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "ôÏÞËÉ ÍÏÎÔÕ×ÁÎÎÑ" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD-ÚÁÐÉÓÕ×ÁÞ" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "äÉÓËÅÔÁ" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "íÅÒÅÖÁ ÔÁ ¶ÎÔÅÒÎÅÔ" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "âÅÚÐÅËÁ" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "óÉÓÔÅÍÁ" -#: control-center:235 +#: ../control-center_.c:239 #, fuzzy msgid "Software Management" msgstr "íÅÎÅÄÖÅÒ ðú" -#: control-center:244 +#: ../control-center_.c:248 #, fuzzy msgid "Server Configuration" msgstr "îÁÌÁÇÏÄÉÔÉ ÐÏÐÅÒÅÄÖÅÎÎÑ ÐÏÛÔÏÀ/SMS" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "ãÅÎÔÒ ËÅÒÕ×ÁÎÎÑ Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "úÁÞÅËÁÊÔÅ, ÂÕÄØ ÌÁÓËÁ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "óËÁÓÕ×ÁÔÉ" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-koi8-u,*-r-*" # !!! ÃÅ ÚÌÁÍÁ¤ ÓÉÓÔÅÍÕ, ×ÓÔÁÎÏ×ÌÅÎÕ Õ CP1251, ÝÏÓØ ÍÅΦ ÔÁË Ð¦ÄËÁÚÕ¤. -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "ìÁÓËÁ×Ï ÐÒÏÓÉÍÏ ÄÏ ãÅÎÔÒÕ ËÅÒÕ×ÁÎÎÑ Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ÎÅ ÍÏÖÕ ×¦ÄËÒÉÔÉ ÃÅÊ ÆÁÊÌ ÄÏ ÞÉÔÁÎÎÑ: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "óÉÓÔÅÍÁ:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "¶Í'Ñ ÍÁÛÉÎÉ:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "÷ÅÒÓ¦Ñ ÑÄÒÁ" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "íÁÛÉÎÁ:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ÎÅ ×ÄÁÌÏÓÑ ÒÏÚÇÁÌÕÄÉÔÉ: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "çÁÒÁÚÄ" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "úÁËÒÉÔÉ" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "ï ÐÒÏÇÒÁͦ - ãÅÎÔÒ ËÅÒÕ×ÁÎÎÑ Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "á×ÔÏÒ: " -#: control-center:736 +#: ../control-center_.c:739 #, fuzzy msgid "Artwork: " msgstr "á×ÔÏÒ: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "ãÅÎÔÒ ËÅÒÕ×ÁÎÎÑ Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "ðÒÁ×Á ÎÁ ÒÏÚÐÏ×ÓÀÄÖÅÎÎÑ ÚÁÓÔÅÒÅÖÅΦ (c) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "ðÏÐÅÒÅÄÖÅÎÎÑ: ÎÅ ×ËÁÚÁÎÏ ÐÅÒÅÇÌÑÄÁÞÁ" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "ðÏÐÅÒÅÄÖÅÎÎÑ ÂÅÚÐÅËÉ: ÍÅΦ ÎÅ ÄÏÚ×ÏÌÅÎÏ Ú'¤ÄÎÁÎÎÑ Ú ¶ÎÔÅÒÎÅÔ ×¦Ä ¦ÍÅΦ root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_F æÁÊÌ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/F æÁÊÌ" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Q ÷ÉȦÄ" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_O ïÐæ§" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/O ïÐæ§" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/_L æÁÊÌÉ ÖÕÒÎÁ̦×" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/O ïÐæ§" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_E ÷ÍÏÎÔÏ×ÁÎÉÊ ÒÅÖÉÍ" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_T ôÅÍÉ" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/T ôÅÍÉ" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." msgstr "" -#: control-center:813 +#: ../control-center_.c:816 #, fuzzy msgid "/_More themes" msgstr "/_T ôÅÍÉ" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_H äÏÐÏÍÏÇÁ" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/H äÏÐÏÍÏÇÁ" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_R ðÏצÄÏÍÉÔÉ ÐÒÏ ÐÏÍÉÌËÕ" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_A Ï ÐÒÏÇÒÁͦ..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/L æÁÊÌÉ ÖÕÒÎÁ̦×" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/E ÷ÍÏÎÔÏ×ÁÎÉÊ ÒÅÖÉÍ" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "þÁÓÏ×Á ÚÏÎÁ" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "þÁÓÏ×Á ÚÏÎÁ - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "÷ ÑË¦Ê ÞÁÓÏ×¦Ê ÓÍÕÚ¦ ×É ÚÎÁÈÏÄÉÔÅÓØ?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "þÉ ×ÁÛ ÇÏÄÉÎÎÉË ×ÓÔÁÎÏ×ÌÅÎÉÊ ÄÏ GMT (ÞÁÓ ÐÏ ½Ò¦ÎצÞÕ)?" - -#: clock.pl:131 -msgid "Reset" -msgstr "óËÉÎÕÔÉ" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "ãÅÎÔÒ ËÏÎƦÇÕÒÕ×ÁÎÎÑ ÍÅÎÀ" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -517,30 +502,47 @@ msgstr "" "\n" "÷ÉÂÅÒ¦ÔØ, ÑËÅ ÓÁÍÅ ÍÅÎÀ ×É ÂÁÖÁ¤ÔÅ ÎÁÌÁÛÔÕ×ÁÔÉ" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "óÉÓÔÅÍÎÅ ÍÅÎÀ" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "îÁÌÁÛÔÕ×ÁÔÉ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "íÅÎÀ ËÏÒÉÓÔÕ×ÁÞÁ" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "úÒÏÂÌÅÎÏ" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "ìÁÛÔÕ×ÁÎÎÑ ÄÒÕËÕ" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "ëÌÁÃΦÔØ ÔÕÔ, ÝÏ ÎÁÌÁÛÔÕ×ÁÔÉ ÓÉÓÔÅÍÕ ÄÒÕËÕ" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: ÐÏÍÉÌËÁ" + +#~ msgid "Quit" +#~ msgstr "÷ÉȦÄ" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "ðÏÍÉÌËÁ ÒÏÚ¦ÂÒÁÎÎÑ\n" +#~ "ÆÁÊÌÕ ËÏÎƦÇÕÒÁæ§." + +#~ msgid "Can't find any program\n" +#~ msgstr "îÅ ÍÏÖÕ ÚÎÁÊÔÉ ÐÒÏÇÒÁÍÕ\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-24 12:54+0700\n" "Last-Translator: Trinh Minh Thanh <tmthanh@linuxmail.org>\n" "Language-Team: Gnome-Vi Team <Gnomevi-list@lists.sourceforge.net>\n" @@ -13,417 +13,430 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: Lá»—i" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Thoát" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Múi Giá»" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Lá»—i khi phân tÃch\n" -"táºp tin cấu hình." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Múi giá» - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Không tìm thấy chÆ°Æ¡ng trình nà o\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Múi giá» của bạn là gì?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Có phải đồng hồ của máy đặt theo GMT?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "OK" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Bá» qua" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Thiết láºp lại" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Trung Tâm Äiá»u Khiển Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Äang nạp... Hãy chá»" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "ÄÄ©a Khởi Äá»™ng" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Cấu hình Khởi Ä‘á»™ng" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Tá»± Ä‘á»™ng Cà i đặt" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Monitor" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Äá»™ Phân Giải" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Hiển thị" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Danh sách Phần cứng" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Chuá»™t" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Máy in" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Máy quét" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "NgÆ°á»i Dùng" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Bà n phÃm" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Các ổ Ä‘Ä©a cứng" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Các Ä‘iểm gắn kết NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Các Ä‘iểm gắn kết Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Các Ä‘iểm gắn kết WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Chia Sẻ Phân Vùng" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Kết nối" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Chia sẻ Kết nối" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Cấu hình Proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Mức Ä‘á»™ Bảo máºt" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "Láºp kế hoạch các ChÆ°Æ¡ng trình" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "TÆ°á»ng lá»a" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "Sao LÆ°u" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Các Menu" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Các Dịch vụ" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Phông chữ" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Ngà y& Giá»" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Bản ghi (log)" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Console" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Cà i Äặt Phần Má»m" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Gỡ Bá» Phần Má»m" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Cáºp Nháºt Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Trình Quản lý Các Nguồn Phần má»m" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "Card TV" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Máy khách DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "Tin tức" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Máy chủ" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Thá»i gian" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Khởi Ä‘á»™ng" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Phần cứng" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Äiểm Gắn kết" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Ghi CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "ÄÄ©a má»m" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Mạng & Internet" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Bảo máºt" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Hệ thống" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Quản Lý Phần Má»m" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Cấu hình Máy chủ" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Trung Tâm Äiá»u Khiển Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Sẽ không lÆ°u lại những thay đổi thá»±c hiện trong mô-Ä‘un hiện thá»i." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Hãy chá» ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Bá» qua" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso10646-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Chà o mừng Trung Tâm Äiá»u Khiển Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "không thể mở táºp tin nà y để Ä‘á»c: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Hệ thống:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Tên chủ (hostname):" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Phiên bản Kernel:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Máy tÃnh:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "không thể phân nhánh (fork): %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "OK" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Äóng" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Thêm Theme" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Lấy các theme má»›i" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Các theme bổ sung" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Lấy thêm các theme tại www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Nói vá» - Trung Tâm Äiá»u Khiển Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Tác giả: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Artwork: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Trung Tâm Äiá»u Khiển Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Bản quyá»n (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Cảnh báo: chÆ°a chỉ định trình duyệt" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Cảnh báo bảo máºt: không được phép kết nối vá»›i Internet bằng ngÆ°á»i dùng root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Tệp" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Tệp" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/_Thoát" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Tùy chá»n" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Tùy chá»n" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Hiển thị _Bản ghi (log)" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Tùy chá»n" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/_Chế Ä‘á»™ Nhúng" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Themes" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Themes" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -431,67 +444,39 @@ msgstr "" "Việc nà y sẽ khởi Ä‘á»™ng lại trung tâm Ä‘iá»u khiển.\n" "Má»i thay đổi chÆ°a được áp dụng sẽ mất." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Thêm theme" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Giúp" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Giúp" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Báo cáo lá»—i" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/_Giá»›i thiệu..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Hiển thị Bản ghi (log)" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Chế Ä‘á»™ Nhúng" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Múi Giá»" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Múi giá» - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Múi giá» của bạn là gì?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Có phải đồng hồ của máy đặt theo GMT?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Thiết láºp lại" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Trung Tâm Cấu Hình Menu" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -501,30 +486,47 @@ msgstr "" "\n" "Hãy chá»n menu bạn muốn cấu hình" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu hệ thống" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Cấu hình..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu ngÆ°á»i dùng" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Hoà n thà nh" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Cấu hình việc in ấn" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Nhấn và o đây để cấu hình hệ thống in ấn" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: Lá»—i" + +#~ msgid "Quit" +#~ msgstr "Thoát" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Lá»—i khi phân tÃch\n" +#~ "táºp tin cấu hình." + +#~ msgid "Can't find any program\n" +#~ msgstr "Không tìm thấy chÆ°Æ¡ng trình nà o\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -690,9 +692,6 @@ msgstr "Nhấn và o đây để cấu hình hệ thống in ấn" #~ msgid "Save as.." #~ msgstr "LÆ°u là ..." -#~ msgid "TV Cards" -#~ msgstr "Card TV" - #~ msgid "Click here to install standard themes:" #~ msgstr "Nhấn và o đây để cà i đặt các theme chuẩn:" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2000-05-16 16:24+0200\n" "Last-Translator: Pablo Saratxaga <pablo@mandrakesoft.com>\n" "Language-Team: Walon <linux-wa@chanae.alphanet.ch>\n" @@ -15,417 +15,430 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf: aroke" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Cwiter" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "Coisse d' eureye" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"Åk n' a nén stî come dji\n" -"lijheve li fitchî d' apontiaedje." +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "Coisse d' eureye - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "Dji n' pou trover nou programe\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "Dins kéne coisse d' eureye vikez?" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "Coisse GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "Vosse éndjole e-st ele metowe e tins universel (GMT)?" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "'l est bon" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "Rinoncî" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "Rimete a zero" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Cinte di contrôle di Mandrake" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "Tårdjîz on pô s' i vs plait... dji tchedje" -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "Plakete d' enondaedje" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "Apontiaedje di l' enondaedje" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "Otoastalaedje" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "Waitroûle" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "Finté" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Håynaedje" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Djivêye del éndjolreye" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Sori" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "Sicrirece" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "Sicanrece" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Uzeus" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Taprece" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Deurès plakes" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "Ponts di montaedje NFS" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Ponts di montaedje Samba" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "Ponts di montaedje WebDAV" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "Pårtaedje di pårticions" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Raloyaedje" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Pårtaedje do raloyaedje" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "Apontiaedje do proxy" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "Livea di såvrité" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "Côpe feu" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "Copeyes di såvrité" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "Menus" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "Siervices" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "Fontes" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "Date & eure" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "Logs" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "Conzôle" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "Astaler des programes" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "Oister des programes" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Metaedjes a djoû di Mandrake" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Manaedjeu des sourdants des programes" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "Cåtes tévé" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "Cliyant DNS" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Sierveu" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Eure" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Waibe" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "Enondaedje" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Éndjolreye" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "Ponts di montaedje" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "Plake lazer" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "Broûleu di CD" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "Plakete" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Plakete ZIP" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "Rantoele & Daegntoele" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "Såvrité" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "Sistinme" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Manaedjeu di programes" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "Apontiaedje do sierveu" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Cinte di contrôle di Mandrake %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Les candjmints k' ont stî fwaits el module ni sront nén schapés." -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "Tårdjîz on pô s' i vs plait..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "Rinoncî" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-*-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Wilicome å cinte di contrôle di Mandrake" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "dji n' sai drovi ci fitchî chal po-z î lere: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "Sistinme:" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "No do lodjoe:" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "Modêye do nawea:" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "Éndjole:" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "dji n' sai fé on fork: %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "'l est bon" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Clôre" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "Co des ôtes tinmes" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "Aberweter des noveas tinmes" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "Tinmes di rawete" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "Aberweter des noveas tinmes di www.damz.net" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Å dfait - Cinte di contrôle di Mandrake" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "Oteur: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "Dessinaedjes: " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Hélène Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Cinte di contrôle di Mandrake %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Copyright © 2001 MandrakeSoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "Adviertixhmint: nou betchteu di dné" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "" "Adviertixhmint di såvrité: dji n' pou m' raloyî al daegntoele come root" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/_Fitchî" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Fitchî" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/Moussî _foû" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/_Tchuzes" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Tchuzes" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Håynaedje des _djournås" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Tchuzes" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/Môde _ravalêyes" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/_Tinmes" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Tinmes" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -433,67 +446,39 @@ msgstr "" "Ciste accion chal va rinonder li cinte di contrôle.\n" "Tot candjmint ki n' areut nén stî metou en alaedje srè pierdou." -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/_Co des ôtes tinmes" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/_Aidance" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/Aidance" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/_Rapoirter on bug" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/Å _dfait..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Håynaedje des djournås" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/Môde ravalêyes" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "Coisse d' eureye" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "Coisse d' eureye - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "Dins kéne coisse d' eureye vikez?" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "Coisse GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "Vosse éndjole e-st ele metowe e tins universel (GMT)?" - -#: clock.pl:131 -msgid "Reset" -msgstr "Rimete a zero" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "Cinte d' apontiaedje des menus" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -503,30 +488,47 @@ msgstr "" "\n" "Tchoezixhoz ké menu ki vos vloz apontyî" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "Menu do sistinme" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "Apontyî..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Menu di l' uzeu" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Fwait" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "Apontiaedje di l' eprimaedje" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "Clitchîz chal po-z apontyî li sistinme d' eprimaedje" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf: aroke" + +#~ msgid "Quit" +#~ msgstr "Cwiter" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "Åk n' a nén stî come dji\n" +#~ "lijheve li fitchî d' apontiaedje." + +#~ msgid "Can't find any program\n" +#~ msgstr "Dji n' pou trover nou programe\n" + #~ msgid "logdrake" #~ msgstr "logdrake" @@ -694,9 +696,6 @@ msgstr "Clitchîz chal po-z apontyî li sistinme d' eprimaedje" #~ msgid "Save as.." #~ msgstr "Schaper eyet rlomer..." -#~ msgid "TV Cards" -#~ msgstr "Cåtes tévé" - #~ msgid "Click here to install standard themes:" #~ msgstr "Clitchîz chal po-z astaler les tinmes sitandård:" diff --git a/po/zh_CN.po b/po/zh_CN.po index 7b91dc53..5bd6620b 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.96\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-12 21:25+0800\n" "Last-Translator: ÌÀÊ«Óï <shiyutang@netscape.net>\n" "Language-Team: <future-cjk@mandrakesoft.com>\n" @@ -18,416 +18,429 @@ msgstr "" "Content-Type: text/plain; charset=gb2312\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf£º´íÎó" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Í˳ö" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "ʱÇø" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"·ÖÎöÅäÖÃÎļþʱ\n" -"³ö´í¡£" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "ʱÇø - DrakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "ÎÞ·¨ÕÒµ½ÈκγÌÐò\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "ÄúÔÚÄÄÒ»¸öʱÇø£¿" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "ÄúµÄϵͳʱÖÓÊÇ·ñÉ趨Ϊ GMT£¿" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "È·¶¨" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "È¡Ïû" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "¸´Î»" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake ¿ØÖÆÖÐÐÄ" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "ÇëµÈ´ý×°Èë..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "¿ª»úÆô¶¯ÅÌ" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "¿ª»úÅäÖÃ" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "×Ô¶¯°²×°" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "ÏÔʾÆ÷" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "·Ö±æÂÊ" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "ÏÔʾ" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "Ó²¼þ" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "Êó±ê" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "´òÓ¡»ú" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "ɨÃèÒÇ" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "Óû§" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "¼üÅÌ" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "Ó²¼þ" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "ÍøÂçÎļþϵͳÔØÈëµã" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba ÔØÈëµã" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV ÔØÈëµã" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "·ÖÇø¹²Ïí" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "Á¬½Ó" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "Á¬½Ó¹²Ïí" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "´úÀí·þÎñÆ÷ÉèÖÃ" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "°²È«¼¶±ð" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "·À»ðǽ" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "²Ëµ¥" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "·þÎñ" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "×ÖÌå" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "ÈÕÆÚºÍʱ¼ä" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "ÈÕÖ¾" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "¿ØÖÆ̨" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "°²×°Èí¼þ" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "жÔØÈí¼þ" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "Mandrake Éý¼¶" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "Èí¼þ×ÊÔ´¹ÜÀí" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS ¿Í»§¶Ë" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "¶¯Ì¬Ö÷»úÅäÖÃÐÒé" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "ÓòÃû·þÎñϵͳ" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "Îļþ´«ÊäÐÒé" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "ÐÂÎÅ×é" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "ºó׺" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "´úÀí" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "·þÎñÆ÷" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "ʱÇø" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "ÍøÂç" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "¿ª»ú" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "Ó²¼þ" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "ÔØÈëµã" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "CD-ROM" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD ¿Ì¼" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "ÈíÇý" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "ÍøÂç¼°ÒòÌØÍø" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "°²È«" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "ϵͳ" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "Èí¼þ¹ÜÀí" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "²Ëµ¥ÅäÖÃÖÐÐÄ" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake ¿ØÖÆÖÐÐÄ %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "ÔÚĿǰģʽÏÂËù×÷µÄÐ޸Ľ«²»»á±»±£´æ¡£" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "ÇëÉÔºò..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "È¡Ïû" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "»¶ÓÀ´µ½ Mandrake ¿ØÖÆÖÐÐÄ" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "ÎÞ·¨´ò¿ª²¢¶ÁÈ¡ %s Îļþ" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "ϵͳ£º" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "Ö÷»úÃû£º" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "ºËÐÄ°æ±¾£º" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "»úÆ÷Ãû£º" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "ÎÞ·¨´´½¨×Ó½ø³Ì£º %s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "È·¶¨" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "¹Ø±Õ" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "¸ü¶àÖ÷Ìâ" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "»ñȡеÄÖ÷Ìâ" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "¸½¼ÓÖ÷Ìâ" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "ÔÚ www.damz.net Àï»ñµÃ¸½¼ÓÖ÷Ìâ" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "¹ØÓÚ - Mandrake ¿ØÖÆÖÐÐÄ" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "×÷Õߣº" -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "ÃÀ¹¤£º" -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake ¿ØÖÆÖÐÐÄ %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "Mandrakesoft SA °æȨËùÓÐ (C) 2001" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "¾¯¸æ£ºÃ»ÓÐÖ¸¶¨ä¯ÀÀÆ÷" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "°²È«¾¯¸æ£ºroot¸ùÓû§²»ÔÊÐíÁ¬½Óµ½ÒòÌØÍø" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/Îļþ(_F)" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/Îļþ(F)" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/Í˳ö(_Q)" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/Ñ¡Ïî(_O)" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/Ñ¡Ïî(O)" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/ÏÔʾÈÕÖ¾(_L)" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/Ñ¡Ïî(O)" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/ǶÈëģʽ(_E)" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/Ö÷Ìâ(_T)" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/Ö÷Ìâ(T)" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -435,67 +448,39 @@ msgstr "" "ÕâЩÐÐΪ½«Ê¹¡°¿ØÖÆÖÐÐÄ¡±ÖØÐÂÆô¶¯¡£\n" "ËùÓÐûÓÐÓ¦Óõĸı䶼½«»á¶ªÊ§¡£" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/¸ü¶àÖ÷Ìâ(_M)" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/°ïÖú(_H)" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/°ïÖú(H)" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/¹ÊÕϱ¨¸æ(_R)" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/¹ØÓÚ(_A)..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/ÏÔʾÈÕÖ¾(D)" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/ǶÈëģʽ(E)" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "ʱÇø" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "ʱÇø - DrakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "ÄúÔÚÄÄÒ»¸öʱÇø£¿" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "ÄúµÄϵͳʱÖÓÊÇ·ñÉ趨Ϊ GMT£¿" - -#: clock.pl:131 -msgid "Reset" -msgstr "¸´Î»" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "²Ëµ¥ÉèÖÃÖÐÐÄ" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -505,30 +490,47 @@ msgstr "" "\n" "Ñ¡ÔñÄúÒªÉèÖõIJ˵¥" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "ϵͳ²Ëµ¥" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "ÕýÔÚÉèÖÃ..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "Óû§²Ëµ¥ " -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "Íê³É" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "´òÓ¡ÉèÖÃ" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "µã»÷Õâ¶ùÀ´ÉèÖôòӡϵͳ" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf£º´íÎó" + +#~ msgid "Quit" +#~ msgstr "Í˳ö" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "·ÖÎöÅäÖÃÎļþʱ\n" +#~ "³ö´í¡£" + +#~ msgid "Can't find any program\n" +#~ msgstr "ÎÞ·¨ÕÒµ½ÈκγÌÐò\n" + #~ msgid "logdrake" #~ msgstr "logdrake" diff --git a/po/zh_TW.po b/po/zh_TW.po index 31e44162..690a7c8e 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakconf 0.90\n" -"POT-Creation-Date: 2002-08-23 21:14+0200\n" +"POT-Creation-Date: 2002-08-26 11:13+0200\n" "PO-Revision-Date: 2002-08-13 00:00--800\n" "Last-Translator: Kenduest Lee <kenduest@i18n.linux.org.tw>\n" "Language-Team: Chinese <zh-l10n@linux.org.tw>\n" @@ -13,416 +13,429 @@ msgstr "" "Content-Type: text/plain; charset=Big5\n" "Content-Transfer-Encoding: 8bit\n" -#: placeholder.h:7 -msgid "DrakConf: error" -msgstr "DrakConf¡G¿ù»~" +#: ../clock.pl_.c:47 +msgid "DrakClock" +msgstr "DrakClock" -#: placeholder.h:8 -msgid "Quit" -msgstr "Â÷¶}" +#: ../clock.pl_.c:59 +msgid "Time Zone" +msgstr "®É°Ï" -#: placeholder.h:9 -msgid "" -"Error while parsing\n" -"config file." -msgstr "" -"¸ÑªR³]©wÀÉ\n" -"®Éµo¥Í¿ù»~" +#: ../clock.pl_.c:66 +msgid "Timezone - DrakClock" +msgstr "®É°Ï - DakClock" -#: placeholder.h:10 -msgid "Can't find any program\n" -msgstr "§ä¤£¨ì¥ô¦óµ{¦¡\n" +#: ../clock.pl_.c:66 +msgid "Which is your timezone?" +msgstr "±zªº©ÒÄݮɰϡH" + +#: ../clock.pl_.c:68 +msgid "GMT - DrakClock" +msgstr "GMT - DrakClock" -#: control-center:60 +#: ../clock.pl_.c:68 +msgid "Is your hardware clock set to GMT?" +msgstr "¬O§_n±NµwÅé®ÉÄÁ³]¦¨ GMT¡H" + +#: ../clock.pl_.c:113 ../control-center_.c:686 +msgid "OK" +msgstr "½T©w" + +#: ../clock.pl_.c:130 ../control-center_.c:378 ../control-center_.c:687 +msgid "Cancel" +msgstr "¨ú®ø" + +#: ../clock.pl_.c:131 +msgid "Reset" +msgstr "«³]" + +#: ../control-center_.c:64 msgid "Mandrake Control Center" msgstr "Mandrake ±±¨î¤¤¤ß" -#: control-center:65 +#: ../control-center_.c:69 msgid "Loading... Please wait" msgstr "·Ç³Æ¤¤... ½ÐµyÔ..." -#: control-center:85 control-center:159 +#: ../control-center_.c:89 ../control-center_.c:163 msgid "Boot Disk" msgstr "¶}¾÷ºÏ¤ù" -#: control-center:86 control-center:160 +#: ../control-center_.c:90 ../control-center_.c:164 msgid "Boot Config" msgstr "¶}¾÷³]©w" -#: control-center:87 control-center:161 +#: ../control-center_.c:91 ../control-center_.c:165 msgid "Auto Install" msgstr "¦Û°Ê¦w¸Ë" -#: control-center:88 control-center:167 +#: ../control-center_.c:92 ../control-center_.c:171 msgid "Monitor" msgstr "¿Ã¹õ" -#: control-center:89 control-center:168 +#: ../control-center_.c:93 ../control-center_.c:172 msgid "Resolution" msgstr "¸ÑªR«×" -#: control-center:90 control-center:169 +#: ../control-center_.c:94 ../control-center_.c:173 msgid "Display" msgstr "Åã¥Ü³]©w" -#: control-center:91 control-center:166 +#: ../control-center_.c:95 ../control-center_.c:170 msgid "Hardware List" msgstr "µwÅé²M³æ" -#: control-center:92 control-center:171 +#: ../control-center_.c:96 ../control-center_.c:176 msgid "Mouse" msgstr "·Æ¹«" -#: control-center:93 control-center:172 +#: ../control-center_.c:97 ../control-center_.c:177 msgid "Printer" msgstr "¦Lªí¾÷" -#: control-center:94 control-center:173 +#: ../control-center_.c:98 ../control-center_.c:178 msgid "Scanner" msgstr "±½´y¾¹" -#: control-center:95 control-center:228 +#: ../control-center_.c:99 ../control-center_.c:232 msgid "Users" msgstr "¨Ï¥ÎªÌ" -#: control-center:96 control-center:170 +#: ../control-center_.c:100 ../control-center_.c:175 msgid "Keyboard" msgstr "Áä½L" -#: control-center:97 control-center:179 +#: ../control-center_.c:101 ../control-center_.c:183 msgid "Hard Drives" msgstr "µwºÐ" -#: control-center:98 control-center:201 +#: ../control-center_.c:102 ../control-center_.c:205 msgid "NFS mount points" msgstr "NFS ±¾¸üÂI" -#: control-center:99 control-center:202 +#: ../control-center_.c:103 ../control-center_.c:206 msgid "Samba mount points" msgstr "Samba ±¾¸üÂI" -#: control-center:100 control-center:203 +#: ../control-center_.c:104 ../control-center_.c:207 msgid "WebDAV mount points" msgstr "WebDAV ±¾¸üÂI" -#: control-center:101 control-center:204 +#: ../control-center_.c:105 ../control-center_.c:208 msgid "Partition Sharing" msgstr "ºÏºÐ¤À¨É" -#: control-center:102 control-center:209 +#: ../control-center_.c:106 ../control-center_.c:213 msgid "Connection" msgstr "ºô¸ô³s½u" -#: control-center:103 control-center:211 +#: ../control-center_.c:107 ../control-center_.c:215 msgid "Connection Sharing" msgstr "³s½u¤À¨É" -#: control-center:104 control-center:210 +#: ../control-center_.c:108 ../control-center_.c:214 msgid "Proxy Configuration" msgstr "¥N²z²ÕºA³]©w" -#: control-center:105 control-center:216 +#: ../control-center_.c:109 ../control-center_.c:220 msgid "Security Level" msgstr "¦w¥þµ¥¯Å" -#: control-center:106 control-center:229 +#: ../control-center_.c:110 ../control-center_.c:233 msgid "Programs scheduling" msgstr "" -#: control-center:107 control-center:217 +#: ../control-center_.c:111 ../control-center_.c:221 msgid "Firewall" msgstr "¨¾¤õÀð" -#: control-center:108 control-center:230 +#: ../control-center_.c:112 ../control-center_.c:234 msgid "Backups" msgstr "" -#: control-center:109 control-center:222 +#: ../control-center_.c:113 ../control-center_.c:226 msgid "Menus" msgstr "¿ï³æ" -#: control-center:110 control-center:223 +#: ../control-center_.c:114 ../control-center_.c:227 msgid "Services" msgstr "ªA°È" -#: control-center:111 control-center:224 +#: ../control-center_.c:115 ../control-center_.c:228 msgid "Fonts" msgstr "¦r«¬" -#: control-center:112 control-center:225 +#: ../control-center_.c:116 ../control-center_.c:229 msgid "Date & Time" msgstr "¤é´Á®É¶¡" -#: control-center:113 control-center:226 control-center:386 +#: ../control-center_.c:117 ../control-center_.c:230 ../control-center_.c:393 msgid "Logs" msgstr "°O¿ýÀÉ" -#: control-center:116 control-center:227 +#: ../control-center_.c:120 ../control-center_.c:231 msgid "Console" msgstr "²×ºÝ¾÷" -#: control-center:117 control-center:237 +#: ../control-center_.c:121 ../control-center_.c:241 msgid "Install Software" msgstr "¦w¸Ë®M¥ó" -#: control-center:118 control-center:238 +#: ../control-center_.c:122 ../control-center_.c:242 msgid "Remove Software" msgstr "²¾°£®M¥ó" -#: control-center:119 control-center:239 +#: ../control-center_.c:123 ../control-center_.c:243 msgid "Mandrake Update" msgstr "§ó·s®M¥ó" -#: control-center:120 control-center:240 +#: ../control-center_.c:124 ../control-center_.c:244 msgid "Software Sources Manager" msgstr "½s¿è®M¥ó§ó·s¨Ó·½" -#: control-center:125 control-center:139 +#: ../control-center_.c:127 ../control-center_.c:174 +msgid "TV Cards" +msgstr "" + +#: ../control-center_.c:129 ../control-center_.c:143 msgid "DNS Client" msgstr "DNS ¥Î¤áºÝ" -#: control-center:126 control-center:140 +#: ../control-center_.c:130 ../control-center_.c:144 msgid "DHCP" msgstr "DHCP" -#: control-center:127 control-center:141 +#: ../control-center_.c:131 ../control-center_.c:145 msgid "DNS" msgstr "DNS" -#: control-center:128 control-center:142 +#: ../control-center_.c:132 ../control-center_.c:146 msgid "FTP" msgstr "FTP" -#: control-center:129 control-center:143 +#: ../control-center_.c:133 ../control-center_.c:147 msgid "News" msgstr "News" -#: control-center:130 control-center:144 +#: ../control-center_.c:134 ../control-center_.c:148 msgid "Postfix" msgstr "Postfix" -#: control-center:131 control-center:145 +#: ../control-center_.c:135 ../control-center_.c:149 msgid "Proxy" msgstr "Proxy" -#: control-center:132 control-center:146 +#: ../control-center_.c:136 ../control-center_.c:150 msgid "Samba" msgstr "Samba" -#: control-center:133 control-center:147 +#: ../control-center_.c:137 ../control-center_.c:151 msgid "Server" msgstr "Server" -#: control-center:134 control-center:148 +#: ../control-center_.c:138 ../control-center_.c:152 msgid "Time" msgstr "Time" -#: control-center:135 control-center:149 +#: ../control-center_.c:139 ../control-center_.c:153 msgid "Web" msgstr "Web" -#: control-center:157 +#: ../control-center_.c:161 msgid "Boot" msgstr "¶}¾÷" -#: control-center:164 +#: ../control-center_.c:168 msgid "Hardware" msgstr "µwÅé²M³æ" -#: control-center:177 +#: ../control-center_.c:181 msgid "Mount Points" msgstr "±¾¸üÂI" -#: control-center:194 +#: ../control-center_.c:198 msgid "CD-ROM" msgstr "°ßŪ¥úºÐ¾÷" -#: control-center:195 +#: ../control-center_.c:199 msgid "DVD" msgstr "DVD ¥úºÐ¾÷" -#: control-center:196 +#: ../control-center_.c:200 msgid "CD Burner" msgstr "CD ¿N¿ý¾¹" -#: control-center:197 +#: ../control-center_.c:201 msgid "Floppy" msgstr "ºÏºÐ¾÷" -#: control-center:198 +#: ../control-center_.c:202 msgid "Zip" msgstr "Zip ¸Ë¸m" -#: control-center:207 +#: ../control-center_.c:211 msgid "Network & Internet" msgstr "ºô¸ôªA°È" -#: control-center:214 +#: ../control-center_.c:218 msgid "Security" msgstr "¦w¥þ©Ê" -#: control-center:220 +#: ../control-center_.c:224 msgid "System" msgstr "¨t²Î" -#: control-center:235 +#: ../control-center_.c:239 msgid "Software Management" msgstr "®M¥óºÞ²z" -#: control-center:244 +#: ../control-center_.c:248 msgid "Server Configuration" msgstr "¦øªA¾¹³]©w" -#: control-center:258 +#: ../control-center_.c:262 #, c-format msgid "Mandrake Control Center %s" msgstr "Mandrake ±±¨î¤¤¤ß %s" -#: control-center:319 +#: ../control-center_.c:323 msgid "The modifications done in the current module won't be saved." msgstr "Åܧó©|¥¼Àx¦s¡A±z½T©wnÂ÷¶}¶Ü¡H" -#: control-center:368 +#: ../control-center_.c:375 msgid "Please wait..." msgstr "½ÐµyÔ..." -#: clock.pl:130 control-center:371 control-center:684 -msgid "Cancel" -msgstr "¨ú®ø" - -#: control-center:460 control-center:706 control-center:730 +#: ../control-center_.c:465 ../control-center_.c:709 ../control-center_.c:733 msgid "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*" msgstr "-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-c-*" -#: control-center:461 +#: ../control-center_.c:466 msgid "Welcome to the Mandrake Control Center" msgstr "Åwªï¨Ó¨ì Mandrake ±±¨î¤¤¤ß" -#: control-center:462 +#: ../control-center_.c:467 #, c-format msgid "cannot open this file for read: %s" msgstr "µLªk¶}±ÒÀɮ׶i¦æŪ¨ú¸ê®Æ: %s" -#: control-center:466 +#: ../control-center_.c:471 msgid "System:" msgstr "¨t²Î¡G" -#: control-center:467 +#: ../control-center_.c:472 msgid "Hostname:" msgstr "¥D¾÷¦WºÙ¡G" -#: control-center:468 +#: ../control-center_.c:473 msgid "Kernel Version:" msgstr "®Ö¤ßª©¥»¡G" -#: control-center:469 +#: ../control-center_.c:474 msgid "Machine:" msgstr "¾÷¾¹¡G" -#: control-center:580 control-center:607 control-center:621 +#: ../control-center_.c:585 ../control-center_.c:614 ../control-center_.c:628 #, c-format msgid "cannot fork: %s" msgstr "µLªk±Ò°Ê¥t¤@Ó¦æµ{¡G%s" -#: clock.pl:113 control-center:683 -msgid "OK" -msgstr "½T©w" - -#: control-center:683 control-center:704 control-center:726 +#: ../control-center_.c:686 ../control-center_.c:707 ../control-center_.c:729 msgid "Close" msgstr "Ãö³¬" -#: control-center:702 +#: ../control-center_.c:705 msgid "More themes" msgstr "§ó¦h§G´º¥DÃD" -#: control-center:708 +#: ../control-center_.c:711 msgid "Getting new themes" msgstr "¨ú±o§ó¦hªº§G´º¥DÃD" -#: control-center:709 +#: ../control-center_.c:712 msgid "Additional themes" msgstr "ÃB¥~ªº§G´º¥DÃD" -#: control-center:711 +#: ../control-center_.c:714 msgid "Get additional themes on www.damz.net" msgstr "¥Ñ www.damz.net ¤U¸ü§ó¦h§G´º¥DÃD" -#: control-center:724 +#: ../control-center_.c:727 msgid "About - Mandrake Control Center" msgstr "Ãö©ó - Mandrake ±±¨î¤¤¤ß" -#: control-center:733 +#: ../control-center_.c:736 msgid "Author: " msgstr "§@ªÌ¡G " -#: control-center:736 +#: ../control-center_.c:739 msgid "Artwork: " msgstr "¬ü¤u³]p¡G " -#: control-center:736 +#: ../control-center_.c:739 msgid "Helene Durosini" msgstr "Helene Durosini" -#: control-center:747 +#: ../control-center_.c:750 #, c-format msgid "Mandrake Control Center %s\n" msgstr "Mandrake ±±¨î¤¤¤ß %s\n" -#: control-center:749 +#: ../control-center_.c:752 msgid "Copyright (C) 2001 Mandrakesoft SA" msgstr "ª©Åv©Ò¦³ (C) 2001 Mandrakesoft SA" -#: control-center:764 +#: ../control-center_.c:767 msgid "Warning: No browser specified" msgstr "ĵ§i¡G¨S¦³«ü©wÂsÄý¾¹µ{¦¡" -#: control-center:772 +#: ../control-center_.c:775 msgid "" "Security Warning: I'm not allowed to connect to the internet as root user" msgstr "¦w¥þĵ§i¡G¤£±µ¨ü¥H root ¨¥÷³s½u¨ì Internet" -#: control-center:784 +#: ../control-center_.c:787 msgid "/_File" msgstr "/ÀÉ®× (_F)" -#: control-center:786 +#: ../control-center_.c:789 msgid "/File" msgstr "/ÀÉ®× (F)" -#: control-center:786 +#: ../control-center_.c:789 msgid "/_Quit" msgstr "/Â÷¶} (_Q)" -#: control-center:787 +#: ../control-center_.c:790 msgid "<control>Q" msgstr "<control>Q" -#: control-center:789 +#: ../control-center_.c:792 msgid "/_Options" msgstr "/¿ï¶µ (_O)" -#: control-center:791 control-center:796 control-center:825 control-center:826 -msgid "/Options" -msgstr "/¿ï¶µ (O)" - -#: control-center:791 +#: ../control-center_.c:794 msgid "/Display _Logs" msgstr "/Åã¥Ü¬ö¿ýÀÉ (_L)" -#: control-center:796 +#: ../control-center_.c:794 ../control-center_.c:799 ../control-center_.c:828 +#: ../control-center_.c:829 +msgid "/Options" +msgstr "/¿ï¶µ (O)" + +#: ../control-center_.c:799 msgid "/_Embedded Mode" msgstr "/´O¤J¼Ò¦¡ (_E)" -#: control-center:800 control-center:813 +#: ../control-center_.c:803 ../control-center_.c:816 msgid "/_Themes" msgstr "/§G´º¥DÃD (_T)" -#: control-center:804 +#: ../control-center_.c:807 msgid "/Themes" msgstr "/§G´º¥DÃD (_T)" -#: control-center:808 +#: ../control-center_.c:811 msgid "" "This action will restart the control center.\n" "Any change not applied will be lost." @@ -430,67 +443,39 @@ msgstr "" "¨Ï¥Î¸Ó¶µ¥Ø±N·|«·s±Ò°Ê±±¨î¥xµ{¦¡¡C\n" "¥ô¦ó©|¥¼Àx¦sªºÅܧó±N·|¿ò¥¢¡C" -#: control-center:813 +#: ../control-center_.c:816 msgid "/_More themes" msgstr "/§G´º¥DÃD (_T)" -#: control-center:816 +#: ../control-center_.c:819 msgid "/_Help" msgstr "/»¡©ú (_H)" -#: control-center:818 control-center:820 +#: ../control-center_.c:821 ../control-center_.c:823 msgid "/Help" msgstr "/»¡©ú (H)" -#: control-center:818 +#: ../control-center_.c:821 msgid "/_Report Bug" msgstr "/³ø§i¿ù»~ (_R)" -#: control-center:820 +#: ../control-center_.c:823 msgid "/_About..." msgstr "/Ãö©ó (_A)..." -#: control-center:825 +#: ../control-center_.c:828 msgid "/Display Logs" msgstr "/Åã¥Ü¬ö¿ýÀÉ (L)" -#: control-center:826 +#: ../control-center_.c:829 msgid "/Embedded Mode" msgstr "/´O¤J¼Ò¦¡ (E)" -#: clock.pl:47 -msgid "DrakClock" -msgstr "DrakClock" - -#: clock.pl:59 -msgid "Time Zone" -msgstr "®É°Ï" - -#: clock.pl:66 -msgid "Timezone - DrakClock" -msgstr "®É°Ï - DakClock" - -#: clock.pl:66 -msgid "Which is your timezone?" -msgstr "±zªº©ÒÄݮɰϡH" - -#: clock.pl:68 -msgid "GMT - DrakClock" -msgstr "GMT - DrakClock" - -#: clock.pl:68 -msgid "Is your hardware clock set to GMT?" -msgstr "¬O§_n±NµwÅé®ÉÄÁ³]¦¨ GMT¡H" - -#: clock.pl:131 -msgid "Reset" -msgstr "«³]" - -#: menus_launcher.pl:33 menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:33 ../menus_launcher.pl_.c:35 msgid "Menu Configuration Center" msgstr "¿ï³æ½s¿è¤¤¤ß" -#: menus_launcher.pl:35 +#: ../menus_launcher.pl_.c:35 msgid "" "\n" "\n" @@ -500,30 +485,47 @@ msgstr "" "\n" "¿ï¨ú¶·n½s¿èªº¿ï³æ" -#: menus_launcher.pl:44 +#: ../menus_launcher.pl_.c:44 msgid "System menu" msgstr "¨t²Î¿ï³æ" -#: menus_launcher.pl:45 menus_launcher.pl:58 print_launcher.pl:45 +#: ../menus_launcher.pl_.c:45 ../menus_launcher.pl_.c:58 +#: ../print_launcher.pl_.c:45 msgid "Configure..." msgstr "³]©w..." -#: menus_launcher.pl:48 +#: ../menus_launcher.pl_.c:48 msgid "User menu" msgstr "¨Ï¥ÎªÌ¿ï³æ" -#: menus_launcher.pl:69 print_launcher.pl:52 +#: ../menus_launcher.pl_.c:69 ../print_launcher.pl_.c:52 msgid "Done" msgstr "§¹¦¨" -#: print_launcher.pl:33 print_launcher.pl:35 +#: ../print_launcher.pl_.c:33 ../print_launcher.pl_.c:35 msgid "Printing configuration" msgstr "¦C¦L³]©w" -#: print_launcher.pl:44 +#: ../print_launcher.pl_.c:44 msgid "Click here to configure the printing system" msgstr "½ÐÂI¿ï³oÃä¨Ó³]©w¦C¦L¶µ¥Ø" +#~ msgid "DrakConf: error" +#~ msgstr "DrakConf¡G¿ù»~" + +#~ msgid "Quit" +#~ msgstr "Â÷¶}" + +#~ msgid "" +#~ "Error while parsing\n" +#~ "config file." +#~ msgstr "" +#~ "¸ÑªR³]©wÀÉ\n" +#~ "®Éµo¥Í¿ù»~" + +#~ msgid "Can't find any program\n" +#~ msgstr "§ä¤£¨ì¥ô¦óµ{¦¡\n" + #~ msgid "logdrake" #~ msgstr "logdrake" |