VERSION = 2.2.10-BOOT SUDO = sudo SO_FILES = c/blib/arch/auto/c/c.so PMS = *.pm c/*.pm resize_fat/*.pm pci_probing/*.pm commands install2 diskdrake XFdrake g_auto_install ROOTDEST = /export DEST = $(ROOTDEST)/Mandrake/mdkinst STAGE2 = $(ROOTDEST)/Mandrake/base/mdkinst_stage2 BASE = $(ROOTDEST)/Mandrake/base DESTREP4PMS = $(DEST)/usr/bin/perl-install STAGE2TMP = /tmp/stage2_tmp PERL = perl LOCALFILES = $(PERL) mouseconfig ddcxinfos DIRS = po pci_probing EXCLUDE = $(LOCALFILES) boot.img keymaps consolefonts install RPMS = $(wildcard $(ROOTDEST)/Mandrake/RPMS/*.rpm) CFLAGS = -Wall override CFLAGS += -pipe .PHONY: all $(DIRS) tags install clean stage2 full_stage2 verify_c all: $(SO_FILES) $(DIRS) tags: etags -o - $(PMS) | ./perl2etags > TAGS clean: test ! -e c/Makefile || $(MAKE) -C c clean for i in $(DIRS); do $(MAKE) -C $$i clean; done rm -rf c/c.xs gendepslist ../diskdrake* find . -name "*~" -o -name "TAGS" -o -name "*.old" | xargs rm -f tar: clean cd .. ; tar cfy perl-install.tar.bz2 $(EXCLUDE:%=--exclude %) perl-install floppy: dd if=/dev/zero of=/tmp/initrd bs=1k count=2000 ; echo y | mke2fs /tmp/initrd ; mount /tmp/initrd /mnt/disk/ -o loop ; cp -a ../install1/* /mnt/disk/ ; umount /mnt/disk ; gzip -c /tmp/initrd > /tmp/initrd.img ; mcopy -o /tmp/initrd.img a: tar-diskdrake: clean pci_probing cd .. ; rm -rf diskdrake ; cp -af perl-install diskdrake l=`./perl2fcalls -uses -excludec diskdrake | sort | uniq | sed -e 's/::/\//' -e 's/^/diskdrake\//' -e 's/$$/.pm/'` ; \ cd .. ; tar cfz diskdrake.tgz --exclude CVS $(patsubst %,diskdrake/%,c po diskdrake*) $$l tar-XFdrake: clean cd .. ; rm -rf XFdrake ; cp -af perl-install XFdrake l=`./perl2fcalls -uses -excludec -excludepci_probing::ids XFdrake | sort | uniq | sed -e 's/::/\//' -e 's/^/XFdrake\//' -e 's/$$/.pm/'` ; \ cd .. ; tar cfz XFdrake.tgz --exclude CVS $(patsubst %,XFdrake/%,c MonitorsDB po pci_probing XFdrake*) $$l c/c.xs: c/c.xs.pm rm -f $@ export C_RPM=1 ; perl $< > $@ chmod a-w $@ $(SO_FILES): c/c.xs test -e c/Makefile || (cd c; export C_RPM=1 ; perl Makefile.PL) $(MAKE) -C c $(DIRS): $(MAKE) -C $@ test_pms: verify_c ./perl2fcalls -excludec install2 perl -cw -I. -Ic -Ic/blib/arch install2 perl -cw -I. -Ic -Ic/blib/arch install_steps_graphical.pm verify_c: ./verify_c $(PMS) gendepslist: %: %.cc $(CXX) -I/usr/include/rpm $(CFLAGS) $< -lrpm -ldb1 -lz -o $@ $(BASE)/depslist: gendepslist $(RPMS) ./gendepslist $(BASE)/depslist $(ROOTDEST)/Mandrake/RPMS/*.rpm $(BASE)/hdlist: $(RPMS) $(ROOTDEST)/misc/genhdlist $(ROOTDEST) install_pms: all for i in `perl -ne 's/sub (\w+?)_? {.*/$$1/ and print' commands.pm`; do ln -sf commands $(DEST)/usr/bin/$$i; done install -d $(DESTREP4PMS) for i in $(PMS); do \ dest=$(DESTREP4PMS)/`dirname $$i`; \ install -d $$dest; \ perl -ne 'print' $$i > $(DESTREP4PMS)/$$i; \ done # perl -ne 's/\s*#-.*//; print unless (/^=head/ .. /^=cut/) || /use (diagnostics|vars|strict)/' $$i > $(DESTREP4PMS)/$$i; \ # / rm $(DESTREP4PMS)/c/c.xs.pm mv -f $(DESTREP4PMS)/c/c.pm $(DESTREP4PMS) cp *.rc $(DESTREP4PMS) install -d $(DESTREP4PMS)/po cp po/*.po* $(DESTREP4PMS)/po ln -sf perl-install/install2 $(DEST)/usr/bin ln -sf perl-install/commands $(DEST)/usr/bin chmod a+x $(DESTREP4PMS)/install2 chmod a+x $(DESTREP4PMS)/commands chmod a+x $(DESTREP4PMS)/XFdrake chmod a+x $(DESTREP4PMS)/g_auto_install cp -af */blib/arch/auto $(DESTREP4PMS) find $(DESTREP4PMS) -name "*.so" | xargs strip get_needed_files: $(SO_FILES) # export PERL_INSTALL_TEST=1 ; strace -f -e trace=file -o '| grep -v "(No such file or directory)" | sed -e "s/[^\"]*\"//" -e "s/\".*//" | grep "^/" | grep -v -e "^/tmp" -e "^/home" -e "^/proc" -e "^/var" -e "^/dev" -e "^/etc" -e "^/usr/lib/rpm" > /tmp/list ' $(PERL) -d install2 < /dev/null cp -f list /tmp/list for i in c/blib/arch/auto/c/c.so $(LOCALFILES) `cat /tmp/list` ; do \ ldd $$i 2>/dev/null | grep -v "not a dynamic" | sed -e 's/.*=> //' -e 's/ .*//' | uniq | sort >> /tmp/list; \ done install -d $(DEST)/etc install -d $(DEST)/lib install -d $(DEST)/bin install -d $(DEST)/usr/bin install -d $(DEST)/usr/lib install -d $(DEST)/usr/share install -d $(DEST)/usr/share/xmodmap install -d $(ROOTDEST)/Mandrake/base install -s $(LOCALFILES) $(DEST)/usr/bin for i in `cat /tmp/list`; do \ if (echo $$i | grep -q "lib/[^/]*\.so"); then \ install -s $$i $(DEST)/lib; \ else \ d=`echo $(DEST)/$$i | sed 's/\/usr\/local\//\/usr\//'`; \ install -d `dirname $$d` && \ if (echo $$i | grep -q "\.pm"); then \ perl -pe '$$_ =~ /^__END__/ and exit(0);' $$i > $$d; \ else \ cp -f $$i $$d; \ strip $$d 2>/dev/null || true; \ fi; \ fi; \ done mv -f $(DEST)/bin/* $(DEST)/sbin/* $(DEST)/usr/bin cd $(DEST)/usr/bin ; mv insmod insmod_ rmdir $(DEST)/bin $(DEST)/sbin ln -sf ash $(DEST)/usr/bin/sh tar xfy locales.tar.bz2 -C $(DEST) # DEST=$(DEST) perl -I. -MForMakefile -e 'locale()' # DEST=$(DEST) perl -I. -MForMakefile -e 'xmodmap()' cp -a keymaps $(DEST)/usr/share cp -a consolefonts $(DEST)/usr/share cp modparm.lst MonitorsDB $(DEST)/usr/share cp logo-mandrake.xpm $(DEST)/usr/share cp compss compssList $(ROOTDEST)/Mandrake/base cp -f ../modules/modules.cpio.bz2 $(DEST)/lib/ install -d $(DEST)/lib/modules cp -f ../modules/pristine/* $(DEST)/lib/modules ln -s install2 $(DEST)/usr/bin/runinstall2 # echo -e "#!/bin/sh\n\nexec '/usr/bin/sh'" > $(DEST)/usr/bin/runinstall2 # chmod a+x $(DEST)/usr/bin/runinstall2 cp -a ../install/install1_pcmcia/etc/pcmcia $(DEST)/etc as_root: /bin/dd if=/dev/zero of=/tmp/initrd bs=1k count=4000 echo y | /sbin/mke2fs /tmp/initrd losetup /dev/loop0 /tmp/initrd mount /dev/loop0 /mnt/initrd chmod a+w /mnt/initrd full_stage2: $(BASE)/depslist $(BASE)/hdlist rm -rf $(DEST) mkdir -p $(DEST) $(MAKE) get_needed_files $(MAKE) stage2 stage2: $(MAKE) install_pms $(SUDO) rm -rf $(STAGE2TMP) install -d $(STAGE2TMP) $(SUDO) cp -a $(DEST)/* $(STAGE2TMP) $(SUDO) umount /mnt/stage2 ; true dd if=/dev/zero of=$(STAGE2) bs=1M count=14 echo y | /sbin/mke2fs $(STAGE2) $(SUDO) mount -t ext2 $(STAGE2) /mnt/stage2 -o loop # hack to reduce the STAGE2 image rm $(STAGE2TMP)/usr/X11R6/bin/XF86_VGA16 for i in /usr/share/locale /usr/share/keymaps /usr/share/xmodmap; do \ name=`basename $$i` ; \ (cd $(STAGE2TMP)/$$i ; find * | cpio -o 2>/dev/null | bzip2 > ../$$name.cpio.bz2 ; cd .. ; rm -rf $$name) \ done $(SUDO) cp -a $(STAGE2TMP)/* /mnt/stage2 $(SUDO) rm -rf $(STAGE2TMP) $(SUDO) umount $(STAGE2) gzip -f -9 $(STAGE2) # cd $(ROOTDEST) ; tar cfz /tmp/instimage-full.tgz Mandrake # cd $(ROOTDEST) ; tar cfz /tmp/instimage-light.tgz Mandrake/base/compss Mandrake/mdkinst/usr/[bl]* @#rm -rf /mnt/initrd/* @#cp -a $(DEST)/* /mnt/initrd @#sync @#dd if=/dev/loop0 | gzip -9 > /tmp/t/Mandrake/base/stage2.img # function f() { grep "$*" /usr/include/*.h /usr/include/*/*.h; } # # install -s install/install install1/bin/install ; install -s installinit/init install1/bin/init # mount /tmp/initrd /mnt/disk/ -o loop ; ; umount /mnt/disk ; gzip -c /tmp/initrd > /tmp/initrd.img ; mcopy -o /tmp/initrd.img a:
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po index 8239c934a..879ecb6ab 100644 --- a/perl-install/share/po/af.po +++ b/perl-install/share/po/af.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX-af\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2005-04-21 17:33+0200\n" "Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n" "Language-Team: Afrikaans\n" @@ -20,21 +20,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.0.2\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Wag asb." -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Besig met installasie van herlaaistelsel" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -45,12 +45,12 @@ msgid "" "Assign a new Volume ID?" msgstr "" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: " -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -68,7 +68,7 @@ msgstr "" "Tik daarna 'shut-down' in\n" "U behoort die herlaaistelsel-porteks met die volgende selflaai te sien." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -83,268 +83,268 @@ msgstr "" "\n" "Vanaf watter hardeyskyf geskied die selflaai?" -#: any.pm:341 +#: any.pm:340 #, fuzzy, c-format msgid "Bootloader Installation" msgstr "Besig met installasie van herlaaistelsel" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Waar wil u die herlaaistelsel installeer" -#: any.pm:369 +#: any.pm:368 #, fuzzy, c-format msgid "First sector (MBR) of drive %s" msgstr "Eerste sektor van skyf (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Eerste sektor van skyf (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Eerste sektor van die 'root'-partisie" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Op Disket" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Mis hierdie stap" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Herlaaistylkonfigurasie" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Herlaaistelsel hoofopsies" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Herlaaistelsel" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Herlaaistelsel om te gebruik" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Herlaaitoestel" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Wagperiode voor verstekstelsel gelaai word" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Bekragtig ACPI" -#: any.pm:442 +#: any.pm:441 #, fuzzy, c-format msgid "Enable SMP" msgstr "Bekragtig ACPI" -#: any.pm:443 +#: any.pm:442 #, fuzzy, c-format msgid "Enable APIC" msgstr "Bekragtig ACPI" -#: any.pm:445 +#: any.pm:444 #, fuzzy, c-format msgid "Enable Local APIC" msgstr "Bekragtig ACPI" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Sekuriteit" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Wagwoord" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Die wagwoorde stem nie ooreen nie." -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Probeer asb. weer" -#: any.pm:452 +#: any.pm:451 #, fuzzy, c-format msgid "You cannot use a password with %s" msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie." -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Wagwoord (weer)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Maak /tmp skoon met elke herlaai" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Beginboodskap" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Open Firmware Delay" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Tydsbeperking vir stelselkernlaai" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Laat CD-herlaai toe?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Laat OF-herlaai toe?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Verstek bedryfstelsel?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Beeld" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "'Root'" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Aanlas" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Videomodus" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, fuzzy, c-format msgid "Network profile" msgstr "Netwerkkoppelvlak" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Naam" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Verstek" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "Geen video" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Leë etiket word nie toegelaat nie" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "U moet 'n kernel-beeld spesifiseer" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "U moet 'n 'root-partisie spesifiseer" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Hierdie etiket is alreeds in gebruik" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Watter tipe inskrywing wil u byvoeg?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Ander bedryfstelsel (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Ander bedryfstelsel (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Ander bedryfstelsel (Windows...)" -#: any.pm:656 +#: any.pm:655 #, fuzzy, c-format msgid "Bootloader Configuration" msgstr "Herlaaistylkonfigurasie" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -353,47 +353,47 @@ msgstr "" "Hier is die huidige inskrywings\n" "U kan byvoeg or verwyder soos nodig." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "toegang na X-programme" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "toegang tot rpm-nutsprogramme" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "laat \"su\" toe" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "toegang tot administratiewe-lêers" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "toegang na netwerk-nutsprogramme" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "toegang na kompilasie-gereedskap" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(%s alreeds bygevoeg)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Gee asb. 'n gebruikerskode" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -401,149 +401,149 @@ msgid "" msgstr "" "Die gebruikernaam mag alleenlik uit kleinletter, nommers, '-' en '_' bestaan" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Hierdie naam is te lank" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Hierdie genruikerskode bestaan alreeds" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Gebruiker ID" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Groep ID" -#: any.pm:895 +#: any.pm:894 #, fuzzy, c-format msgid "%s must be a number" msgstr "Opsie %s moet 'n nommer wees!" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" -#: any.pm:900 +#: any.pm:899 #, fuzzy, c-format msgid "User management" msgstr "Gebruikernaam" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, fuzzy, c-format msgid "Set administrator (root) password" msgstr "Kies 'root' se wagwoord" -#: any.pm:912 +#: any.pm:911 #, fuzzy, c-format msgid "Enter a user" msgstr "" "Tik 'n gebruiker in\n" "%s" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Ikoon" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Regte naam" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Aanteken naam" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Dop" -#: any.pm:972 +#: any.pm:971 #, fuzzy, c-format msgid "Please wait, adding media..." msgstr "wag asseblief gedurende 'ttmkfdir'..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Outo-inteken" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "Ek kan u rekenaar so opstel om een gebruiker outomaties in te teken." -#: any.pm:1006 +#: any.pm:1005 #, fuzzy, c-format msgid "Use this feature" msgstr "Wil u hierdie funksie gebruik?" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Kies die verstek gebruiker:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Kies die vensterbestuurder om te loop:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, fuzzy, c-format msgid "Release Notes" msgstr "Vrystelling: " -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Sluit af" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Lisensieooreenkoms" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Verlaat" -#: any.pm:1102 +#: any.pm:1101 #, fuzzy, c-format msgid "Do you accept this license ?" msgstr "Beskik u oor nog?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Aanvaar" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Weier" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Kies asb. 'n taal om te gebruik" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -551,82 +551,82 @@ msgid "" "when your installation is complete and you restart your system." msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "Alle tale" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Alle tale" -#: any.pm:1192 +#: any.pm:1191 #, fuzzy, c-format msgid "Language choice" msgstr "selfdoen" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Land / Omgewing" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Kies asseblief u land" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Hier is die volle lys van beskikbare lande" -#: any.pm:1250 +#: any.pm:1249 #, fuzzy, c-format msgid "Other Countries" msgstr "Ander poorte" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Gevorderd" -#: any.pm:1256 +#: any.pm:1255 #, fuzzy, c-format msgid "Input method:" msgstr "Netwerkmetode:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Geen" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Geen deling" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Laat alle gebruikers toe" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Aangepaste" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -641,32 +641,32 @@ msgstr "" "\n" "\"Aangepaste\" laat toe vir per-gebruiker verstellings.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " "Windows." msgstr "" -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " "systems." msgstr "" -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "U kan uitvoer deur NFS of SMB te gebruik. Kies watter u wil gebruik." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Loods userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -676,54 +676,54 @@ msgstr "" "U kan van 'userdrake' gebruik maak om gebruikers by heirdie\n" "groep te voeg." -#: any.pm:1504 +#: any.pm:1503 #, fuzzy, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Tydsone" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Wat is u tydsone?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "" -#: any.pm:1573 +#: any.pm:1572 #, fuzzy, c-format msgid "%s (hardware clock set to UTC)" msgstr "Hardewareklok gestel vir GMT" -#: any.pm:1574 +#: any.pm:1573 #, fuzzy, c-format msgid "%s (hardware clock set to local time)" msgstr "Hardewareklok gestel vir GMT" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP-bediener" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Outo-tydsinkronisasie met NTP" @@ -1050,7 +1050,7 @@ msgstr "Domein-administrarteur se Wagwoord" # so use only 7bit for this message (and do transliteration or # leave it in English, as it is the best for your language) #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1065,42 +1065,42 @@ msgstr "" "vir die verstekopsie.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO met tekskieskaart" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "nie genoeg spasie in /boot nie" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "U kan nie die herlaaistelsel op 'n %s partisie installeer nie\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1109,7 +1109,7 @@ msgstr "" "U herlaaistelsel se konfigurasie moet opgedateer word omdat 'n partisie se " "nommer verander het" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1118,7 +1118,7 @@ msgstr "" "Die herlaaistelsel kan nie korrek geïnstalleer word nie. U moet in redding-" "modus laai, kies dan \"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Her-installeer herlaaistelsel" @@ -1235,7 +1235,7 @@ msgstr "Klaar" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1259,7 +1259,7 @@ msgstr "Die URL moet begin met http:// or https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Waarskuwing" @@ -2290,7 +2290,7 @@ msgstr "Deursoek netnuus-bedieners" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Die pakket %s moet geïnstalleer word. Wil u dit installeer?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, fuzzy, c-format msgid "Could not install the %s package!" msgstr "Installeer pakket %s" @@ -2300,17 +2300,17 @@ msgstr "Installeer pakket %s" msgid "Mandatory package %s is missing" msgstr "Verpligte pakket %s ontbreek" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Die volgende pakkette geïnstalleer word:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Installeer pakkette..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Verwyder pakkette..." @@ -4744,7 +4744,7 @@ msgstr "Zambië" msgid "Zimbabwe" msgstr "Zimbabwe" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Welkom by %s" @@ -4770,7 +4770,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4783,12 +4783,11 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" - - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4811,7 +4810,8 @@ msgid "" "Software Products." msgstr "" - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4856,7 +4856,8 @@ msgid "" "you." msgstr "" - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4876,7 +4877,8 @@ msgid "" "further details." msgstr "" - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4890,7 +4892,8 @@ msgid "" "\"Mageia\" and associated logos are trademarks of Mageia" msgstr "" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -4908,7 +4911,7 @@ msgid "" "For any question on this document, please contact Mageia." msgstr "" -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -4928,7 +4931,7 @@ msgstr "" "( Wees daarom bly jy woon nie in die VSA nie! )" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, fuzzy, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po index 767c4d139..bdb0a5bd2 100644 --- a/perl-install/share/po/am.po +++ b/perl-install/share/po/am.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2004-06-01 03:36+0100\n" "Last-Translator: Alemayehu <alemayehu@gmx.at>\n" "Language-Team: Amharic <am-translate@geez.org>\n" @@ -14,21 +14,21 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "እባክዎ ይጠብቁ" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "የአስጀማሪ ተከላ በመከናወን ላይ" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -39,12 +39,12 @@ msgid "" "Assign a new Volume ID?" msgstr "" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -55,7 +55,7 @@ msgid "" "At your next boot you should see the bootloader prompt." msgstr "" -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -65,464 +65,464 @@ msgid "" "On which drive are you booting?" msgstr "" -#: any.pm:341 +#: any.pm:340 #, fuzzy, c-format msgid "Bootloader Installation" msgstr "የአስጀማሪ ተከላ በመከናወን ላይ" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "አስጀማሪውን የት መትከል ይፈልጋሉ?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "ፍሎፒ ላይ" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "ዝለል" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "የአጀማመር ዘይቤ ምርጫ" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "የአስጀማሪ ዋና ምርጫዎች" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "አስጀማሪያ" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "ጥቅም ላይ የሚውለው አስጀማሪ" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "የመጀመሪያ መሳሪያ" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "ACPI አስቻል" -#: any.pm:442 +#: any.pm:441 #, fuzzy, c-format msgid "Enable SMP" msgstr "ACPI አስቻል" -#: any.pm:443 +#: any.pm:442 #, fuzzy, c-format msgid "Enable APIC" msgstr "ACPI አስቻል" -#: any.pm:445 +#: any.pm:444 #, fuzzy, c-format msgid "Enable Local APIC" msgstr "ACPI አስቻል" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "ደህንነት" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "ሚስጢራዊ ቃል" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "ሚስጢራዊ ቃላቱ አይመሳሰሉም" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "እባክዎ እንደገና ይሞክሩ" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "ሚስጢራዊ ቃል (እንደገና)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "በየጅማሬው /tmpን አጽዳ" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "መልዕክት አስጀምር" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "የFirmware አዘግይ ክፈት" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "ከዲሲ ማስጀመር አስችል?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "ቀዳሚ OS?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "ምስል" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Root" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "የቪዲዮ አሰራር ዘዴ" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "" -#: any.pm:558 +#: any.pm:557 #, fuzzy, c-format msgid "Network profile" msgstr "የተጠቃሚው እይታ" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "መለያ" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "ቀዳሚ" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "ሊኑክስ" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (Windows...)" -#: any.pm:656 +#: any.pm:655 #, fuzzy, c-format msgid "Bootloader Configuration" msgstr "የአጀማመር ዘይቤ ምርጫ" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" "You can create additional entries or change the existing ones." msgstr "" -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "የX ፕሮግራሞች ማሳያ" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "ፍቀድ \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(%s በፊት ተጨምሯል)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "እባክዎ የተጠቃሚ ስም ይስጡ" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " "cased letters, numbers, `-' and `_'" msgstr "" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "የተጠቃሚ ስሙ በጣም ረጅም ነው" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "ይህ የተጠቃሚ ስም በፊትም ነበር" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "የተጠቃሚ መለያ ቁጥር" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "የብድን መለያ ቁጥር" -#: any.pm:895 +#: any.pm:894 #, fuzzy, c-format msgid "%s must be a number" msgstr "(%f በሰነድ-ስም ይተካል፤ %l በመስመር ቁጥር)" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" -#: any.pm:900 +#: any.pm:899 #, fuzzy, c-format msgid "User management" msgstr "የተጠቃሚ ስም" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, fuzzy, c-format msgid "Set administrator (root) password" msgstr "የroot ሚስጢራዊ ቃል ይምረጡ" -#: any.pm:912 +#: any.pm:911 #, fuzzy, c-format msgid "Enter a user" msgstr "" "የተጠቃሚ ስም ያስገቡ\n" "%s" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "ምልክት" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "እውነተኛ ስም" -#: any.pm:924 +#: any.pm:923 #, fuzzy, c-format msgid "Login name" msgstr "Name=ዝምብለህ ይግባ" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "ሼል" -#: any.pm:972 +#: any.pm:971 #, fuzzy, c-format msgid "Please wait, adding media..." msgstr "ሲያትም እባክዎ ይጠብቁ\n" -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" -#: any.pm:1006 +#: any.pm:1005 #, fuzzy, c-format msgid "Use this feature" msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "ቀዳሚ ተጠቃሚ ይምረጡ:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "ዝጋ" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "ውጣ" -#: any.pm:1102 +#: any.pm:1101 #, fuzzy, c-format msgid "Do you accept this license ?" msgstr "ሌላ አልዎት?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "ተቀበል" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "አትቀበል" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "እባክዎ መጠቀሚያ ቋንቋ ይምረጡ።" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -530,82 +530,82 @@ msgid "" "when your installation is complete and you restart your system." msgstr "" -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "ሁሉንም ቋንቋዎች" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "ሁሉንም ቋንቋዎች" -#: any.pm:1192 +#: any.pm:1191 #, fuzzy, c-format msgid "Language choice" msgstr "የመመሪያ ገጾች" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "ሀገር / አካባቢ" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "እባክዎ ሀገሮን ይምረጡ።" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "እዚህ ያሉት ሀገሮች ሙሉ ዝርዝር ይገኛል" -#: any.pm:1250 +#: any.pm:1249 #, fuzzy, c-format msgid "Other Countries" msgstr "ሌላ ምርጫዎች" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "ጠላቂ" -#: any.pm:1256 +#: any.pm:1255 #, fuzzy, c-format msgid "Input method:" msgstr "የX ዘገባ የማስትገባት ዘዴ" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "ምንም" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "መጋራት የለም" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "ምርጫ" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -615,86 +615,86 @@ msgid "" "\"Custom\" permit a per-user granularity.\n" msgstr "" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " "Windows." msgstr "" -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " "systems." msgstr "" -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "" -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "userdrake አስጀምር" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" "You can use userdrake to add a user to this group." msgstr "" -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "የሰአት ክልል" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "የሰአት ክልሎት የትኛው ነው?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "" -#: any.pm:1573 +#: any.pm:1572 #, fuzzy, c-format msgid "%s (hardware clock set to UTC)" msgstr "ለሀርድዌር ሰአት GMT ተመርጧል" -#: any.pm:1574 +#: any.pm:1573 #, fuzzy, c-format msgid "%s (hardware clock set to local time)" msgstr "ለሀርድዌር ሰአት GMT ተመርጧል" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP ሰርቨር" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "" @@ -1017,7 +1017,7 @@ msgid "Domain Admin Password" msgstr "የዶሜን አስተዳዳሪ ሚስጢራዊ ቃል" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1027,56 +1027,56 @@ msgid "" "\n" msgstr "" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO ከጽሁፍ መዘርዝር ጋር" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "በ/boot ውስጥ በቂ ቦታ የለም" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " "renumbered" msgstr "" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " "choose \"%s\"" msgstr "" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "አስጀማሪውን እንደገና ይትከሉ" @@ -1189,7 +1189,7 @@ msgstr "ጨርሷል" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1213,7 +1213,7 @@ msgstr "URLሉ በhttp:// ወይም በhttps:// መጀመር አለበት" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "ማስጠንቀቂያ" @@ -2216,7 +2216,7 @@ msgstr "አዲስ ሰርቨሮችን ፈልግ" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "ጥቅል %s ይፈለጋል። መትከል ይፈልጋሉ?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, fuzzy, c-format msgid "Could not install the %s package!" msgstr "ምርጫዎችን ማስቀመጥ አልተቻለም" @@ -2226,17 +2226,17 @@ msgstr "ምርጫዎችን ማስቀመጥ አልተቻለም" msgid "Mandatory package %s is missing" msgstr "" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "ጥቅሎችን በመትከል ላይ..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "ጥቅሎችን በማስወገድ ላይ..." @@ -4542,7 +4542,7 @@ msgstr "ዛምቢያ" msgid "Zimbabwe" msgstr "ዚምቧቤ" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "ወደ %s እንኳን ደህና መጡ" @@ -4568,7 +4568,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4581,12 +4581,11 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" - - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4609,7 +4608,8 @@ msgid "" "Software Products." msgstr "" - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4654,7 +4654,8 @@ msgid "" "you." msgstr "" - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4674,7 +4675,8 @@ msgid "" "further details." msgstr "" - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4688,7 +4690,8 @@ msgid "" "\"Mageia\" and associated logos are trademarks of Mageia" msgstr "" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -4706,7 +4709,7 @@ msgid "" "For any question on this document, please contact Mageia." msgstr "" -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -4719,7 +4722,7 @@ msgid "" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po index ccc7a88a4..e52616b6b 100644 --- a/perl-install/share/po/ar.po +++ b/perl-install/share/po/ar.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakx_share\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2011-05-19 13:12+0000\n" "Last-Translator: salim salim <almusalimalmusalimah@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,21 +16,21 @@ msgstr "" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "الرجاء الانتظار" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "محمل الإقلاع قيد التثبيت" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -46,12 +46,12 @@ msgstr "" "\n" "أتريد تعيين رقم هويّة كتلة جديد؟" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "فشل تثبيت محمّل الإقلاع. حدث الخطأ التالي:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -69,7 +69,7 @@ msgstr "" " ثم اكتب: shut-down\n" "بعد إقلاع النظام التالي يجب أن ترى مُلقّن محمّل الإقلاع." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -79,268 +79,268 @@ msgid "" "On which drive are you booting?" msgstr "" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "أين تريد تثبيت محمّل الإقلاع؟" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "القطاع الأول من القرص (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "القطاع الأول من التجزيء الجذري" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "على قرص مرن" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "تخطّي" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "تهيئة أسلوب الإقلاع" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "خيارات محمّل الإقلاع الرئيسية" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "محمّل الإقلاع" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "محمّل الإقلاع المُستخدم" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "جهاز الإقلاع" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "توقيت ما قبل إقلاع الصورة الافتراضية" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "تمكين ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "الأمن" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "كلمة المرور" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "كلمات المرور غير متطابقة" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "الرجاء المحاولة مجدداً" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "كلمة المرور (مجدداً)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "تنظيف /tmp عند كل إقلاع" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "رسالة Init" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "تأخير Open Firmware" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "الوقت الأقصى لإقلاع النواة" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "تمكين الإقلاع من القرص المدمج؟" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "تمكين إقلاع OF؟" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "نظام التشغيل الافتراضي؟" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "صورة" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "الجذر" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "إلحاق" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "وضعية الفيديو" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "سجلّ إعداد الشبكة " -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "تسمية" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "افتراضي" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "لا فيديو" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "لا يُسمح بالتسميات الفارغة" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "يجب تحديد صورة النواة" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "يجب تحديد تجزيء جذر" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "هذه التسمية مستخدمة مسبقا" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "ما نوع المدخل المُراد إضافته؟" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "لينكس" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "نظام تشغيل آخر (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "نظام تشغيل آخر (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "نظام تشغيل آخر (ويندوز...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -349,194 +349,194 @@ msgstr "" "هذه هي المدخلات المختلفة في قائمة الإقلاع حتى الآن.\n" "يمكنك إضافة مدخلات أخرى أو تغيير الموجودة." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "الوصول إلى برامج X" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "الوصول إلى أدوات rpm" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "السماح بـ\"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "الوصول إلى ملفات الإدارة" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "الوصول إلى أدوات الشبكة" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "الوصول إلى أدوات التجميع" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(تمت إضافة %s مسبقا)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "الرجاء إعطاء اسم مستخدم" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " "cased letters, numbers, `-' and `_'" msgstr "" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "اسم المستخدم طويل جداً" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "اسم المستخدم مُضاف مسبقا" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "هوية المستخدم" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "هوية المجموعة" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "ضع كلمة مرور المستخدم الجذر" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "أيقونة" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "الاسم الحقيقي" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "اسم الدخول" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "الصدفة" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "انتظر من فضلك، جاري إضافة الوسائط..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "تسجيل دخول آلي" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "يمكن إعداد جهازك لتسجيل الدخول آلياً لمستخدم معين." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "اختيار المستخدم الافتراضي:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "اختيار مدير النوافذ الذي سيتم تشغيله:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "ملاحظات الإصدار" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "إغلاق" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "اتفاقية الترخيص" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "خروج" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "قبول" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "رفض" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "الرجاء اختيار لغة لاستخدامها" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -544,82 +544,82 @@ msgid "" "when your installation is complete and you restart your system." msgstr "" -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "كل اللغات" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "كل اللغات" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "خيار اللغة" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "الدولة / الإقليم" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "الرجاء اختيار الدولة" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "هذه قائمة كاملة بكل الدول المتوفرة" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "دول أخرى" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "متقدم" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "طريقة الإدخال:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "لاشيء" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "لا مشاركة" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "السماح لكل المستخدمين" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "مخصّص" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -634,14 +634,14 @@ msgstr "" "\n" "\"مخصص\" يسمح لك بعمل إعدادات خاص لكل مستخدم.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " "Windows." msgstr "NFS: نظام تقسيم ملفّات يونكس التّقليدي، بدعم أقلّ على ماك و ويندوز." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -650,18 +650,18 @@ msgstr "" "SMB: نظام تقسيم ملفّات مستعمل من قبل ويندوز، ماك OS X و العديد من أنظمة لينكس " "الحديثة." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "يمكنك التّصدير باستعمال NFS أو SMB. الرجاء اختيار أيّهما تريد استعماله." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "تشغيل userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -670,54 +670,54 @@ msgstr "" "المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n" "يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "المنطقة الزمنية" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "ما هي منطقتك الزمنية؟" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "خادم NTP" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "تزامن وقت آلي (باستخدام NTP)" @@ -1046,7 +1046,7 @@ msgid "Domain Admin Password" msgstr "كلمة المرور لمدير النطاق" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1061,56 +1061,56 @@ msgstr "" "wait for default boot.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO مع قائمة نصية" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "لا توجد مساحة كافية في /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " "renumbered" msgstr "تهيئة محمّل الإقلاع يجب أن يحدّث لأنّ التجزيء تمّ إعادة ترقيمه" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " "choose \"%s\"" msgstr "" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "إعادة تثبيت مُحمِّل الإقلاع" @@ -1227,7 +1227,7 @@ msgstr "تم" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1251,7 +1251,7 @@ msgstr "العنوان يجب أن يبدأ بـ http:// أو https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "تحذير" @@ -2272,7 +2272,7 @@ msgstr "" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "الحزمة %s يجب أن تُثبت. هل تريد تثبيتها؟" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "تعذر تثبيت حزمة %s!" @@ -2282,17 +2282,17 @@ msgstr "تعذر تثبيت حزمة %s!" msgid "Mandatory package %s is missing" msgstr "الحزمة الضرورية %s مفقودة" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "يجب تثبيت الحزم التالية:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "جاري تركيب الحزم..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "حذف الحزم..." @@ -4655,7 +4655,7 @@ msgstr "زامبيا" msgid "Zimbabwe" msgstr "زيمبابوي" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "أهلا في %s" @@ -4681,7 +4681,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4694,12 +4694,11 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" - - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4722,7 +4721,8 @@ msgid "" "Software Products." msgstr "" - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4767,7 +4767,8 @@ msgid "" "you." msgstr "" - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4787,7 +4788,8 @@ msgid "" "further details." msgstr "" - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4801,7 +4803,8 @@ msgid "" "\"Mageia\" and associated logos are trademarks of Mageia" msgstr "" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -4819,7 +4822,7 @@ msgid "" "For any question on this document, please contact Mageia." msgstr "" -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -4839,7 +4842,7 @@ msgstr "" "قد تنطبق عليك، تحقّق من القوانين المحليّة لبلدك." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po index 4b09376a6..f9fb5f86b 100644 --- a/perl-install/share/po/az.po +++ b/perl-install/share/po/az.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX-az\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2005-03-31 14:21+0200\n" "Last-Translator: Mətin Əmirov <metin@karegen.com>\n" "Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n" @@ -19,21 +19,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.3.1\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Xahiş edirik, gözləyin" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -44,12 +44,12 @@ msgid "" "Assign a new Volume ID?" msgstr "" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -67,7 +67,7 @@ msgstr "" " Sonra da bunları yazın: shut-down\n" "Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -82,269 +82,269 @@ msgstr "" "\n" "Hansı sürücü üstündən açılış edirsiniz?" -#: any.pm:341 +#: any.pm:340 #, fuzzy, c-format msgid "Bootloader Installation" msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Sistem yükləyicisini hara qurmaq istəyirsiniz?" -#: any.pm:369 +#: any.pm:368 #, fuzzy, c-format msgid "First sector (MBR) of drive %s" msgstr "Diskin ilk sektoru (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Diskin ilk sektoru (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Kök bolməsinin ilk sektoru" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Disketə" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Keç" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Açılış Tərzi Quraşdırılması" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Sistem yükləyicisinin ana seçimləri" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Açılış yükləyicisi" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "İstifadə ediləcək Açılış idarəcisi" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Açılış avadanlığı" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Açılışda gecikmə müddəti" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "ACPI-ni Fəallaşdır" -#: any.pm:442 +#: any.pm:441 #, fuzzy, c-format msgid "Enable SMP" msgstr "ACPI-ni Fəallaşdır" -#: any.pm:443 +#: any.pm:442 #, fuzzy, c-format msgid "Enable APIC" msgstr "ACPI-ni Fəallaşdır" -#: any.pm:445 +#: any.pm:444 #, fuzzy, c-format msgid "Enable Local APIC" msgstr "ACPI-ni Fəallaşdır" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Təhlükəsizlik" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Şifrə" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Şifrələr uyğun gəlmir" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Xahiş edirik, təkrar sınayın" -#: any.pm:452 +#: any.pm:451 #, fuzzy, c-format msgid "You cannot use a password with %s" msgstr "" "%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Şifrə (təkrar)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "/tmp-i hər açılışda təmizlə" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Init İsmarışı" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Açıq Firmware Gecikməsi" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Çəyirdək Açılış Vaxt Dolması" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "CD Açılışı Fəallaşdırılsın?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "OF Açılışı Fəallaşdırılsın?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Əsas ƏS?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Əks" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Kök" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Sonuna əlavə et" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Video modu" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Şəbəkə profili" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Etiket" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Ön Qurğulu" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "NoVideo" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Boş etiket qəbul edilmir" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Çəyirdək əksini bildirməlisiniz" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Kök bölməsini bildirməlisiniz" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Bu etiket onsuzda istifadə edilib" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Nə cür bir giriş əlavə etmək istəyirsiniz?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linuks" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Digər sistemlər (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Digər ƏS (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Digər ƏS (Windows...)" -#: any.pm:656 +#: any.pm:655 #, fuzzy, c-format msgid "Bootloader Configuration" msgstr "Açılış Tərzi Quraşdırılması" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -353,47 +353,47 @@ msgstr "" "Buradakı bir birindən fərqli seçimlərə yenilərini əlavə edə bilər,\n" "ya da mövcud olanları dəyişdirə bilərsiniz." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "X proqramlarına yetişmə icazəsi" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "rpm vasitələrinə yetişmə" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "\"su\" icazəsi ver" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "idarəvi fayllara yetişmə" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "şəbəkə vasitələrinə yetişmə" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "dərləmə vasitələrinə yetişmə" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(%s artıq əlavə edilmişdir)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Xahiş edirik, bir istifadəçi adı alın" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -402,150 +402,150 @@ msgstr "" "İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri " "ola bilər" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "İstifadəçi adı çox uzundur" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Bu istifadəçi adı onsuzda əlavə edilib" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "İstifadəçi ID'si" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Qrup ID'si" -#: any.pm:895 +#: any.pm:894 #, fuzzy, c-format msgid "%s must be a number" msgstr "%s seçimi rəqəm olmalıdır!" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" -#: any.pm:900 +#: any.pm:899 #, fuzzy, c-format msgid "User management" msgstr "İstifadəçi adı" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, fuzzy, c-format msgid "Set administrator (root) password" msgstr "Ali istifadəçi şifrəsini tə'yin et" -#: any.pm:912 +#: any.pm:911 #, fuzzy, c-format msgid "Enter a user" msgstr "" "Bir istifadəçi daxil edin\n" "%s" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Timsal" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Həqiqi ad" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Giriş adı" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Qabıq" -#: any.pm:972 +#: any.pm:971 #, fuzzy, c-format msgid "Please wait, adding media..." msgstr "ttmkfdir fəaliyyətdədir, xahiş edirik, gözləyin..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Avtomatik Giriş" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Kompüteriniz istifadəçinin avtomatik giriş etməsi üçün qurğulana bilər." -#: any.pm:1006 +#: any.pm:1005 #, fuzzy, c-format msgid "Use this feature" msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Əsas istifadəçini seçin:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "İşlətmək istədiyiniz pəncərə idarəçisini seçin:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, fuzzy, c-format msgid "Release Notes" msgstr "Buraxılış:" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Bağla" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Lisenziya razılığı" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Çıx" -#: any.pm:1102 +#: any.pm:1101 #, fuzzy, c-format msgid "Do you accept this license ?" msgstr "Başqası var?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Qəbul Et" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Rədd Et" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Xahiş edirik, istifadə ediləcək dili seçin" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -556,82 +556,82 @@ msgstr "" "dilləri seçin. Onlar qurulum tamamlanandan və sistem yenidən\n" "başlayandan sonra istifadəyə hazır olacaqlar." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "Bütün dillər" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Bütün dillər" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Dil seçkisi" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Ölkə / Bölgə" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Xahiş edirik, ölkənizi seçin" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Bütün mövcud ölkələrinn siyahısı" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Diqər Ölkələr" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Ətraflı" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Giriş yöntəmi:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Heç biri" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Bölüşmə yoxdur" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Bütün istifadəçilərə icazə ver" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Xüsusi" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -648,21 +648,21 @@ msgstr "" "\"Xüsusi\" seçənəyi, hər istifadəçiyə fərqli icazə vermək üçün istifadə " "edilir.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " "Windows." msgstr "" -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " "systems." msgstr "" -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." @@ -670,12 +670,12 @@ msgstr "" "NFS ya da SMB işlədərək ixrac edə bilərsiniz. Xahiş edirik, işlətmək " "istədiyinizi seçin." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Userdrake-ni başlat" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -685,7 +685,7 @@ msgstr "" "Bu qrupa istifadəçiləri əlavə etmək üçün userdrake'dən istifadə edə " "bilərsiniz. " -#: any.pm:1504 +#: any.pm:1503 #, fuzzy, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -693,48 +693,48 @@ msgid "" msgstr "" "Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" "Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz." -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Vaxt Zolağı" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Vaxt zolağınız hansıdır?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "" -#: any.pm:1573 +#: any.pm:1572 #, fuzzy, c-format msgid "%s (hardware clock set to UTC)" msgstr "Avadanlıq saatı GMT'yə görə quruludur" -#: any.pm:1574 +#: any.pm:1573 #, fuzzy, c-format msgid "%s (hardware clock set to local time)" msgstr "Avadanlıq saatı GMT'yə görə quruludur" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP Verici" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)" @@ -1062,7 +1062,7 @@ msgstr "Domen İdarəçi Şifrəsi" # leave it in English, as it is the best for your language) # #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1072,56 +1072,56 @@ msgid "" "\n" msgstr "" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "Mətn menyulu LILO" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "/boot içində lazımi yer yoxdur" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Sistem yükləyicisini %s bölməsinə qura bilməzsiniz\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " "renumbered" msgstr "" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " "choose \"%s\"" msgstr "" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Sistem Yükləyicisini Yenidən Qur" @@ -1238,7 +1238,7 @@ msgstr "Qurtardı" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1262,7 +1262,7 @@ msgstr "URL http:// ya da https:// ilə başlamalıdır" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Xəbərdarlıq" @@ -2294,7 +2294,7 @@ msgstr "Yeni vericiləri axtar" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "%s paketi qurulmalıdır. Qurmaq istəyirsiniz?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, fuzzy, c-format msgid "Could not install the %s package!" msgstr "Xorg paketi qurula bilmir: %s" @@ -2304,17 +2304,17 @@ msgstr "Xorg paketi qurula bilmir: %s" msgid "Mandatory package %s is missing" msgstr "Vacib olan %s paketi əksikdir" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Aşağıdakı paketlər qurulmalıdır:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Paketlər qurulur..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Paketlər silinir..." @@ -4751,7 +4751,7 @@ msgstr "Zambiya" msgid "Zimbabwe" msgstr "Zimbabve" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "%s Sisteminə Xoş Gəldiniz" @@ -4777,7 +4777,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4790,8 +4790,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Giriş\n" "\n" @@ -4803,7 +4802,8 @@ msgstr "" "to the operating \n" "system and the different components of the Mageia distribution." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4845,7 +4845,8 @@ msgstr "" "copies of the \n" "Software Products." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4925,7 +4926,8 @@ msgstr "" "cryptography components \n" "included in the Software Products." - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4964,7 +4966,8 @@ msgstr "" "documentation for \n" "further details." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4988,7 +4991,8 @@ msgstr "" "parts, by all means and for all purposes.\n" "\"Mageia\" and associated logos are trademarks of Mageia" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5020,8 +5024,7 @@ msgstr "" "Paris - France.\n" "For any question on this document, please contact Mageia" - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5040,7 +5043,7 @@ msgstr "" "gözdən keçirin." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, fuzzy, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po index f3f01141b..22156c7b2 100644 --- a/perl-install/share/po/be.po +++ b/perl-install/share/po/be.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX VERSION\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2000-09-24 12:30 +0100\n" "Last-Translator: Alexander Bokovoy <ab@avilink.net>\n" "Language-Team: be\n" @@ -14,21 +14,21 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Калі ласка, пачакайце" -#: any.pm:262 +#: any.pm:261 #, fuzzy, c-format msgid "Bootloader installation in progress" msgstr "Усталяванне загрузчыку" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -39,12 +39,12 @@ msgid "" "Assign a new Volume ID?" msgstr "" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнікла наступная памылка:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -55,7 +55,7 @@ msgid "" "At your next boot you should see the bootloader prompt." msgstr "" -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -65,268 +65,268 @@ msgid "" "On which drive are you booting?" msgstr "" -#: any.pm:341 +#: any.pm:340 #, fuzzy, c-format msgid "Bootloader Installation" msgstr "Усталяванне загрузчыку" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?" -#: any.pm:369 +#: any.pm:368 #, fuzzy, c-format msgid "First sector (MBR) of drive %s" msgstr "Першы сектар прылады (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Першы сектар прылады (MBR)" -#: any.pm:373 +#: any.pm:372 #, fuzzy, c-format msgid "First sector of the root partition" msgstr "Першы сектар загрузачнага раздзелу" -#: any.pm:375 +#: any.pm:374 #, fuzzy, c-format msgid "On Floppy" msgstr "Захаванне на дыскету" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Прапусціць" -#: any.pm:412 +#: any.pm:411 #, fuzzy, c-format msgid "Boot Style Configuration" msgstr "Настройка IDE" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Галоўныя опцыі пачатковага загрузчыку" -#: any.pm:432 +#: any.pm:431 #, fuzzy, c-format msgid "Bootloader" msgstr "Усталяванне загрузчыку" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, fuzzy, c-format msgid "Bootloader to use" msgstr "Галоўныя опцыі пачатковага загрузчыку" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Загрузачная прылада" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Затрымка перад загрузкай вобразу па дамаўленню" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "" -#: any.pm:442 +#: any.pm:441 #, fuzzy, c-format msgid "Enable SMP" msgstr "Сервер друку" -#: any.pm:443 +#: any.pm:442 #, fuzzy, c-format msgid "Enable APIC" msgstr "Сервер друку" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Бясьпека" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Пароль" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Паролі не супадаюць" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Паспрабуйце яшчэ раз" -#: any.pm:452 +#: any.pm:451 #, fuzzy, c-format msgid "You cannot use a password with %s" msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Паўтарыце пароль" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Ачышчаць /tmp пры кожнай загрузцы" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "" -#: any.pm:471 +#: any.pm:470 #, fuzzy, c-format msgid "Enable CD Boot?" msgstr "Дазволіць 6dB павышэнне + цяжкае лімітаванне" -#: any.pm:472 +#: any.pm:471 #, fuzzy, c-format msgid "Enable OF Boot?" msgstr "Дазволіць 6dB павышэнне + цяжкае лімітаванне" -#: any.pm:473 +#: any.pm:472 #, fuzzy, c-format msgid "Default OS?" msgstr "Па дамаўленню" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Вобраз" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Root" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Далучыць" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Відэа-рэжым" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, fuzzy, c-format msgid "Network profile" msgstr "Сеткавы інтэрфейс" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Метка" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Па дамаўленню" -#: any.pm:576 +#: any.pm:575 #, fuzzy, c-format msgid "NoVideo" msgstr "Відэа" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Пустая метка не дазваляецца" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "" -#: any.pm:588 +#: any.pm:587 #, fuzzy, c-format msgid "You must specify a root partition" msgstr "Першы сектар загрузачнага раздзелу" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Гэтая метка ўжо выкарыстоўваецца" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Які тып пункта жадаеце дадаць?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Іншая АС (SunOS,...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Іншая АС (MacOS,...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Іншая АС (Windows...)" -#: any.pm:656 +#: any.pm:655 #, fuzzy, c-format msgid "Bootloader Configuration" msgstr "Настройка IDE" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -335,47 +335,47 @@ msgstr "" "У меню маюцца наступныя пункты.\n" "Вы можаце дадаць яшчэ, альбо змяніць існуючыя." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "" -#: any.pm:871 +#: any.pm:870 #, fuzzy, c-format msgid "access to administrative files" msgstr "Выкарыстоўваць настройкі сыстэмнага адміністратара" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "" -#: any.pm:873 +#: any.pm:872 #, fuzzy, c-format msgid "access to compilation tools" msgstr "Канфігурацыя сістэмных сэрвісаў" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(ужо дададзена %s)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Калі ласка, увядзіце імя карыстальніку" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -384,149 +384,149 @@ msgstr "" "Імя карыстальніку павінна змяшчаць літары толькі на ніжнім рэгістры, \n" "лічбы, ‛-’ і ‛_’" -#: any.pm:887 +#: any.pm:886 #, fuzzy, c-format msgid "The user name is too long" msgstr "Імя занадта доўгае" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Гэта імя карыстальніку ўжо дададзена" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "ID карыстальніка" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "ID групы" -#: any.pm:895 +#: any.pm:894 #, fuzzy, c-format msgid "%s must be a number" msgstr "UIN павінен утрымліваць толькі лічбы.\n" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" -#: any.pm:900 +#: any.pm:899 #, fuzzy, c-format msgid "User management" msgstr "Карыстальнік" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, fuzzy, c-format msgid "Set administrator (root) password" msgstr "Пароль для root" -#: any.pm:912 +#: any.pm:911 #, fuzzy, c-format msgid "Enter a user" msgstr "" "Увядзіце імя карыстальніку\n" "%s" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Піктаграма" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Уласнае імя" -#: any.pm:924 +#: any.pm:923 #, fuzzy, c-format msgid "Login name" msgstr "Гульня ў косьці" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Абалонка:" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "" -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Аўтаматычны ўваход у сістэму" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" -#: any.pm:1006 +#: any.pm:1005 #, fuzzy, c-format msgid "Use this feature" msgstr "Зачыніць гэтую тэчку" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Абярыце асноўнага карыстальніка:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Абярыце мэнэджар вокнаў:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, fuzzy, c-format msgid "Release Notes" msgstr "Калі ласка, пачакайце" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Зачыніць" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Ліцэнзійная дамова" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Выхад" -#: any.pm:1102 +#: any.pm:1101 #, fuzzy, c-format msgid "Do you accept this license ?" msgstr "Ці ёсць у вас іншы?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Прыняць" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Адказаць" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, fuzzy, c-format msgid "Please choose a language to use" msgstr "калі ласка, пазначце тып вашай мышы" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -534,82 +534,82 @@ msgid "" "when your installation is complete and you restart your system." msgstr "Вы можаце абраць іншыя мовы, якія будуць даступны пасля ўсталявання" -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "Выбар мовы" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "" -#: any.pm:1170 +#: any.pm:1169 #, fuzzy, c-format msgid "All languages" msgstr "Выбар мовы" -#: any.pm:1192 +#: any.pm:1191 #, fuzzy, c-format msgid "Language choice" msgstr "Выбар мовы" -#: any.pm:1246 +#: any.pm:1245 #, fuzzy, c-format msgid "Country / Region" msgstr "Краіна - рэгіён і мова" -#: any.pm:1247 +#: any.pm:1246 #, fuzzy, c-format msgid "Please choose your country" msgstr "калі ласка, пазначце тып вашай мышы" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "" -#: any.pm:1250 +#: any.pm:1249 #, fuzzy, c-format msgid "Other Countries" msgstr "Парты вываду:" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Адмысловае" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Нічога" -#: any.pm:1340 +#: any.pm:1339 #, fuzzy, c-format msgid "No sharing" msgstr "Нічога" -#: any.pm:1340 +#: any.pm:1339 #, fuzzy, c-format msgid "Allow all users" msgstr "Дадаць карыстальніка" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Па выбару" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -619,86 +619,86 @@ msgid "" "\"Custom\" permit a per-user granularity.\n" msgstr "" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " "Windows." msgstr "" -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " "systems." msgstr "" -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "" -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" "You can use userdrake to add a user to this group." msgstr "" -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" -#: any.pm:1543 +#: any.pm:1542 #, fuzzy, c-format msgid "Timezone" msgstr "Тэма" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Які ваш часавы пояс?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "" -#: any.pm:1573 +#: any.pm:1572 #, fuzzy, c-format msgid "%s (hardware clock set to UTC)" msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?" -#: any.pm:1574 +#: any.pm:1573 #, fuzzy, c-format msgid "%s (hardware clock set to local time)" msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?" -#: any.pm:1576 +#: any.pm:1575 #, fuzzy, c-format msgid "NTP Server" msgstr "NIS сэервер:" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "" @@ -1022,7 +1022,7 @@ msgid "Domain Admin Password" msgstr "Яшчэ раз пароль:" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1032,56 +1032,56 @@ msgid "" "\n" msgstr "" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "Не хапае дыскавай прасторы ў /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, fuzzy, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " "renumbered" msgstr "" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " "choose \"%s\"" msgstr "" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, fuzzy, c-format msgid "Re-install Boot Loader" msgstr "Усталяванне загрузчыку" @@ -1194,7 +1194,7 @@ msgstr "Зроблена" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1218,7 +1218,7 @@ msgstr "" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Увага!" @@ -2227,7 +2227,7 @@ msgstr "" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Зьмяненьні не былі захаваныя. Ці жадаеце працягнуць?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "" @@ -2237,17 +2237,17 @@ msgstr "" msgid "Mandatory package %s is missing" msgstr "" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, fuzzy, c-format msgid "The following packages need to be installed:\n" msgstr "Наступныя пакеты будуць даданы да сістэмы" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, fuzzy, c-format msgid "Installing packages..." msgstr "Усталяванне пакету %s" -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, fuzzy, c-format msgid "Removing packages..." msgstr "Прагляд даступных пакетаў" @@ -4564,7 +4564,7 @@ msgstr "Замбія" msgid "Zimbabwe" msgstr "Зімбабве" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Сардэчна запрашаем у %s" @@ -4590,7 +4590,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4603,12 +4603,11 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" - - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4631,7 +4630,8 @@ msgid "" "Software Products." msgstr "" - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4676,7 +4676,8 @@ msgid "" "you." msgstr "" - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4696,7 +4697,8 @@ msgid "" "further details." msgstr "" - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4710,7 +4712,8 @@ msgid "" "\"Mageia\" and associated logos are trademarks of Mageia" msgstr "" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -4728,7 +4731,7 @@ msgid "" "For any question on this document, please contact Mageia." msgstr "" -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -4741,7 +4744,7 @@ msgid "" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po index 6d1bf8e6a..d777b4bc4 100644 --- a/perl-install/share/po/bg.po +++ b/perl-install/share/po/bg.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX-bg\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2009-03-21 13:58+0200\n" "Last-Translator: Kolio Kolev <kolio_kolev@biotronica.net>\n" "Language-Team: Bulgarian <Mageia User Group - Bulgaria <mandriva-" @@ -23,21 +23,21 @@ msgstr "" "X-Generator: Lokalize 0.3\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Моля, изчакайте" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Инсталира се програма за начално зареждане" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -48,14 +48,14 @@ msgid "" "Assign a new Volume ID?" msgstr "" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "" "Инсталацията програмата за начално зареждане се провали. Появи се следната " "грешка:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -66,7 +66,7 @@ msgid "" "At your next boot you should see the bootloader prompt." msgstr "" -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -81,268 +81,268 @@ msgstr "" "\n" "Кое дисково устройство ще ползвате за начално зареждане?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Инсталация на програма за начално зареждане" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Къде искате да инсталирате програмата за начално зареждане?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Първи сектор (MBR) на дисково устройство %s " -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Първи сектор на дисковото устройство (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Първия сектор на дисковия дял (PBS) с Mageia" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Запазване на дискета" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Пропусни" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Настройка на начина на стартиране" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Опции на програмата за начално зареждане" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Програма за начално зареждане" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Използвана програма за начално зареждане" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Устройство за зареждене" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Основни настойки" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Време за изчакване преди зареждане" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Включи ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Включи SMP" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Включи APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Включи Local APIC" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Сигурност" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Парола" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Паролите не съвпадат" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Моля, опитайте отново" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Вие не можете да използвате парола включваща %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Парола (повтори)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Почистване на директория /tmp при всяко зареждане" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Начално съобщение" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Изчакване на Open Firmware" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Време за изчакване" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Зареждане от оптично устройство (CD/DVD)?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Стартиране от OF ?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Операционна система по подразбиране?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Образ" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Коренов дял" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Параметри" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Xen параметри" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Видео режим" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Мрежов профил" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Име" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "По подразбиране" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "Без графичен режим" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Полето 'Име' не трябва да е празно" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Трябва да зададете обаз на ядрото" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Трябва да зададете коренов дял" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Това 'Име' вече се използва" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Какъв тип информация искате да прибавите" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Друга ОС (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Друга ОС (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Друга ОС (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Конфигуриране на програмата за начално зареждане" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -351,47 +351,47 @@ msgstr "" "Това са записите в менюто за начално зареждане.\n" "Можете да добавите още или да промените съществуващите." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "достъп до X програми" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "достъп до rpm инструменти" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "позволява \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "достъп до файлове за администриране" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "достъп до мрежови инструменти" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "достъп до инструменти за разработка" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(вече прибавих %s)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Моля, задайте потребителско име" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -399,149 +399,149 @@ msgid "" msgstr "" "Потребителското име може да включва само малки букви, номера, `-' и `_'" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Това потребителско име е твърде дълго" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Това потребителско име е вече добавено" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Потребителски номер" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Номер на група" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "%s трябва да е число" -#: any.pm:896 +#: any.pm:895 #, fuzzy, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s трябва да е над 500. " -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Управление на потребител" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, fuzzy, c-format msgid "Set administrator (root) password" msgstr "Въведете парола за root" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Въведете потребител" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Икона" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Истинско име" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Потебителско име" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Обвивка" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Моля, изчакайте. Обновява се източник..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Автоматично влизане" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Мога да настроя компютъра ви за автоматично влизане в системата като някой " "потребител." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Използвай тази характеристика" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Изберете подразбиращ се потребител:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Изберете графична среда за стартиране:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Бележки към версията" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Затвори" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Лицензионен договор" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Изход" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "Приемате ли този лиценз ?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Приеми" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Откажи" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Моля, изберете език" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -552,82 +552,82 @@ msgstr "" "езиците, които искате да инсталирате. Те ще бъдат налични след\n" "като завърши инсталацията и рестартирате системата." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "Многоезикова поддръжка" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Съвместимост с преди използващи се (различни от UTF-8) кодировки" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Всички езици" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Избор на език" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Страна / Регион" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Моля, изберете вашата държава" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Пълен списък на достръпните страни" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Други държави" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Разширени настройки" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr " Метод за въвеждане:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Няма" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Без споделяне" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Позволи на всички потребители" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Позволи на отделни потребители" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -644,7 +644,7 @@ msgstr "" "\"Позволи на отделни потребители\" разрешава споделянето само на " "потребителите, които са членове на групата \"fileshare\".\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -654,7 +654,7 @@ msgstr "" "ограничено \n" " приложима за Mac OS X и Windows." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -664,7 +664,7 @@ msgstr "" "повечето\n" " съвременни Linux системи." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." @@ -672,12 +672,12 @@ msgstr "" "Вие може да споделяте файлове използвайки NFS или SMB протоколи. \n" "Моля, изберете кой от тях ще използвате." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Стартира userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -686,7 +686,7 @@ msgstr "" "За споделянето на потребителски директории използва група \"fileshare\".\n" "Може да използвате userdrake, за да добавите потребител към тази група." -#: any.pm:1504 +#: any.pm:1503 #, fuzzy, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -695,49 +695,49 @@ msgstr "" "За да се активират направените промени е необходимо да излезете от текущата " "сесия и отново да влезете" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" "За да се активират направените промени е необходимо да излезете от текущата " "сесия и отново да влезете" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Часова зона" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Коя е вашата времевата зона?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Дата, Часовник и Настройки на часова зона" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Кое е най-доброто време?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (хадруерният часовник е настроен по GMT)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (хадруерният часовник е настроен по локалното време)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP сървър" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Автоматична синхронизация на времето (използва NTP)" @@ -1064,7 +1064,7 @@ msgstr "Парола за администратор на домейн" # so use only 7bit for this message (and do transliteration or # leave it in English, as it is the best for your language) #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1079,42 +1079,42 @@ msgstr "" "изчакайте да се зареди избраната по подразбиране.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO с текстово меню" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB в графично меню" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB с текстово меню" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "няма достатъчно място в /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Не можете да инсталирате програмата за начално зареждане на дяла %s\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1123,7 +1123,7 @@ msgstr "" "Конфигурацията на програмата за начално зареждане трябва да се актуализира, " "защото дисковите дялове бяха преномерирани" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1132,7 +1132,7 @@ msgstr "" "Програмата за начално зареждане не може да бъде коректно инсталирана. Трябва " "да стартирате режим rescue и да изберете \"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Преинсталиране на програмата за начално зареждане" @@ -1250,7 +1250,7 @@ msgstr "Готово" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1274,7 +1274,7 @@ msgstr "URL трябва да започва с http:// или https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Предупреждение" @@ -2332,7 +2332,7 @@ msgstr "" "Пакет %s трябва да бъде инсталиран\n" "Искате да го инсталирате?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Пакетът %s не може да бъде инсталиран!" @@ -2342,17 +2342,17 @@ msgstr "Пакетът %s не може да бъде инсталиран!" msgid "Mandatory package %s is missing" msgstr "Задължителният пакет %s липсва" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Следните пакети ще трябва да се инсталират:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Инсталиране на пакети ..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Премахване на пакети ..." @@ -4735,7 +4735,7 @@ msgstr "Замбия" msgid "Zimbabwe" msgstr "Зимбабве" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Добре дошли в %s" @@ -4761,7 +4761,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4774,8 +4774,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Въведение\n" "\n" @@ -4787,7 +4786,8 @@ msgstr "" "система и различните\n" "компоненти на Mageia дистрибуцията." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4828,7 +4828,8 @@ msgstr "" "унижтожите всички\n" "копия на Софтуерния лиценз." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4906,7 +4907,8 @@ msgstr "" "криптографски компоненти включени\n" "в Софтуерния Продукт." - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4945,7 +4947,8 @@ msgstr "" "за\n" "повече информация." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4969,7 +4972,8 @@ msgstr "" "части, по всякакъв начин и с всякакви цели.\n" "\"Mageia\" и свързаните логота са запазена марка на Mageia" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5005,8 +5009,7 @@ msgstr "" "неговия оригинал на\n" "английски." - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5019,7 +5022,7 @@ msgid "" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po index ec9b01687..7d5698df2 100644 --- a/perl-install/share/po/bn.po +++ b/perl-install/share/po/bn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX HEAD\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2005-03-19 23:18+0600\n" "Last-Translator: Samia <mailsamia2001@yahoo.com>\n" "Language-Team: Bangla <mdk-translation@bengalinux.org>\n" @@ -17,21 +17,21 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "অনুগ্রহ করে অপেক্ষা করুন" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "বুট লোডার ইনস্টল করা হচ্ছে" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -46,12 +46,12 @@ msgstr "" "উইন্ডোজ সমস্যা।\n" "নতুন একটি ভলিউম আই-ডি দেয়া হবে?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Bootloader ইনষ্টলেশন ব্যর্থ হয়েছে। এ সমস্ত ত্রুটি ঘটেছে:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -67,7 +67,7 @@ msgstr "" " তারপর টাইপ করুন: shut-down\n" "পরবর্তীতে বুট হওয়ার সময় বুটলোডার প্রম্প্ট দেখতে পাওয়া উচিত।" -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -83,268 +83,268 @@ msgstr "" "\n" "আপনি কোন ড্রাইভ থেকে বুট করছেন?" -#: any.pm:341 +#: any.pm:340 #, fuzzy, c-format msgid "Bootloader Installation" msgstr "বুট লোডার ইনস্টল করা হচ্ছে" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "আপনি bootloader টি কোথায় ইনস্টল করতে চান?" -#: any.pm:369 +#: any.pm:368 #, fuzzy, c-format msgid "First sector (MBR) of drive %s" msgstr "ড্রাইভের প্রথম সেক্টর (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "ড্রাইভের প্রথম সেক্টর (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "রুট পার্টিশনের প্রথম সেক্টর" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "ফ্লপি তে" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "উপেক্ষা" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "বুটের ধরণ কনফিগারেশন" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "বুটলোডারের আসল অপশনসমুহ" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "বুটলোডার" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "ব্যবহারের জন্য বুটলোডার" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "বুট ডিভাইস" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "স্বাভাবিক ইমেজ লোড করার আগে দেরী করো" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "ACPI এনেবল করো" -#: any.pm:442 +#: any.pm:441 #, fuzzy, c-format msgid "Enable SMP" msgstr "ACPI এনেবল করো" -#: any.pm:443 +#: any.pm:442 #, fuzzy, c-format msgid "Enable APIC" msgstr "ACPI এনেবল করো" -#: any.pm:445 +#: any.pm:444 #, fuzzy, c-format msgid "Enable Local APIC" msgstr "ACPI এনেবল করো" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "সিকিউরিটি" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "পাসওয়ার্ড" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "পাসওয়ার্ডটি মিলছে না" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "অনুগ্রহ করে আবার চেষ্ট করুন" -#: any.pm:452 +#: any.pm:451 #, fuzzy, c-format msgid "You cannot use a password with %s" msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "পাসওয়ার্ড (পুনরায়)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "প্রতি বুটে /tmp পরিষ্কার করো" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Init বার্তা" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "বিলম্বিত ওপেন ফার্মওয়্যার" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "কার্নাল বুটের সময় অতিক্রান্ত হয়েছে" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "সিডি বুট সক্রিয় করা হবে?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "OF বুট সক্রিয় করা হবে?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "স্বাভাবিক অবস্থায় ব্যবহৃত OS?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "ইমেজ" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Root" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "যুক্ত" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "ভিডিওর ধরণ" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "নেটওয়ার্ক প্রোফাইল" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "শিরোনাম" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "স্বাভাবিক" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "কোন ভিডিও নেই" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "খালি শিরোনাম গ্রহণযোগ্য নয়" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "আপনাকে অবশ্যই একটি কার্নালের ইমেজ নির্ধারণ করে দিতে হবে" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "আপনাকে অবশ্যই একটি রুট পার্টিশন নির্ধারণ করে দিতে হবে" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "এই শিরোনামটি আগেই ব্যবহার হয়েছে" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "আপনি কি ধরণের এন্ট্রি যোগ করতে চান?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "লিনাক্স" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "অন্যান্য OS (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "অন্যান্য OS (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "অন্যান্য OS (Windows...)" -#: any.pm:656 +#: any.pm:655 #, fuzzy, c-format msgid "Bootloader Configuration" msgstr "বুটের ধরণ কনফিগারেশন" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -353,197 +353,197 @@ msgstr "" "এপর্যন্ত আপনার বুটমেনুর এন্ট্রিগুলি এখানে।\n" "আপনি অন্যান্য এন্ট্রি তৈরী করতে পারেন অথবা আগের এন্ট্রিগুলি পরিবর্তন করতে পারেন।" -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "X প্রোগ্রামসমূহে প্রবেশাধিকার" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "RPM টুলে প্রবেশাধিকার" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "\"su\" গ্রহন করো" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "এডমিনিষ্ট্রেশন সংক্রান্ত ফাইলে প্রবেশাধিকার" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "নেটওয়ার্ক টুলে প্রবেশাধিকার" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "compilation টুলে প্রবেশাধিকার" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(%s আগেই যোগ করা হয়েছে)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "অনুগ্রহ করে একটি উইজার নেম দিন" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " "cased letters, numbers, `-' and `_'" msgstr "ইউজারনেমে অবশ্যই ছোটহাতের অক্ষর, নম্বর \"-\" এবং \"_\" থাকতে হবে" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "ইউজারনেমটি অনেক বড়" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "এই ইউজারনেমটি এর আগেই যোগ করা হয়েছে" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "ব্যবহারকারীর ID" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "দলের ID" -#: any.pm:895 +#: any.pm:894 #, fuzzy, c-format msgid "%s must be a number" msgstr "অপশন %s-কে অবশ্যই একটি সংখ্যা হতে হবে!" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" -#: any.pm:900 +#: any.pm:899 #, fuzzy, c-format msgid "User management" msgstr "ব্যবহারকারীনাম" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "আ্যাডমিনিস্ট্রেটর (root) পাসওয়ার্ড সেট করুন" -#: any.pm:912 +#: any.pm:911 #, fuzzy, c-format msgid "Enter a user" msgstr "" "একটি ইউজার প্রবেশ করান\n" "%s" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "আইকন" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "আসল নাম" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "লগ-ইন নাম" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "শেল" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "মাধ্যম যোগ করা হচ্ছে, অনুগ্রহ করে অপেক্ষা করুন..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "সয়ংক্রিয় লগ-ইন" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "আমি আপনার কম্পিউটারকে সয়ংক্রিয়ভাবে একটি ইউজারকে লগইন করার জন্য সেট করতে পারি।" -#: any.pm:1006 +#: any.pm:1005 #, fuzzy, c-format msgid "Use this feature" msgstr "এই সুবিধাটি কি আপনি ব্যবহার করতে চান?" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "স্বাভাবিক ব্যবহারকারীকে পছন্দ করুন:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "রান করার জন্য উইন্ডো ম্যানেজারকে পছন্দ করুন:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "সংস্করণ মন্তব্য" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "বন্ধ" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "লাইসেন্স এগ্রিমেন্ট" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "বাহির" -#: any.pm:1102 +#: any.pm:1101 #, fuzzy, c-format msgid "Do you accept this license ?" msgstr "আপনার কি আরও একটি আছে?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "গ্রহণ" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "অস্বীকার" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "ব্যবহার করার জন্য একটি ভাষা পছন্দ করুন" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -554,82 +554,82 @@ msgstr "" "আপনি যেই ভাষাটি ইনস্টল করতে চান তা পছন্দ করুন।\n" "ইনস্টল শেষে রি-স্টার্ট করার পরে সেই ভাষাগুলি উপলব্ধ হবে।" -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "সমস্থ ভাষা" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "সমস্থ ভাষা" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "পছন্দনীয় ভাষা" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "দেশ / স্থান" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "অনুগ্রহ করে তোমার দেশ পছন্দ করো।" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "উপলব্ধ সমস্থ দেশের নাম এখানে রয়েছে" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "অন্যান্য দেশসমুহ" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "উন্নত" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "ইনপুট মাধ্যম:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "একটিও না" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "শেয়ারিং নেই" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "সব ব্যবহারকারীদের গ্রহণ করো" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "ব্যবস্থা" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -639,7 +639,7 @@ msgid "" "\"Custom\" permit a per-user granularity.\n" msgstr "আপনি কি ব্যবহারকারীদের কিছু ডিরেক্টরি শেয়ার করতে দিতে চান?\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -647,7 +647,7 @@ msgid "" msgstr "" "NFS: ঐতিহ্যগত ইউনিক্স ফাইল শেয়ারিং সিস্টেম, যা ম্যাক এবং উইন্ডোজে স্বল্প সমর্থিত।" -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -656,7 +656,7 @@ msgstr "" "SMB: উইন্ডোজ, ম্যাক ও-এস এক্স এবং অনেক আধুনিক লিনাক্স সিস্টেম কর্তৃক ব্যবহৃত ফাইল " "শেয়ারিং সিস্টেম।" -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." @@ -664,12 +664,12 @@ msgstr "" "আপনি NFS বা SMB ব্যবহার করে ফাইল পাঠাতে পারেন। যেটি আপনি ব্যবহার করতে চান " "অনুগ্রহ করে নির্বাচন করুন।" -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "userdrake শুরু করো" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -678,54 +678,54 @@ msgstr "" "প্রত্যেক ব্যবহারকারী গ্রুপের \"ফাইল ভাগাভাগি\" ভাগাভাগি করতে পারেন। \n" "এই গ্রুপে একজণ ব্যবহারকারী যোগ করতে আপনি userdrake ব্যবহার করতে পারেন।" -#: any.pm:1504 +#: any.pm:1503 #, fuzzy, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "টাইমজোন" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "আপনার টাইমজোন কি?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "" -#: any.pm:1573 +#: any.pm:1572 #, fuzzy, c-format msgid "%s (hardware clock set to UTC)" msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা" -#: any.pm:1574 +#: any.pm:1573 #, fuzzy, c-format msgid "%s (hardware clock set to local time)" msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP সার্ভার" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "সয়ংক্রিয়ভাবে সময় মেলাও (NTP ব্যবহার করে)" @@ -1056,7 +1056,7 @@ msgid "Domain Admin Password" msgstr "ডোমেইন অ্যাডমিনের পাসওয়ার্ড" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1071,43 +1071,43 @@ msgstr "" "wait for default boot.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "টেক্সট মেনুর সাথে LILO" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "/boot -এ বেশী জায়গা নেই" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "আপনি %s পার্টিশনে বুটলোডার ইনস্টল করতে পারবেননা\n" # renumber = রি-নাম্বার লিখলাম। আসলটা আমি জানিনা -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1115,7 +1115,7 @@ msgid "" msgstr "" "পার্টিশন রি-নাম্বার করার কারনে আপনার বুটলোডারের কনফিগারেশন অবশ্যই আপডেট করতে হবে" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1124,7 +1124,7 @@ msgstr "" "বুটলোডার সঠিকভাবে ইনস্টল হতে পারবেনা। আপনাকে rescue বুট করতে হবে এবং \"%s\" " "পছন্দ করতে হবে" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "বুট লোডার রি-ইনস্টল করো" @@ -1243,7 +1243,7 @@ msgstr "হয়েছে" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1267,7 +1267,7 @@ msgstr "URL অবশ্যই http:// অথবা https:// দিয়ে শু #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "নোটিশ" @@ -2300,7 +2300,7 @@ msgstr "নতুন সার্ভারের খোজ করো" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "%s প্যাকেজগুলি ইনস্টল করা প্রয়োজন। আপনি কি ইনস্টল করতে চান?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "%s প্যাকেজটি ইনস্টল করা যায় নি!" @@ -2310,17 +2310,17 @@ msgstr "%s প্যাকেজটি ইনস্টল করা যায় msgid "Mandatory package %s is missing" msgstr "%s আবশ্যিক প্যাকেজ নেই" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "নিম্নোক্ত প্যাকেজসমূহ ইনস্টল করা প্রয়োজন:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "প্যাকেজসমূহ ইনস্টল করা হচ্ছে..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "প্যাকেজসমূহ অপসরণ করা হচ্ছে..." @@ -4769,7 +4769,7 @@ msgstr "জাম্বিয়া" msgid "Zimbabwe" msgstr "জিম্বাবুয়ে" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "%s -এ আপনাকে স্বাগতম" @@ -4795,7 +4795,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4808,12 +4808,11 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" - - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4836,7 +4835,8 @@ msgid "" "Software Products." msgstr "" - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4881,7 +4881,8 @@ msgid "" "you." msgstr "" - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4901,7 +4902,8 @@ msgid "" "further details." msgstr "" - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4915,7 +4917,8 @@ msgid "" "\"Mageia\" and associated logos are trademarks of Mageia" msgstr "" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -4933,7 +4936,7 @@ msgid "" "For any question on this document, please contact Mageia." msgstr "" -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -4951,7 +4954,7 @@ msgstr "" "একটি আপনার জন্যও প্রযোজ্য হতে পারে, আপনার স্থানীয় আইন পরীক্ষা করুন।" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po index 03296f835..f030001cd 100644 --- a/perl-install/share/po/br.po +++ b/perl-install/share/po/br.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX 10.2\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2012-04-30 10:42+0200\n" "Last-Translator: Thierry Vignaud <thierry.vignaud.com>\n" "Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n" @@ -16,21 +16,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1;plural=0\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Gortozit mar plij" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "O staliañ ar c'harger loc'hañ" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -41,13 +41,13 @@ msgid "" "Assign a new Volume ID?" msgstr "" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "" "Staliadur ar c'harger loc'hañ zo sac'het. Degouezhet eo ar fazi a heul :" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -58,7 +58,7 @@ msgid "" "At your next boot you should see the bootloader prompt." msgstr "" -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -68,268 +68,268 @@ msgid "" "On which drive are you booting?" msgstr "" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Staliadur ar c'harger loc'hañ" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Rann gentañ (MBR) pladenn %s" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Rann gentañ ar bladenn (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Rann gentañ ar parzhadur kentañ" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "War bladennig" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Tremen e-biou" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Kefluniadur giz al loc'hañ" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Dibarzhoù pennañ ar c'harger loc'hañ" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Karger loc'hañ" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Karger loc'hañ da implijout" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Trobarzhell loc'hañ" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Dibarzhoù pennañ" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Bevaat ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Bevaat SMP" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Bevaat APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Bevaat APIC lec'hel" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Diogelroez" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Tremenger" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "An tremegerioù ne glot ket" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Klaskit adarre mar plij" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Gellout a rit implij ur ger tremen gant %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Tremenger (adarre)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Skarañ /tmp bep ma loc'her" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Amzer-hont ar galon" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "RK dre ziouer ?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Skeudenn" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Gwrizienn" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Ouzhpennañ en diwezh" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Mod video" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Profil rouedad" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Skridennad" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Dre ziouer" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "N'eo ket video" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Berzet eo ar skridennadoù goullo" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Ret eo deoc'h kaout ur skeudenn kalon" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Ret eo deoc'h kaout ur parzhadur gwrizienn" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "En implij eo ar skridennad-se endeo" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Pe seurt enmont a vennit ouzhpennañ ?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Reizhiadoù all (SunOS ...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Reizhiadoù all (MacOS ...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Reizhiadoù all (Windows ...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Kefluniadur al loc'hañ" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -338,47 +338,47 @@ msgstr "" "Setu da heul an enmontoù liesseurt.\n" "Gallout a rit ouzhpennañ lod pe gemmañ a re a zo." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "Aotreañ « su »" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(ouzhpennet %s endeo)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Roit un anv arveriad mar plij" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -387,149 +387,149 @@ msgstr "" "An anv arveriad a zle bezañ ennañ lizherennoù munut, sifroù, `-' ha `_' " "hepken" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Re hir eo an anv arveriad-se" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "En implij eo an anv arveriad-se endeo" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "ID an arveriad" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "ID ar strollad" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "red eo da bezañ un niver %s" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Merañ an arveriaded" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Termeniñ tremenger ar merour (root)" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Skrivit anv un arveriad" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Arlun" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Anv gwirion" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Anv ereañ" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Shell" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Gortozit mar plij, emaon oc'h ouzhpennañ ur media ..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Emereañ" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek gant un arveriad a " "c'hellañ." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Implij an arc'hwel-mañ" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Dibabit an arveriad dre ziouer :" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Dibabit ar merour prenestrer da seveniñ :" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Cheñchamentoù" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Serriñ" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Emglev an aotre" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Kuitaat" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "Hag e plij an aotre-mañ deoc'h ?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Plijout a ra din" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Ne blij ket din" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Dibabit ar yezh da implijout, mar plij" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -540,82 +540,82 @@ msgstr "" " yezhoù all hag a vo hegerz goude staliañ (ur wech e vo bet adloc'het\n" " ar reizhiad)" -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "Mageia" -#: any.pm:1160 +#: any.pm:1159 #, c-format msgid "Multiple languages" msgstr "Lesyezh" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Kodadur kozh (n'eo ket UTF-8)" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "An holl yezhoù" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Dibab ho yezh" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Bro / Rannvro" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Dibabit ho pro, mar plij" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Setu eo listenn leun ar broioù holl" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Broioù all" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Barek" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Hentenn enkas :" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Hini ebet" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "N'eo ket lodañ" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Aotreiñ pep arveriad" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Personelañ" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -625,86 +625,86 @@ msgid "" "\"Custom\" permit a per-user granularity.\n" msgstr "" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " "Windows." msgstr "" -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " "systems." msgstr "" -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "" -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Lañsañ userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" "You can use userdrake to add a user to this group." msgstr "" -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Takad-eur" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Pe seurt a vo ho takad-eur ?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Kefluniadur an deizid, an eurier hag an amzer" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Peseurt hini zo an amzer gwelloc'h ?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (war UTC eo lakaet ho eurier periantel)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (war GMT eo lakaet ho eurier periantel)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "Servijer NTP" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "" @@ -1027,7 +1027,7 @@ msgid "Domain Admin Password" msgstr "Tremenger merour an domani" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1042,42 +1042,42 @@ msgstr "" "gortozit \n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO gant meuziad skrid" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB gant meuziad grafek" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB gant meuziad skrid" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "n'eus ket a-walc'h egor e /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Ne mennit ket staliañ ar c'harger loc'hañ war ur parzhadur %s\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1086,7 +1086,7 @@ msgstr "" "Red eo da vremañat kefluniadur ho karger loc'hañ peogwir e oa cheñchet niver " "ar parzhiadurioù" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1095,7 +1095,7 @@ msgstr "" "N'hell ket bet staliet ar c'harger loc'hañ. Dao eo deoc'h loc'hañ gant ar " "bladenn skoazell ha dibab « %s »" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Staliañ ar c'harger loc'hañ c'hoazh" @@ -1208,7 +1208,7 @@ msgstr "Graet" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1232,7 +1232,7 @@ msgstr "Ezhom en deus an URL da gregiñ gant http:// pe https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Ho evezh" @@ -2251,7 +2251,7 @@ msgstr "Klask servijerioù nevez" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Ar pakad %s zo war-nes bezañ staliet. Mennout a rit staliañ anezhañ ?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "N'eo ket evit staliañ ar pakad %s !" @@ -2261,17 +2261,17 @@ msgstr "N'eo ket evit staliañ ar pakad %s !" msgid "Mandatory package %s is missing" msgstr "Mankout a ra ar pakad ret %s" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Ar pakadoù a-heul zo war-nes bezañ staliet :\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "O staliañ pakadoù ..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Lemel pakadoù ..." @@ -4643,7 +4643,7 @@ msgstr "Zambi" msgid "Zimbabwe" msgstr "Zimbabwe" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Degemer e %s" @@ -4669,7 +4669,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "N'eus ket moaien da loc'hañ gant /boot war meur a levrenn fizikel" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4682,12 +4682,11 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" - - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4710,7 +4709,8 @@ msgid "" "Software Products." msgstr "" - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4755,7 +4755,8 @@ msgid "" "you." msgstr "" - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4775,7 +4776,8 @@ msgid "" "further details." msgstr "" - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4789,7 +4791,8 @@ msgid "" "\"Mageia\" and associated logos are trademarks of Mageia" msgstr "" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -4807,7 +4810,7 @@ msgid "" "For any question on this document, please contact Mageia." msgstr "" -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -4820,7 +4823,7 @@ msgid "" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po index b49185389..818aa70f4 100644 --- a/perl-install/share/po/bs.po +++ b/perl-install/share/po/bs.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: bs\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2006-09-13 19:15+0200\n" "Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n" "Language-Team: Bosnian <lokal@linux.org.ba>\n" @@ -19,21 +19,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.10.2\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Molim sačekajte" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Instalacija bootloadera u toku" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -51,12 +51,12 @@ msgstr "" "\n" "Da li da podesim novi ID volumena?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -74,7 +74,7 @@ msgstr "" " Zatim kucajte: shut-down\n" "Prilikom idućeg boota biste trebali vidjeti upit bootloadera." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -89,268 +89,268 @@ msgstr "" "\n" "Sa kojeg diska vršite boot?" -#: any.pm:341 +#: any.pm:340 #, fuzzy, c-format msgid "Bootloader Installation" msgstr "Instalacija bootloadera u toku" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Gdje želite smjestiti bootloader?" -#: any.pm:369 +#: any.pm:368 #, fuzzy, c-format msgid "First sector (MBR) of drive %s" msgstr "Prvi sektor diska (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Prvi sektor diska (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Prvi sektor root particije" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Na disketi" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Preskoči" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Konfiguracija stila boota" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Glavne opcije bootloadera" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Bootloader" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Bootloader koji ćete koristiti" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Boot uređaj" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Glavne opcije" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Pauza prije pokretanja izabrane opcije" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Uključi ACPI" -#: any.pm:442 +#: any.pm:441 #, fuzzy, c-format msgid "Enable SMP" msgstr "Uključi ACPI" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Uključi APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Uključi Local APIC" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Sigurnost" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Šifra" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Šifre se ne poklapaju" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Molim pokušajte ponovo" -#: any.pm:452 +#: any.pm:451 #, fuzzy, c-format msgid "You cannot use a password with %s" msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Šifra (ponovo)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Očisti /tmp prilikom svakog starta" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Init poruka" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Čekanje na Open Firmware" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Vrijeme za boot kernela" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Omogući boot sa CDa?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Omogući boot sa OFa?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Podrazumjevani OS?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Image" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Root" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Append" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Xen append" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Video režim" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Mrežni profil" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Oznaka" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Default" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "NoVideo" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Prazna oznaka nije dozvoljena" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Morate navesti image kernela" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Morate navesti root particiju" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Ova oznaka je već u upotrebi" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Koju vrstu opcije želite dodati?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Ostali OSi (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Ostali OSi (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Ostali OSi (Windows...)" -#: any.pm:656 +#: any.pm:655 #, fuzzy, c-format msgid "Bootloader Configuration" msgstr "Konfiguracija stila boota" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -359,196 +359,196 @@ msgstr "" "Ovo su trenutne opcije u vašem boot meniju.\n" "Možete dodati nove ili promijeniti postojeće." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "pristup X programima" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "pristup rpm alatima" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "dozvoli \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "pristup administrativnim datotekama" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "pristup mrežnim alatima" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "pristup alatima za kompajliranje" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(već dodan %s)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Molim navedite korisničko ime" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " "cased letters, numbers, `-' and `_'" msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Korisničko ime je predugačko" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Ovo korisničko ime je već dodano" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Korisnički ID" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Grupni ID" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "Opcija %s mora biti broj" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s mora biti veće od 500. Svejedno prihvati?" -#: any.pm:900 +#: any.pm:899 #, fuzzy, c-format msgid "User management" msgstr "Korisničko ime" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Podesite administratorsku (root) šifru" -#: any.pm:912 +#: any.pm:911 #, fuzzy, c-format msgid "Enter a user" msgstr "" "Unesite korisnika\n" "%s" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Ikona" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Pravo ime" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Korisničko ime" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Shell" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Molim sačekajte, dodajem medije..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Autologin" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "Mogu podesiti vaš računar da automatski prijavi jednog korisnika." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Koristi ovu mogućnost" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Izaberite default korisnika:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Izaberite window manager koji će se pokretati:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Napomene izdanja" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Zatvori" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Licencni ugovor" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Izlaz" -#: any.pm:1102 +#: any.pm:1101 #, fuzzy, c-format msgid "Do you accept this license ?" msgstr "Imate li neki drugi?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Prihvatam" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Ne prihvatam" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Molim izaberite jezik koji ćete koristiti" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -559,82 +559,82 @@ msgstr "" "želite instalirati. Oni će biti dostupni kada se završi vaša\n" "instalacija i restartujete vaš sistem." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "Višejezična podrška" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Kompatibilnost sa starim (ne-UTF8) kodiranjem" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Svi jezici" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Izbor jezika" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Država / Oblast" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Molim izaberite vašu državu" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Ovdje je puna lista svih dostupnih država" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Ostale države" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Više opcija" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Metod unosa:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Ništa" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Bez dijeljenja" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Dozvoli svim korisnicima" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Vlastito" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -652,7 +652,7 @@ msgstr "" "\"Izaberi korisnike\" vam omogućuje da podesite ovu opciju zasebno za svakog " "korisnika.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -661,7 +661,7 @@ msgstr "" "NFS: tradicionalni Unix sistem za dijeljenje datoteka, koji ima slabiju " "podršku na Macintoshu i Windowsu." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -670,7 +670,7 @@ msgstr "" "SMB: sistem za dijeljenje datoteka koji koristi Windows, Mac OS X i većina " "modernih Linux sistema." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." @@ -678,12 +678,12 @@ msgstr "" "Možete eksportovati koristeći NFS ili Sambu. Molim izaberite sistem koji " "želite koristiti." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Pokreni userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -692,7 +692,7 @@ msgstr "" "Dijeljenje na nivou korisnika koristi grupu \"fileshare\". \n" "Možete dodavati korisnike u ovu grupu pomoću userdrake-a." -#: any.pm:1504 +#: any.pm:1503 #, fuzzy, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -701,49 +701,49 @@ msgstr "" "Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na " "snagu" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" "Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na " "snagu" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Vremenska zona" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Koja je vaša vremenska zona?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Postavke datuma, sata i vremenske zone" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Koje je vrijeme tačnije?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (hardverski sat podešen na UTC)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (hardverski sat podešen na lokalno vrijeme)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP server" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Automatska sinhronizacija vremena (koristeći NTP)" @@ -1076,7 +1076,7 @@ msgid "Domain Admin Password" msgstr "Administratorska šifra domena" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1091,42 +1091,42 @@ msgstr "" "sacekajte da se pokrene podrazumjevani OS.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO sa tekstualnim menijem" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB sa grafičkim menijem" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB sa tekstualnim menijem" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "nema dovoljno prostora u /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Ne možete instalirati bootloader na %s particiju\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1135,7 +1135,7 @@ msgstr "" "Konfiguracija vašeg bootloadera mora biti ažurirana pošto su particije " "renumerisane" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1144,7 +1144,7 @@ msgstr "" "Ne mogu ispravno instalirati bootloader. Morate pokrenuti \"rescue\" sistem " "i izabrati \"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Reinstalacija bootloadera" @@ -1261,7 +1261,7 @@ msgstr "Gotovo" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1285,7 +1285,7 @@ msgstr "URL mora počinjati sa http:// ili https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Upozorenje" @@ -2335,7 +2335,7 @@ msgstr "Traži nove servere" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Ne mogu instalirati paket %s!" @@ -2345,17 +2345,17 @@ msgstr "Ne mogu instalirati paket %s!" msgid "Mandatory package %s is missing" msgstr "Nedostaje obavezan paket %s" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Sljedeći paketi trebaju biti instalirani:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Instaliram pakete..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Uklanjam pakete..." @@ -4802,7 +4802,7 @@ msgstr "Zambija" msgid "Zimbabwe" msgstr "Zimbabve" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Dobro došli u %s" @@ -4828,7 +4828,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "Bootloader ne može rukovati /boot particijom na više fizičkih volumena" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4841,8 +4841,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Budući da prevodilac ovog teksta nije u mogućnosti da osigura pravnu\n" "provjeru prevedenog teksta, tekst licence je ostavljen u originalnom\n" @@ -4859,7 +4858,8 @@ msgstr "" "to the operating \n" "system and the different components of the Mageia distribution." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4901,7 +4901,8 @@ msgstr "" "copies of the \n" "Software Products." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4981,7 +4982,8 @@ msgstr "" "cryptography components \n" "included in the Software Products." - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -5020,7 +5022,8 @@ msgstr "" "documentation for \n" "further details." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -5044,7 +5047,8 @@ msgstr "" "parts, by all means and for all purposes.\n" "\"Mageia\" and associated logos are trademarks of Mageia" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5076,8 +5080,7 @@ msgstr "" "Paris - France.\n" "For any question on this document, please contact Mageia" - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5097,7 +5100,7 @@ msgstr "" "sigurni da li se patent odnosi na vas, provjerite vaše lokalne zakone." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po index 01f34f2ae..67c86515f 100644 --- a/perl-install/share/po/ca.po +++ b/perl-install/share/po/ca.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakx_share\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2012-03-08 23:49+0000\n" "Last-Translator: Paul Charbonneau <paulcharbo@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -15,21 +15,21 @@ msgstr "" "Content-Transfer-Encoding: 8-bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Espereu si us plau" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Instal·lació del carregador de l'arrencada en curs" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -40,14 +40,14 @@ msgid "" "Assign a new Volume ID?" msgstr "" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "" "Ha fallat la instal·lació del carregador de l'arrencada. S'ha produït " "l'error següent:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -66,7 +66,7 @@ msgstr "" "En l'arrencada següent heu de veure l'indicador del carregador de " "l'arrencada." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -81,268 +81,268 @@ msgstr "" "\n" "En quina unitat arrenqueu?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "On voleu instal·lar el carregador de l'arrencada?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Primer sector de la unitat (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Primer sector de la partició de root" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "En el disquet" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Omet" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Configuració del tipus d'arrencada" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Opcions principals del carregador de l'arrencada" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Carregador d'arrencada" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Carregador de l'arrencada a utilitzar" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Dispositiu d'arrencada" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Demora abans d'arrencar la imatge predeterminada" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Habilita l'ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Seguretat" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Contrasenya" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Les contrasenyes no coincideixen" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Si us plau, torneu-ho a intentar" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Contrasenya (un altre cop)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Buida /tmp en cada arrencada" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Missatge d'inicialització" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Demora per al firmware obert" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Temps màxim d'arrencada del nucli" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Voleu habilitar l'arrencada des de CD?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Voleu habilitar l'arrencada des d'OF?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "SO per defecte?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Imatge" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Arrel" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Afegeix" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Mode de vídeo" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Perfil de xarxa" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Etiqueta" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Predeterminat" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "NoVideo" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "No es permet una etiqueta buida" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Heu d'especificar una imatge del nucli" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Heu d'especificar una partició arrel" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Aquesta etiqueta ja està en ús" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Quin tipus d'entrada voleu afegir?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Un altre SO (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Un altre SO (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Un altre SO (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -351,196 +351,196 @@ msgstr "" "Aquestes són les diferents entrades en el menú d'arrencada.\n" "Podeu afegir-ne més o canviar-ne les existents." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "accés a programes X" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "accés a les eines rpm" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "permet \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "accés a fitxers administratius" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "accés a les eines de xarxa" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "accés a les eines de compilació" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(ja s'ha afegit %s)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Si us plau, introduïu un nom d'usuari" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " "cased letters, numbers, `-' and `_'" msgstr "" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "El nom d'usuari és massa llarg" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Aquest nom d'usuari ja s'ha afegit" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "ID d'usuari" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "ID de grup" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "%s ha de ser un número" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s hauria de ser superior a 500. Continuar tot i això?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Estableix la contrasenya de l'administrador (root)" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Icona" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Nom real" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Nom d'accés" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Shell" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Si us plau espereu, s'estan afegint fonts..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Entrada automàtica" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Puc configurar el vostre ordinador de manera que entri automàticament amb un " "nom d'usuari." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Utilitza aquesta característica" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Escolliu l'usuari per defecte:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Escolliu el gestor de finestres per executar:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Tanca" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Acord de llicència" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Surt" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Accepta" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Rebutja" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Si us plau, trieu un idioma per utilitzar" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -548,82 +548,82 @@ msgid "" "when your installation is complete and you restart your system." msgstr "" -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, c-format msgid "Multiple languages" msgstr "diferents llengües" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Tots els idiomes" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Tria d'idioma" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "País / Regió" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Si us plau, seleccioneu el vostre país" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Aquesta és la llista completa de països" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Altres països" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Avançat" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Mètode d'entrada:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Cap" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "No es comparteix" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Permet tots els usuaris" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Personalitzada" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -638,7 +638,7 @@ msgstr "" "\n" "\"Personalitzat\" permet configurar cada usuari per separat.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -647,7 +647,7 @@ msgstr "" "NFS: el sistema de compartició de fitxers tradicional de Unix, amb menys " "suport a Mac i Windows." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -656,18 +656,18 @@ msgstr "" "SMB: un sistema de compartició de fitxers usat per Windows, Mac OS X i " "bastants sistemes Linux moderns." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "Podeu exportar utilitzant NFS o SMB. Seleccioneu quin voleu utilitzar." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Executa userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -676,54 +676,54 @@ msgstr "" "La compartició per usuari utilitza el grup \"fileshare\".\n" "Podeu utilitzar userdrake per a afegir un usuari a aquest grup." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "Heu de sortir i tornar a entrar per tal que els canvis tinguin efecte" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Fus horari" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "En quina zona horària us trobeu?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "Servidor NTP" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Sincronització automàtica de la hora (usant NTP)" @@ -1049,7 +1049,7 @@ msgid "Domain Admin Password" msgstr "Contrasenya de l'administrador del domini" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1064,42 +1064,42 @@ msgstr "" "per arrencar en el sistema operatiu predeterminat.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO amb menú de text" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB amb menú gràfic" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB amb menú de text" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "no hi ha prou espai a /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "No podeu instal·lar el carregador de l'arrencada a una partició %s\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1108,7 +1108,7 @@ msgstr "" "La configuració del vostre carregador d'arrencada s'ha d'actualitzar ja que " "la partició ha estat renumerada" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1117,7 +1117,7 @@ msgstr "" "El carregador d'arrencada no s'ha pogut instal·lar correctament. Heu " "d'arrencar amb l'opció de rescat i escollir \"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Reinstal·la el carregador de l'arrencada" @@ -1235,7 +1235,7 @@ msgstr "Fet" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1259,7 +1259,7 @@ msgstr "L'URL ha de començar per http:// o https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Advertència" @@ -2293,7 +2293,7 @@ msgstr "Cerca nous servidors" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Cal instal·lar el paquet %s. Voleu instal·lar-lo?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "No es pot instal·lar el paquet %s!" @@ -2303,17 +2303,17 @@ msgstr "No es pot instal·lar el paquet %s!" msgid "Mandatory package %s is missing" msgstr "El paquet %s necessari falta" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Cal instal·lar els paquets següents:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "S'estan instal·lant els paquets..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "S'estan eliminant els paquets..." @@ -4741,7 +4741,7 @@ msgstr "Zàmbia" msgid "Zimbabwe" msgstr "Zimbabwe" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Benvingut a %s" @@ -4767,7 +4767,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4780,12 +4780,11 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" - - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4808,7 +4807,8 @@ msgid "" "Software Products." msgstr "" - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4853,7 +4853,8 @@ msgid "" "you." msgstr "" - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4873,7 +4874,8 @@ msgid "" "further details." msgstr "" - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4887,7 +4889,8 @@ msgid "" "\"Mageia\" and associated logos are trademarks of Mageia" msgstr "" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -4905,7 +4908,7 @@ msgid "" "For any question on this document, please contact Mageia." msgstr "" -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -4927,7 +4930,7 @@ msgstr "" "consulteu les lleis locals." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po index 086accb5a..aaf96eea9 100644 --- a/perl-install/share/po/cs.po +++ b/perl-install/share/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakx_share\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2012-03-10 14:30+0000\n" "Last-Translator: Oliver Burger <oliver.bgr@googlemail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -15,21 +15,21 @@ msgstr "" "Content-Transfer-Encoding: 8-bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Prosím počkejte" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Probíhá instalace zaváděcího programu" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -47,12 +47,12 @@ msgstr "" "\n" "Přiřadit nové ID svazku?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Instalace zaváděcího programu selhala. Stala se tato chyba:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -69,7 +69,7 @@ msgstr "" " Potom zadejte: shut-down\n" "Při dalším spuštění už uvidíte prompt." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -84,268 +84,268 @@ msgstr "" "\n" "Z jakého disku startujete systém?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Instalace zaváděcího programu" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Kam chcete nainstalovat zaváděcí program?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "První sektor (MBR) disku %s" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "První sektor disku (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "První sektor kořenového oddílu" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Na disketu" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Přeskočit" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Nastavení stylu zavádění" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Základní nastavení zaváděcího programu" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Zaváděcí program" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Zaváděcí program" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Startovací zařízení" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Hlavní volby" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Prodleva před zavedením výchozího obrazu" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Povolit ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Povolit SMP" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Povolit APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Povolit lokální APIC" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Bezpečnost" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Heslo" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Hesla nejsou shodná" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Zkuste to znovu, prosím" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Nemůžete použít heslo s %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Heslo (podruhé)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Vyčistit adresář /tmp při každém startu" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Úvodní zpráva" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Prodleva pro firmware" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Prodleva při spuštění" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Povolit spuštění z CD?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Povolit zavaděč OF?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Výchozí OS?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Obraz(image)" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Kořenový(root)" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Připojit" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Připojit Xen" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "Vyžaduje pro zavedení heslo" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Video režim" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Síťový profil" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Značka" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Výchozí" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "Bez Videa" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Prázdná značka není povolena" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Musíte zadat soubor s jádrem" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Musíte zadat kořenový oddíl" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Tato značka se již používá" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Jaký typ záznamu chcete přidat?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Jiný systém (SunOs...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Jiný systém (MacOs...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Jiný systém (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Nastavení zaváděcího programu" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -354,47 +354,47 @@ msgstr "" "Zde jsou záznamy z vašeho zaváděcího menu.\n" "Můžete přidat další nebo změnit stávající." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "přístup k programům v X prostředí" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "přístup k rpm nástrojům" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "povolit \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "přístup k administrativním souborům" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "přístup k síťovým nástrojům" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "přístup k nástrojům pro kompilaci" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(už byl přidán %s)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Prosím zadejte uživatelské jméno" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -403,148 +403,148 @@ msgstr "" "Uživatelské jméno musí začínat malým písmenem a pokračovat pouze malými " "písmeny, číslicemi nebo znaky „-” a „_”" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Toto uživatelské jméno je příliš dlouhé" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Toto uživatelské jméno už bylo přidáno" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "ID uživatele" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "ID skupiny" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "%s musí být číslo" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s by mělo být vyšší než 500. Přesto použít?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Správa uživatelů" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "Povolit účet hosta" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Heslo správce (uživatele root)" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Zadejte uživatele" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Ikona" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Skutečné jméno" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Přihlašovací jméno" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Shell" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Prosím počkejte, přidávám zdroje..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Automatické přihlášení" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Můžu nastavit váš počítač tak, aby automaticky přihlásil vybraného uživatele." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Použít tuto vlastnost" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Zvolte standardního uživatele:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Vyberte si, který správce oken má být spouštěn:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Poznámky k vydání" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Zavřít" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Souhlas s licencí" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Konec" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "Přijímáte tuto licenci?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Přijmout" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Odmítnout" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Prosím zvolte si jazyk, který chcete používat" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -555,82 +555,82 @@ msgstr "" "chcete nainstalovat podporu. Tyto budou dostupné po dokončení\n" "instalace a restartu systému." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "Mageia" -#: any.pm:1160 +#: any.pm:1159 #, c-format msgid "Multiple languages" msgstr "Více jazyků" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Stará (ne UTF-8) kódování pro kompatibilitu" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Všechny jazyky" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Výběr jazyka" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Země" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Vyberte si prosím svoji zem" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Zde je kompletní seznam dostupných zemí" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Jiné země" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Rozšíření" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Vstupní metoda:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Žádné" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Nesdílet" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Povolit všem uživatelům" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Vlastní" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -646,7 +646,7 @@ msgstr "" "\n" "Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -655,7 +655,7 @@ msgstr "" "NFS: tradiční systém pro sdílení souborů v prostředí Unix, s menší podporou " "operačních systémů Mac a Windows." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -664,7 +664,7 @@ msgstr "" "SMB: systém pro sdílení souborů používaný ve Windows, MacOS X a mnohými " "moderními Linuxovými systémy." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." @@ -672,12 +672,12 @@ msgstr "" "Nyní lze provést export přes protokol NFS nebo SMB. Vyberte prosím, který " "chcete použít." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Spustit UserDrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -686,7 +686,7 @@ msgstr "" "Sdílení mezi uživateli používá skupinu \"fileshare\". \n" "Uživatele lze do této skupiny přidat pomocí nástroje UserDrake." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -695,47 +695,47 @@ msgstr "" "Aby se změny projevily, je nutné se odhlásit a opět přihlásit. Stisknutím OK " "se ihned odhlásíte." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "Aby se změna projevila, je nutné se odhlásit a opět přihlásit" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Časová zóna" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Jaké je vaše časové pásmo?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Nastavení data, hodin a časové zóny" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Jaké vedení času je nejvhodnější?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (hardwarové hodiny nastaveny na UTC)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (hardwarové hodiny nastaveny na místní čas)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP Server" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Automatická synchronizace času (pomocí NTP)" @@ -1074,7 +1074,7 @@ msgid "Domain Admin Password" msgstr "Heslo Správce domény" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1089,42 +1089,42 @@ msgstr "" "vyckejte na automaticke zavedeni.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO s textovým menu" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB s grafickým menu" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB s textovým menu" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "není dost místa v adresáři /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Na oddíl %s nelze instalovat zavaděč\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1133,7 +1133,7 @@ msgstr "" "Nastavení vašeho zavaděče musí být aktualizováno, protože se změnilo pořadí " "oddílů na disku" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1142,7 +1142,7 @@ msgstr "" "Zavaděč se nepodařilo řádně nainstalovat. Spusťte systém v záchranném režimu " "a zvolte \"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Znovu instalovat zaváděcí program" @@ -1261,7 +1261,7 @@ msgstr "Hotovo" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1285,7 +1285,7 @@ msgstr "URL musí začínat znaky http:// nebo https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Varování" @@ -2326,7 +2326,7 @@ msgstr "Hledat nové servery" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Balíček %s musí být nainstalován. Chcete ho nainstalovat?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Nelze nainstalovat balíček %s!" @@ -2336,17 +2336,17 @@ msgstr "Nelze nainstalovat balíček %s!" msgid "Mandatory package %s is missing" msgstr "Chybí potřebný balíček %s" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Je potřeba nainstalovat tyto balíčky:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Instaluji balíčky..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Odstraňuji balíčky..." @@ -4781,7 +4781,7 @@ msgstr "Zambie" msgid "Zimbabwe" msgstr "Zimbabwe" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Vítá vás %s" @@ -4807,7 +4807,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "Zavaděč neumí pracovat s adresářem /boot na více fyzických svazcích" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4820,8 +4820,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Úvodem\n" "\n" @@ -4832,7 +4831,8 @@ msgstr "" "veškeré aplikace šířené spolu s touto distribucí poskytnuté třetími subjekty " "a držiteli autorských práv." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4869,7 +4869,8 @@ msgstr "" "ze strany sdružení Mageia. V případě, že dojde k odstoupení od smlouvy, " "musíte okamžitě přestat užívat Software a zničit všechny jeho kopie." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4924,7 +4925,8 @@ msgstr "" "je 1,-- Kč. Toto omezení se vztahuje též na kryptografické knihovny obsažené " "v Software." - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4957,7 +4959,8 @@ msgstr "" "GPL. Dokumentace sepsaná sdružením Mageia je vydávána pod specifickou " "licencí. Prosím nahlédněte do dokumentace pro další detaily." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4978,7 +4981,8 @@ msgstr "" "kdykoliv pozměnit či upravit Software či jeho součásti bez omezení. \n" "\"Mageia\" a její loga jsou ochrannými známkami sdružení Mageia." - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5007,7 +5011,7 @@ msgstr "" "\n" "Máte-li k tomuto dokumentu jakékoliv dotazy, kontaktujte sdružení Mageia." -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5026,7 +5030,7 @@ msgstr "" "vaše místně příslušné právní normy." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po index 789a18b7d..47b4ef7c5 100644 --- a/perl-install/share/po/cy.po +++ b/perl-install/share/po/cy.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia DrakX.cy\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2009-10-01 20:12-0000\n" "Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n" "Language-Team: Cymraeg <post@meddal.com>\n" @@ -17,21 +17,21 @@ msgstr "" "X-Poedit-Country: UNITED KINGDOM\n" "X-Poedit-SourceCharset: utf-8\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Aros..." -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Wrthi'n gosod cychwynnwr" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -47,12 +47,12 @@ msgstr "" "\n" "Neilltuo enw Cyfrol newydd?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Methodd gosod cychwynnwr. Digwyddodd y gwall canlynol:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -69,7 +69,7 @@ msgstr "" " Yna teipiwch: shut-down\n" "Wrth gychwyn eto dylech weld anogwr y cychwynnwr." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -84,268 +84,268 @@ msgstr "" "\n" "Gyda pha ddisg ydych chi'n cychwyn?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Gosod Cychwynnwr" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Lle rydych chi eisiau gosod y cychwynnwr?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Adran gyntaf (MBR) o ddisg %s" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Adran gyntaf o'r disg (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Adran gyntaf o'r rhaniad gwraidd" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Ar Ddisg Meddal" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Hepgor" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Ffurfweddu'r Math o Gychwyn" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Prif ddewisiadau'r cychwynnwr" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Cychwynnwr" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Dewis cychwynnwr" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Dyfais cychwyn" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Prif ddewisiadau" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Galluogi ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Galluogi SMP" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Galluogi APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Galluogi APIC Lleol" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Diogelwch" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Cyfrinair" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Nid yw'r cyfrineiriau'n cyd-fynd" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Ceisiwch eto" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Nid oes modd defnyddio cyfrinair gyda %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Cyfrinair (eto)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Neges Init" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Agor Oedi Cadarnwedd" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Goramser Cychwyn y Cnewyllyn" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Galluogi Cychwyn o CD?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Galluogi Cychwyn OF?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "System Weithredu Rhagosodedig?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Delwedd" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Gwraidd" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Atodi" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Atodiad Xen" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Modd fideo" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Proffil rhwydwaith" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Label" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Rhagosodedig" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "NoVideo" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Nid yw label wag yn cael ei chaniatáu" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Rhaid enwi delwedd cnewyllyn" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Rhaid pennu rhaniad gwraidd" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Systemau Gweithredu eraill (SunOS..)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Systemau Gweithredu Eraill (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Systemau Gweithredu Eraill (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Ffurfweddu'r Cychwynnwr" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -354,47 +354,47 @@ msgstr "" "Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n" "Mae modd i chi ychwanegu rhagor neu newid y rhai presennol." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "mynediad i raglenni X" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "mynediad i offer rpm" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "caniatáu \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "mynediad i ffeiliau gweinyddol" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "mynediad i offer rhwydwaith" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "mynediad i offer crynhoad" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(wedi ychwanegu %s yn barod)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Rhowch enw defnyddiwr" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -402,147 +402,147 @@ msgid "" msgstr "" "Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Mae'r enw defnyddiwr yn rhy hir" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Enw Defnyddiwr" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Enw Grŵp" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "Rhaid i %s fod yn rhif!" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "Dylai %s fod dros 500. Parhau beth bynnag?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Rheoli defnyddiwr" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Gosod cyfrinair gweinyddwr (root)" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Rhowch enw defnyddiwr" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Eicon" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Enw cywir" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Enw mewngofnodi" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Cragen" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Arhoswch, ychwanegu cyfrwng..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Awto mewngofnodi" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "Mewngofnodi'n awtomatig ar gyfer un defnyddiwr." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Defnyddiwch y nodwedd" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Dewis y defnyddiwr rhagosodedig:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Dewiswch y rheolwr ffenestr i redeg:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Nodiadau Ryddhau" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Cau" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Cytundeb trwyddedu" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Gadael" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "A ydych chi'n derbyn y drwydded hon?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Derbyn" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Gwrthod" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Dewiswch iaith i'w defnyddio" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -553,82 +553,82 @@ msgstr "" "pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n" "wedi ei gwblhau a phan fyddwch yn ail gychwyn eich system." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "Amlieithog" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Hen Amgodiad (nid utf-8)" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Pob iaith" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Dewis iaith" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Gwlad / Ardal" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Dewiswch eich gwlad" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Dyma restr lawn o'r gwledydd sydd ar gael" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Gwledydd eraill" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Uwch" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Dull mewnbwn:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Dim" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Peidio rhannu" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Caniatáu pob defnyddiwr" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Arddull" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -643,7 +643,7 @@ msgstr "" "\n" "\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -652,7 +652,7 @@ msgstr "" "NFS: system rhannu ffeiliau traddodiadol Unix, sydd â llai o gefnogaeth ar " "Mac a Windows." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -661,19 +661,19 @@ msgstr "" "SMB: system rhannu ffeiliau sy'n cael ei ddefnyddio yn Windows, Mac OSX a " "nifer o systemau Linux diweddar." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "" "Gallwch allforio gan ddefnyddio NFS neu SMB. Pa un hoffech chi ei ddefnyddio?" -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Cychwyn userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -682,7 +682,7 @@ msgstr "" "Mae'r rhannu yn ôl defnyddiwr yn defnyddio grŵp \"rhannu ffeiliau\" .\n" "Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grŵp. " -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -691,47 +691,47 @@ msgstr "" "Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd. Cliciwch Iawn i " "allgofnodi nawr." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd." -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Cylchfa amser" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Pa un yw eich parth amser?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Gosodiadau Dyddiad Cloc a Chylchedd Amser" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Beth yw'r amser gorau?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (cloc caledwedd wedi ei osod i UTC)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (cloc caledwedd wedi ei osod i'r amser lleol)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "Gweinydd NTP" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Cydweddi amser awtomatig (defnyddio NTP)" @@ -1066,7 +1066,7 @@ msgid "Domain Admin Password" msgstr "Cyfrinair Gweinyddol y Parth" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1081,42 +1081,42 @@ msgstr "" "aros am y cychwyn rhagosodedig\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO gyda dewislen testun" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB gyda dewislen raffigol" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB gyda dewislen testun" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "dim digon o le yn /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Nid oes modd gosod y cychwynnwr ar raniad %s\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1125,7 +1125,7 @@ msgstr "" "Rhaid i ffurfweddiad eich cychwynnwr gael ei ddiweddaru am i'r rhaniadau " "gael eu hail rifo." -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1134,7 +1134,7 @@ msgstr "" "Methu gosod eich cychwynnwr yn iawn, Rhaid defnyddio achub cychwyn a dewis " "\"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Ail osod Cychwynnwr" @@ -1251,7 +1251,7 @@ msgstr "Gorffen" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1275,7 +1275,7 @@ msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Rhybudd" @@ -2326,7 +2326,7 @@ msgstr "Chwiliwch weinyddion newydd" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Methu gosod pecyn %s!" @@ -2336,17 +2336,17 @@ msgstr "Methu gosod pecyn %s!" msgid "Mandatory package %s is missing" msgstr "Mae pecyn gorfodol %s ar goll" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Mae'r pecynnau canlynol angen eu gosod:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Gosod pecynnau..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Tynnu pecyn..." @@ -4788,7 +4788,7 @@ msgstr "Zambia" msgid "Zimbabwe" msgstr "Zimbabwe" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Croeso i %s" @@ -4814,7 +4814,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "Nid yw'r cychwynnydd yn gallu trin /boot ar gyfrolau ffisegol niferus" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4827,8 +4827,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Cyflwyniad\n" "\n" @@ -4843,7 +4842,8 @@ msgstr "" "ac unrhyw rhaglenni wedi eu dosbarthu gyda'r cynnyrch hwn darperir gan " "drwyddedwyr Mageia ." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4885,7 +4885,8 @@ msgstr "" "ddinistrio'n syth pob\n" "copi o'r Cynnyrch Meddalwedd." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4968,7 +4969,8 @@ msgstr "" "ddifrod o ganlyniad neu yn ei sgil, nid yw'r cyfyngiadau uchod yn berthnasol " "i chi. " - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -5004,7 +5006,8 @@ msgstr "" "Darllenwch y dogfennau\n" "am fwy o fanylion." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -5026,10 +5029,11 @@ msgstr "" "Mae Mageia, ei gyflenwyr a'i drwyddedwyr yn cadw eu hawl i newid neu " "addasu'r Cynnyrch Meddalwedd,\n" "yn rhannol neu yn gyfan, drwy unrhyw ddull ac ar gyfer unrhyw bwrpas.\n" -"Mae \"Mageia\" a'r logos cysylltiedig yn nodau masnachol sy'n " -"perthyn i Mageia" - +"Mae \"Mageia\" a'r logos cysylltiedig yn nodau masnachol sy'n perthyn i " +"Mageia" +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5061,8 +5065,7 @@ msgstr "" "perthnasol, - Ffrainc. \n" "Am unrhyw gwestiwn ynghylch y ddogfen hon cysylltwch â Mageia" - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5080,7 +5083,7 @@ msgstr "" "siŵr os yw'r patent yn berthnasol i chi, gwiriwch eich cyfreithiau lleol." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po index 814efc6a6..eee8cf298 100644 --- a/perl-install/share/po/da.po +++ b/perl-install/share/po/da.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: da\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2010-06-06 12:39+0200\n" "Last-Translator: Keld Simonsen <keld@keldix.com>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n" @@ -21,21 +21,21 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Vent venligst" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Installation af systemopstarteren er i gang" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -52,12 +52,12 @@ msgstr "" "\n" "Tildel en ny Volumen-ID?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Installation af opstarter mislykkedes. Den følgende fejl opstod:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -74,7 +74,7 @@ msgstr "" " Skriv så: shut-down\n" "Ved næste opstart burde du se systemstarteren." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -89,268 +89,268 @@ msgstr "" "\n" "Hvilket drev starter du op fra?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Installation af systemopstarter" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Hvor vil du placere opstartsprogrammet?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Første sektor (MBR) på drev %s" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Første sektor på disken (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Første sektor af rodpartitionen" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "På diskette" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Spring over" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Konfiguration af opstartsudseende" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Systemopstarterens hovedindstillinger" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Systemopstarter" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Systemopstarter der skal bruges" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Opstartsenhed" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Hovedvalg" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Ventetid før opstart af forvalgt styresystem" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Aktivér ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Aktivér SMP" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Aktivér APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Aktivér lokal APIC" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Sikkerhed" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Adgangskode" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Adgangskoderne stemmer ikke overens" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Prøv igen" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Du kan ikke bruge en adgangskode med %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Adgangskode (igen)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Rens /tmp ved hver systemopstart" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Init-besked" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Åben firmwareforsinkelse" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Ventetid før kerneopstart" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Skal det være muligt at starte fra CD?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Skal det være muligt at starte fra OF?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Forvalgt styresystem?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Billede" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Rod" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Vedhæft" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Xen-tilføjning" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "Kræver adgangskode for at starte op" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Videoindstilling" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Netværksprofil" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Mærkat" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Standard" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "Ingen video" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Tom mærkat er ikke tilladt" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Du skal angive en kerne-fil" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Du skal angive en root-partition" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Denne mærkat er allerede brugt" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Hvilken type ønsker du at tilføje" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Andet styresystem (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Andet styresystem (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Andet styresystem (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Konfiguration af opstarter" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -359,47 +359,47 @@ msgstr "" "Her er følgende typer indgange.\n" "Du kan tilføje flere eller ændre de eksisterende." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "adgang til X-programmer" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "adgang til rpm-værktøjer" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "tillad \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "adgang til administrative filer" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "adgang til netværksværktøjer" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "adgang til oversættelsesværktøjer" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(har allerede tilføjet %s)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Indtast et brugernavn" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -408,148 +408,148 @@ msgstr "" "Brugernavnet skal starte et lille bogstav, efterfulgt kun af små bogstaver, " "tal, `-' og `_'" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Dette brugernavn er for langt" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Dette brugernavn eksisterer allerede" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Bruger-id" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Gruppe-id" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "%s skal være et tal" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s burde være over 500. Acceptér alligevel?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Administration af brugere" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "Aktivér kontoen guest" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Sæt administrator (root) adgangskode" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Indtast en bruger" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Ikon" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Rigtige navn" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Logindnavn" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Skal" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Vent venligst, tilføjer medie..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Autologin" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Brug denne facilitet" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Vælg den forvalgte bruger:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Vælg den vindueshåndtering du ønsker at benytte:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Udgivelsesnoter" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Luk" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Licensaftale" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Afslut" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "Accepterer du denne licens?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Acceptér" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Nægt" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Vælg det sprog, der skal bruges" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -558,82 +558,82 @@ msgid "" msgstr "" "Du kan vælge andre sprog der vil være tilgængelige efter installationen" -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "Flere sprog" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Gammel kompatibilitetskoding (ikke UTF-8)" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Alle sprog" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Sprogvalg" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Land / Region" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Vælg dit land" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Her er den komplette liste over tilgængelige lande" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Andre lande" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Avanceret" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Indtastningsmetode:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Ingen" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Ingen fildeling" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Tillad alle brugere" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Tilpasset" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -647,7 +647,7 @@ msgstr "" "Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på " "'Fildeling' i konqueror og nautilus.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -656,7 +656,7 @@ msgstr "" "NFS: det traditionlle Unix fildelingssystem, med mindre funktionalitet på " "Mac og Windows." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -665,18 +665,18 @@ msgstr "" "SMB: et fildelingssystem brugt på Windows, Mac OS X og mange moderne Linux-" "systemer." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "Du kan eksportere med NFS eller SMB. Hvilken vil du bruge" -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Start userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -685,7 +685,7 @@ msgstr "" "Deling per bruger bruger gruppen 'fileshare'. \n" "Du kan bruge userdrake til at tilføje en bruger til denne gruppe." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -694,47 +694,47 @@ msgstr "" "Du skal logge ud og ind igen for at ændringerne skal gælde. Tryk O.k. for at " "logge ud nu." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "Du skal logge ud og ind igen for at ændringerne skal gælde" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Tidszone" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Hvad er din tidszone?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Dato-, klokke- og tidszoneopsætning" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Hvad er den bedste tid?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (Maskin-ur sat til UTC)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (Maskin-ur sat til lokal tid)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP-server" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)" @@ -1079,7 +1079,7 @@ msgstr "Adgangskode for domæneadministrator" # so use only 7bit for this message (and do transliteration or # leave it in English, as it is the best for your language) #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1094,42 +1094,42 @@ msgstr "" "vent paa at starte standard-systemet.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO med tekstmenu" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB med grafisk menu" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB med tekstmenu" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "Ikke nok plads i /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1138,7 +1138,7 @@ msgstr "" "Din opstartsindlæserkonfiguration behøver at opdateres da rækkefølgen på " "dine partitioner er blevet ændret" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1147,7 +1147,7 @@ msgstr "" "Opstartsindlæseren kan ikke blive installeret korrekt. Du skal lave " "nødopstart og vælge \"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Geninstallér systemopstarter" @@ -1265,7 +1265,7 @@ msgstr "Færdig" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1289,7 +1289,7 @@ msgstr "URL'en skal begynde med http:// eller https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Advarsel" @@ -2335,7 +2335,7 @@ msgstr "Søg efter nye servere" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Pakken %s skal være installeret. Ønsker du at installere den?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Kunne ikke installerer pakken %s!" @@ -2345,17 +2345,17 @@ msgstr "Kunne ikke installerer pakken %s!" msgid "Mandatory package %s is missing" msgstr "Krævet pakke %s mangler" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "De følgende pakker behøver at blive installeret\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Installerer pakker..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Fjerner pakker..." @@ -4790,7 +4790,7 @@ msgstr "Zambia" msgid "Zimbabwe" msgstr "Zimbabwe" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Velkommen til %s" @@ -4817,7 +4817,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "Opstartsindlæseren kan ikke håndtere /boot på flere fysiske volumer" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4830,8 +4830,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Introduktion\n" "\n" @@ -4843,7 +4842,8 @@ msgstr "" "distribueret med disse produkter leveret af mandrivas licenstagere eller " "leverandører." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4877,10 +4877,10 @@ msgstr "" "at installere, kopiere eller bruge disse programmelprodukter på en måde som " "ikke er i overensstemmelse med betingelserne og reglerne i denne licens er " "ugyldig og vil ophæve dine rettighedder under denne licens. Ved ophævelse af " -"licensen skal du med det samme ødelægge alle kopier af " -"programmelprodukterne." - +"licensen skal du med det samme ødelægge alle kopier af programmelprodukterne." +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4954,7 +4954,8 @@ msgstr "" "jurisdiktioner ikke tillader udelukkelse eller begrænsning af ansvar for " "følge- eller ulykkes-skader. " - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4988,7 +4989,8 @@ msgstr "" "bliver reguleret efter en specifik licens. Referér venligst til " "dokumentationen for yderligere detaljer." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -5007,10 +5009,11 @@ msgstr "" "respektive forfattere, og er beskyttet af intellektuelle rettigheds- og " "ophavsretslove, gældende for programmel. Mageia forbeholder sine rettigheder " "til at ændre eller tilpasse programmelprodukterne, helt eller delvist, med " -"alle midler og til alle formål. \"Mageia\" samt de tilhørende " -"logoer er varemærker for Mageia " - +"alle midler og til alle formål. \"Mageia\" samt de tilhørende logoer er " +"varemærker for Mageia " +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5038,9 +5041,8 @@ msgstr "" "rette domstol i Paris, Frankrig. Ved spørgsmål omkring dette dokument, " "kontakt venligst Mageia" - # Mangler -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5058,7 +5060,7 @@ msgstr "" "om et patent kan vedrøre dig, så tjek din lokale lovgivning." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po index bf1d9b677..da7ebe0b6 100644 --- a/perl-install/share/po/de.po +++ b/perl-install/share/po/de.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakx_share\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2012-03-09 08:41+0000\n" "Last-Translator: Peter Grun <p.grun@bluewin.ch>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -15,21 +15,21 @@ msgstr "" "Content-Transfer-Encoding: 8-bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Bitte warten" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Installation des Bootloaders ..." -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -46,14 +46,14 @@ msgstr "" "\n" "Neue Datenträger-ID zuweisen?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "" "Die Installation des Betriebssytemstarters schlug fehl. Folgender Fehler " "trat auf:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -71,7 +71,7 @@ msgstr "" "Tippen Sie dann: shut-down\n" "Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -87,268 +87,268 @@ msgstr "" "\n" "Von welchem Laufwerk booten Sie?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Installation des Bootloaders" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Wo soll der Bootloader installiert werden?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Erster Sektor der %s Platte (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Erster Sektor der Platte (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Erster Sektor der Root-Partition" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Auf Diskette" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Überspringen" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Konfiguration der Boot-Einstellungen" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Haupt-Optionen des Bootloaders" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Bootloader" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Zu verwendender Bootloader" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Boot-Gerät" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Haupt-Optionen" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Wartezeit vor dem Starten des Standard-Betriebssystems" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "ACPI aktivieren" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "SMP aktivieren" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "APIC aktivieren" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Lokales APIC aktivieren" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Sicherheit" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Passwort" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Die Passwörter stimmen nicht überein" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Bitte versuchen Sie es erneut" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Sie können kein Passwort mit %s benutzen" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Passwort (erneut)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr " „/tmp“ bei jedem Systemstart säubern" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Init-Nachricht" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Open-Firmware-Verzögerung" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Kernel-Start-Wartezeit" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Booten von CD erlauben?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Open-Firmware-Start erlauben?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Standard-Betriebssystem?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Abbild" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Root" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Hinzufügen / Erweitern" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Xen hinzufügen" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "Benötigt Passwort zum Booten" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Video-Modus" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Init-RamDisk" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Netzwerk Profil" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Bezeichnung" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Standard" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "NoVideo" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Leere Einträge sind nicht erlaubt" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Sie müssen ein Kernel-Image angeben" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Sie müssen die Root-Partition festlegen" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Dieser Eintrag existiert bereits" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Welche Art Eintrag wollen Sie hinzufügen?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Anderes OS (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Anderes OS (MacOS ...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Anderes OS (Windows ...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Konfiguration des Bootloaders" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -357,47 +357,47 @@ msgstr "" "Hier sind die verschiedenen Einträge.\n" "Sie können weitere hinzufügen oder existierende ändern." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "Zugriff auf X-Programme" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "Zugriff auf RPM-Werkzeuge" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "„su“ erlauben" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "Zugriff auf Verwaltungsdateien" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "Zugriff auf Netzwerk-Werkzeuge" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "Zugriff auf Kompilier-Werkzeuge" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(%s wurde bereits hinzugefügt)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Bitte geben Sie einen Benutzernamen an" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -406,149 +406,149 @@ msgstr "" "Der Benutzername muss mit einem Kleinbuchstaben beginnen und sollte nur aus " "Kleinbuchstaben, Ziffern, „-“ und „_“ bestehen." -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Dieser Benutzername ist zu lang" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Dieser Benutzername existiert bereits" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Benutzer-ID" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Gruppen-ID" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "%s muss eine Zahl sein" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s sollte größer als 500 sein. Trotzdem akzeptieren?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Benutzerverwaltung" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "Den Gastzugang aktivieren" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Administratorpasswort setzen" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Benutzer einrichten" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Symbol" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Vollständiger Name" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Benutzername" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Shell" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Bitte warten, füge Medien hinzu ..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Automatisch anmelden" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Ich kann Ihren Computer so einrichten, dass ein Benutzer automatisch " "angemeldet wird." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Diese Möglichkeit nutzen" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Wählen Sie den Standard-Nutzer:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Versionshinweise" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Schließen" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Lizenzvereinbarung" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Verlassen" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "Akzeptieren Sie diese Lizenz?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Akzeptieren" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Ablehnen" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Bitte wählen Sie die zu verwendende Sprache" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -560,82 +560,82 @@ msgstr "" "sein,\n" "wenn Ihre Installation beendet ist und Sie das System neu starten." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "Mageia" -#: any.pm:1160 +#: any.pm:1159 #, c-format msgid "Multiple languages" msgstr "Mehrere Sprachen" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Alte (nicht UTF-8) Kodierung" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Alle Sprachen" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Sprachauswahl" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Staat / Region" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Bitte wählen Sie Ihr Land" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Hier ist die komplette Liste aller Länder" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Andere Länder" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Fortgeschritten" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Eingabe-Methode:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Keine" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Keine Freigaben" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Allen Benutzern erlauben" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Benutzerdefiniert" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -650,7 +650,7 @@ msgstr "" "\n" "Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Benutzer vornehmen.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -659,7 +659,7 @@ msgstr "" "NFS: das traditionelle Unix-Dateisystem für Freigaben im Netz, mit weniger " "Unterstützung für Mac und Windows." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -668,7 +668,7 @@ msgstr "" "SMB: ein Dateisystem für Freigaben im Netz von Windows, Mac OS X und vielen " "modernen Linux-Systemen verwendet" -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." @@ -676,12 +676,12 @@ msgstr "" "Sie können die Dateien mittels SMB oder NFS anbieten. Welche Variante wollen " "Sie verwenden?" -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "UserDrake starten" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -690,7 +690,7 @@ msgstr "" "Die Freigaben zwischen Benutzern regelt die Gruppe „fileshare“. \n" "Sie können UserDrake verwenden, um Benutzer in diese Gruppe aufzunehmen." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -699,49 +699,49 @@ msgstr "" "Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam " "werden. Klicken Sie auf OK, um sich nun abzumelden." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" "Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam " "werden" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Zeitzone" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Wählen Sie Ihre Zeitzone" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Datum, Zeit und Zeitzonen Einstellungen" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Welches ist die beste Zeit?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (Hardware Uhr gestellt auf GMT)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (Hardware Uhr gestellt auf Ortszeit)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP-Server" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Automatische Zeit-Synchronisation (durch NTP)" @@ -1084,7 +1084,7 @@ msgid "Domain Admin Password" msgstr "Passwort des Domänen-Administrators" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1099,42 +1099,42 @@ msgstr "" "oder warten Sie auf das Starten des Standard-Betriebssystems.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO mit Textmenü" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB mit grafischem Menü" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB mit Textmenü" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "Sie haben nicht genug Platz in /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Sie können den Bootloader nicht auf einer %s-Partition installieren.\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1143,7 +1143,7 @@ msgstr "" "Ihre Bootloaderkonfiguration muss geändert werden, da sich Ihre " "Partitionsnummerierung geändert hat" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1152,7 +1152,7 @@ msgstr "" "Der Bootloader kann nicht richtig installiert werden. Sie müssen ins " "Rettungssystem booten und „%s“ wählen" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Bootloader neu installieren" @@ -1270,7 +1270,7 @@ msgstr "Fertig" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1294,7 +1294,7 @@ msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Warnung" @@ -2355,7 +2355,7 @@ msgstr "Suche nach neuen Servern" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Das Paket %s muss installiert sein. Soll es installiert werden?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Das Paket konnte %s nicht installiert werden!" @@ -2365,17 +2365,17 @@ msgstr "Das Paket konnte %s nicht installiert werden!" msgid "Mandatory package %s is missing" msgstr "Das zwingend benötigte Paket „%s“ fehlt." -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Die folgenden Pakete müssen installiert werden:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Pakete werden installiert..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Pakete werden entfernt..." @@ -4849,7 +4849,7 @@ msgstr "Sambia" msgid "Zimbabwe" msgstr "Simbabwe" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Willkommen zu %s" @@ -4879,7 +4879,7 @@ msgstr "" "Datenträgern umgehen" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4892,8 +4892,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Bei dieser Übersetzung handelt es sich um eine inoffizielle Übersetzung\n" "der Mageia-Lizenz in die deutsche Sprache. Sie ist keine\n" @@ -4915,7 +4914,8 @@ msgstr "" "Anwendungen\n" "von Mageia-Lizenznehmern und Zulieferern." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4953,7 +4953,8 @@ msgstr "" "Sie die Ihnen mit dieser Lizenz eingeräumten Rechte. In diesem Fall\n" "haben Sie unverzüglich alle Kopien der Software-Produkte zu vernichten." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -5030,7 +5031,8 @@ msgstr "" "nur, auf die in den Software-Produkten enthaltenen Komponenten für\n" "starke Kryptographie." - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -5063,7 +5065,8 @@ msgstr "" "spezifischen Lizenz. Bitte lesen Sie die Dokumentation für weitere\n" "Details." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -5087,7 +5090,8 @@ msgstr "" "„Mageia“ und entsprechende Logos sind eingetragene\n" "Warenzeichen der Mageia." - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5117,8 +5121,7 @@ msgstr "" "Zu jeglicher Frage zu diesem Dokument kontaktieren Sie bitte\n" "Mageia" - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5138,7 +5141,7 @@ msgstr "" "sind ob ein Patent sie betrifft prüfen Sie die Gesetze Ihres Landes." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po index b24cb3709..d149c9717 100644 --- a/perl-install/share/po/el.po +++ b/perl-install/share/po/el.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: drakx_share\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2012-08-11 12:39+0200\n" "Last-Translator: Dimitrios Glentadakis <dglent@gmail.com>\n" "Language-Team: Greek <i18n-el@ml.mageia.org>\n" @@ -22,21 +22,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Lokalize 1.4\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Παρακαλώ περιμένετε" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Γίνεται εγκατάσταση του προγράμματος εκκίνησης του υπολογιστή" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -55,14 +55,14 @@ msgstr "" "\n" "Να γίνει ανάθεση μιας νέα Ταυτότητας Τόμου;" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "" "Η εγκατάσταση του προγράμματος εκκίνησης απέτυχε. Παρουσιάστηκε το ακόλουθο " "σφάλμα:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -81,7 +81,7 @@ msgstr "" "Στην επόμενη εκκίνηση θα πρέπει να δείτε την προτροπή του προγράμματος " "εκκίνησης ." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -96,270 +96,270 @@ msgstr "" "\n" "Ποιος είναι ο δίσκος εκκίνησης;" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Εγκατάσταση του προγράμματος εκκίνησης" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Πού θέλετε να εγκαταστήσετε το πρόγραμμα εκκίνησης;" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Πρώτος τομέας (MBR) του δίσκου %s" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Πρώτος τομέας του δίσκου (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Πρώτος τομέας της κατάτμησης root" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Στη δισκέτα" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Παράλειψη" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Ρύθμιση του στυλ εκκίνησης" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Κύριες επιλογές του προγράμματος εκκίνησης" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Πρόγραμμα εκκίνησης" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Χρήση του προγράμματος εκκίνησης" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Συσκευή εκκίνησης" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Κύριες επιλογές" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "" "Καθυστέρηση πριν την εκκίνηση\n" "της προεπιλεγμένης εικόνας" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Ενεργοποίηση του ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Ενεργοποίηση του SMP" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Ενεργοποίηση του APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Ενεργοποίηση του τοπικού APIC" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Ασφάλεια" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Κωδικός πρόσβασης" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Παρακαλώ προσπαθήστε ξανά" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Δεν μπορείτε να χρησιμοποιήσετε έναν κωδικό πρόσβασης με %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Κωδικός πρόσβασης (ξανά)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Καθαρισμός του φακέλου /tmp σε κάθε εκκίνηση" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Μήνυμα εκκίνησης" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Καθυστέρηση του Open Firmware" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Χρονικό όριο εκκίνησης του πυρήνα" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Ενεργοποίηση της εκκίνησης από CD;" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Ενεργοποίηση της εκκίνησης στο OF;" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Προκαθορισμένο λειτουργικό σύστημα ;" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Εικόνα" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Κατάτμηση root" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Επιλογές περασμένες στον πυρήνα" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Επιλογές Xen περασμένες στον πυρήνα" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "Απαιτείται ένας κωδικός πρόσβασης για την εκκίνηση" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Λειτουργία βίντεο" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Προφίλ δικτύου" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Ετικέτα" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Προκαθορισμένο" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "NoVideo" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Δεν επιτρέπεται μια κενή ετικέτα" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Πρέπει να ορίσετε μια εικόνα πυρήνα" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Πρέπει να ορίσετε μια κατάτμηση root" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Αυτή η ετικέτα χρησιμοποιείται ήδη" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Τι τύπου σύστημα θέλετε να προσθέσετε;" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Άλλο λειτουργικό (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Άλλο λειτουργικό (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Άλλο λειτουργικό (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Ρύθμιση του προγράμματος εκκίνησης" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -368,47 +368,47 @@ msgstr "" "Ορίστε οι καταχωρήσεις στο μενού εκκίνησης.\n" "Μπορείτε να προσθέσετε κι άλλες ή να αλλάξετε τις υπάρχουσες." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "πρόσβαση σε προγράμματα γραφικού περιβάλλοντος" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "πρόσβαση σε εργαλεία rpm" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "επιτρέπεται η «su»" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "πρόσβαση σε αρχεία διαχείρισης" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "πρόσβαση σε εργαλεία δικτύου" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "πρόσβαση σε εργαλεία σύνθεσης" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(%s έχει ήδη προστεθεί)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Παρακαλώ εισάγετε ένα όνομα χρήστη" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -417,149 +417,149 @@ msgstr "" "Το όνομα χρήστη πρέπει να αρχίζει με πεζό γράμμα και τα γράμματα που " "ακολουθούν να είναι επίσης πεζά, αριθμοί, «-» και «_»" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Αυτό το όνομα χρήστη είναι πολύ μακρύ" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Αυτό το όνομα χρήστη έχει ήδη προστεθεί" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Αναγνωριστικό χρήστη" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Αναγνωριστικό ομάδας" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "Το %s πρέπει να είναι αριθμός" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" "Το %s πρέπει να είναι μεγαλύτερο ή ίσο του 500. Αποδοχή έτσι κι αλλιώς;" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Διαχείριση χρηστών" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "Ενεργοποίηση του λογαριασμού επισκέπτη " -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Ορίστε τον κωδικό πρόσβασης του διαχειριστή (root)" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Εισάγετε ένα χρήστη" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Εικονίδιο" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Πραγματικό όνομα" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Όνομα χρήστη" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Κέλυφος" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Παρακαλώ περιμένετε, προσθήκη μέσου..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Αυτόματη σύνδεση" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Μπορώ να ρυθμίσω το σύστημά σας έτσι ώστε να συνδέει αυτόματα ένα χρήστη." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Χρήση αυτού του χαρακτηριστικού" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Επιλέξτε τον προκαθορισμένο χρήστη:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Επιλέξτε το διαχειριστή παραθύρων που θέλετε να χρησιμοποιήσετε:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Σημειώσεις έκδοσης" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Κλείσιμο" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Άδεια χρήσης" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Έξοδος" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "Αποδέχεστε αυτήν την άδεια ;" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Αποδοχή" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Άρνηση" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Παρακαλώ επιλέξτε τη γλώσσα" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -570,82 +570,82 @@ msgstr "" "τις γλώσσες που επιθυμείτε να εγκαταστήσετε. Θα είναι διαθέσιμες\n" "μετά την ολοκλήρωση της εγκατάστασης και την επανεκκίνηση του υπολογιστή." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "Mageia" -#: any.pm:1160 +#: any.pm:1159 #, c-format msgid "Multiple languages" msgstr "Πολλαπλές γλώσσες" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Κωδικοποίηση παλιάς συμβατότητας (μη UTF-8)" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Όλες οι γλώσσες" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Επιλογή γλώσσας" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Χώρα / Περιοχή" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Παρακαλώ επιλέξτε τη χώρα σας" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων χωρών" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Άλλες χώρες" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Για προχωρημένους" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Μέθοδος εισαγωγής:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Κανένα" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Χωρίς κοινή χρήση" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Επιτρέπεται για όλους τους χρήστες" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Προσαρμοσμένο" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -660,7 +660,7 @@ msgstr "" "\n" "Το \"Προσαρμοσμένο\" επιτρέπει την ανά χρήστη ρύθμιση.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -669,7 +669,7 @@ msgstr "" "NFS: το παραδοσιακό σύστημα κοινής χρήσης του Unix, με περιορισμένη " "υποστήριξη για Mac και Windows." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -678,7 +678,7 @@ msgstr "" "SMB: ένα σύστημα κοινής χρήσης, που χρησιμοποιείται από τα Windows, από το " "Mac OS X και από πολλά μοντέρνα συστήματα Linux." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." @@ -686,12 +686,12 @@ msgstr "" "Μπορείτε να κάνετε εξαγωγή με τη χρήση NFS ή SMB. Παρακαλώ επιλέξτε ποιο θα " "θέλατε να χρησιμοποιήσετε." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Εκκίνηση του userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -701,7 +701,7 @@ msgstr "" "Μπορείτε να προσθέσετε ένα χρήστη σε αυτήν την ομάδα χρησιμοποιώντας το " "userdrake." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -710,49 +710,49 @@ msgstr "" "Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να " "επανασυνδεθείτε. Πατήστε «Εντάξει» για να αποσυνδεθείτε τώρα." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" "Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να " "επανασυνδεθείτε." -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Ωρολογιακή ζώνη" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Ποια είναι η ζώνη ώρας σας;" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Ρυθμίσεις της ημερομηνίας, της ώρας και της ωρολογιακής ζώνης" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Ποια είναι η σωστή ώρα;" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί σε UTC)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί στην τοπική ώρα)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "Εξυπηρετητής NTP" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Αυτόματος συγχρονισμός της ώρας (μέσω NTP)" @@ -1096,7 +1096,7 @@ msgid "Domain Admin Password" msgstr "Κωδικός πρόσβασης του διαχειριστή τομέα" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1111,43 +1111,43 @@ msgstr "" "περιμένετε την εκκίνηση από προεπιλογή.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO με μενού κειμένου" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB με γραφικό μενού " -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB με μενού κειμένου" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "δεν υπάρχει αρκετός χώρος στο /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "" "Δεν μπορείτε να εγκαταστήσετε το πρόγραμμα εκκίνησης σε μια κατάτμηση %s\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1156,7 +1156,7 @@ msgstr "" "Η ρύθμιση του προγράμματος εκκίνησης πρέπει να ενημερωθεί επειδή κάποιες " "κατατμήσεις έχουν επαναριθμηθεί" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1166,7 +1166,7 @@ msgstr "" "εκκινήσετε το CD-ROM της εγκατάστασης με την επιλογή «διάσωση» και να " "επιλέξετε «%s»" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Επανεγκατάσταση του προγράμματος εκκίνησης" @@ -1286,7 +1286,7 @@ msgstr "Έγινε" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1310,7 +1310,7 @@ msgstr "Η διεύθυνση πρέπει να ξεκινά με http:// ή htt #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Προσοχή" @@ -2368,7 +2368,7 @@ msgstr "Αναζήτηση για νέους εξυπηρετητές" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Το πακέτο %s πρέπει να εγκατασταθεί. Θέλετε να το εγκαταστήσετε;" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Αδυναμία εγκατάστασης του πακέτου %s!" @@ -2378,17 +2378,17 @@ msgstr "Αδυναμία εγκατάστασης του πακέτου %s!" msgid "Mandatory package %s is missing" msgstr "Το απαραίτητο αρχείο %s δεν υπάρχει" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Τα παρακάτω πακέτα χρειάζεται να εγκατασταθούν:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Εγκατάσταση πακέτων..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Αφαίρεση πακέτων..." @@ -3307,7 +3307,7 @@ msgstr "" "Εδώ μπορείτε να επιλέξετε έναν εναλλακτικό οδηγό (OSS ή ALSA) για την κάρτα " "ήχου σας (%s)" -#. -PO: here the first %s is either "OSS" or "ALSA", +#. -PO: here the first %s is either "OSS" or "ALSA", #. -PO: the second %s is the name of the current driver #. -PO: and the third %s is the name of the default driver #: harddrake/sound.pm:369 @@ -4868,7 +4868,7 @@ msgstr "Ζάμπια" msgid "Zimbabwe" msgstr "Ζιμπάμπουε" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Καλώς ήλθατε στο %s" @@ -4896,7 +4896,7 @@ msgstr "" "φυσικούς τόμους" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4909,8 +4909,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Εισαγωγή\n" "\n" @@ -4924,7 +4923,8 @@ msgstr "" "διανομής Mageia, καθώς και οποιοδήποτε εφαρμογών που διανέμονται από τους " "προμηθευτές της Mageia." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4966,7 +4966,8 @@ msgstr "" "αντίγραφα των \n" "Προϊόντων Λογισμικού." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -5054,7 +5055,8 @@ msgstr "" "επακόλουθες ή συμπτωματικές ζημίες, ο παραπάνω περιορισμός ενδέχεται να μην " "ισχύει για εσάς." - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -5089,7 +5091,8 @@ msgstr "" "διέπεται από ειδική άδεια. Παρακαλώ ανατρέξτε στην τεκμηρίωση για " "περισσότερες λεπτομέρειες." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -5111,10 +5114,10 @@ msgstr "" "αναπροσαρμογή ή την προσαρμογή \n" "των προϊόντων λογισμικού, στο σύνολό τους ή κατά τμήματα, με όλα τα μέσα και " "για όλους τους σκοπούς.\n" -"«Mageia» και τα σχετιζόμενα με αυτά λογότυπα είναι εμπορικά σήματα της " -"Mageia" - +"«Mageia» και τα σχετιζόμενα με αυτά λογότυπα είναι εμπορικά σήματα της Mageia" +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5148,8 +5151,7 @@ msgstr "" "Για οποιαδήποτε ερώτηση σχετικά με αυτό το έγγραφο, παρακαλούμε " "επικοινωνήστε με τη Mageia." - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5170,7 +5172,7 @@ msgstr "" "της χώρας σας." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po index afda924d8..91d339640 100644 --- a/perl-install/share/po/eo.po +++ b/perl-install/share/po/eo.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2003-03-12 18:31-0400\n" "Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n" "Language-Team: esperanto <eo@li.org>\n" @@ -15,21 +15,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.6\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Bonvole atendu" -#: any.pm:262 +#: any.pm:261 #, fuzzy, c-format msgid "Bootloader installation in progress" msgstr "Startŝargila instalado" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -40,12 +40,12 @@ msgid "" "Assign a new Volume ID?" msgstr "" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Instalado de startŝargilo malsukcesis. La sekvanta eraro okazis:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -56,7 +56,7 @@ msgid "" "At your next boot you should see the bootloader prompt." msgstr "" -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -71,268 +71,268 @@ msgstr "" "\n" "En kiu drajvo vi startigas?" -#: any.pm:341 +#: any.pm:340 #, fuzzy, c-format msgid "Bootloader Installation" msgstr "Startŝargila instalado" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Kie vi deziras instali la startŝargilon?" -#: any.pm:369 +#: any.pm:368 #, fuzzy, c-format msgid "First sector (MBR) of drive %s" msgstr "Unu sektoro de drajvo (ĈefStartRikordo)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Unu sektoro de drajvo (ĈefStartRikordo)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Unua sektoro de radika subdisko" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Sur disketo" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Ellasu" -#: any.pm:412 +#: any.pm:411 #, fuzzy, c-format msgid "Boot Style Configuration" msgstr "Post-instala konfigurado" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Startŝargilo ĉefaj opcioj" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Startŝargilo" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Startŝargilo por uzi" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Starta aparato" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Prokrastoperiodo antaŭ starti defaŭltan sistemon" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Ebligu ACPI" -#: any.pm:442 +#: any.pm:441 #, fuzzy, c-format msgid "Enable SMP" msgstr "Ebligu ACPI" -#: any.pm:443 +#: any.pm:442 #, fuzzy, c-format msgid "Enable APIC" msgstr "Ebligu ACPI" -#: any.pm:445 +#: any.pm:444 #, fuzzy, c-format msgid "Enable Local APIC" msgstr "Ebligu ACPI" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Sekureco" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Pasvorto" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "La pasvortoj ne egalas" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Bonvole provu denove" -#: any.pm:452 +#: any.pm:451 #, fuzzy, c-format msgid "You cannot use a password with %s" msgstr "Vi ne povas uzi kriptan dosiersistemon por surmetingo %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Pasvorto (denove)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Purigu /tmp dum ĉiuj startadoj" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Ĉu ebligi CD Boot?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Ĉu ebligi OF Boot?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Defaŭlta Mastruma Sistemo?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Kerna bildo" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Radiko" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Alfiksu" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Grafika reĝimo" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, fuzzy, c-format msgid "Network profile" msgstr "Nova profilo..." -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Etikedo" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Defaŭlta" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Malplena etikedo ne estas permesata" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Vi devas decidi pri kerno-bildo" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Vi devas difini radikan (root) subdiskon" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Ĉi tiu etikedo estas jam uzata" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Kiun specon de enskribo vi deziras aldoni" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linukso" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Alia Mastruma Sistemo (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Alia Mastruma Sistemo (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Alia Mastruma Sistemo (Vindozo...)" -#: any.pm:656 +#: any.pm:655 #, fuzzy, c-format msgid "Bootloader Configuration" msgstr "Post-instala konfigurado" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -341,196 +341,196 @@ msgstr "" "Jen la diversaj enskriboj.\n" "Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "aliro al X-programoj" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "aliro al rpm-iloj" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "permesu \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "aliro al administraj dosieroj" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "aliro al retiloj" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "aliro al kompililoj" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(jam aldonis %s)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Bonvole donu salutnomon" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " "cased letters, numbers, `-' and `_'" msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Ĉi tiu salutnomo estas tro longa" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Ĉi tiu salutnomo estas jam aldonita" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Uzula ID" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Grupa ID" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" -#: any.pm:900 +#: any.pm:899 #, fuzzy, c-format msgid "User management" msgstr "Uzulnomo" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, fuzzy, c-format msgid "Set administrator (root) password" msgstr "Difinu pasvorton de root" -#: any.pm:912 +#: any.pm:911 #, fuzzy, c-format msgid "Enter a user" msgstr "" "Enigu uzanton\n" "%s" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Piktogramo" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Vera nomo" -#: any.pm:924 +#: any.pm:923 #, fuzzy, c-format msgid "Login name" msgstr "Domajna nomo" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Ŝelo" -#: any.pm:972 +#: any.pm:971 #, fuzzy, c-format msgid "Please wait, adding media..." msgstr "Elektas sekurnivelon" -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Aŭtomata-enregistrado" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "Mi povas konfiguri vian komputilon por aŭtomate enirigi unu uzulon" -#: any.pm:1006 +#: any.pm:1005 #, fuzzy, c-format msgid "Use this feature" msgstr "Ĉu vi deziras uzi tiun funkcion?" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Elektu la defaŭltan uzulon:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Elektu la fenestro-administrilon por lanĉi:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, fuzzy, c-format msgid "Release Notes" msgstr "Bonvole atendu" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Malfermu" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Licenca kontrakto" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Ĉesu" -#: any.pm:1102 +#: any.pm:1101 #, fuzzy, c-format msgid "Do you accept this license ?" msgstr "Ĉu vi havas alian?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Akceptu" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Malakceptu" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Bonvole elektu lingvon por uzi" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -539,82 +539,82 @@ msgid "" msgstr "" "Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaŭ la instalado" -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "Ĉiuj lingvoj" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Ĉiuj lingvoj" -#: any.pm:1192 +#: any.pm:1191 #, fuzzy, c-format msgid "Language choice" msgstr "Mianmaro" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Lando" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Bonvole elektu vian landon" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Jen la kompleta listo de atingeblaj landoj" -#: any.pm:1250 +#: any.pm:1249 #, fuzzy, c-format msgid "Other Countries" msgstr "Aliaj pordoj" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Progresinta" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Neniom" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Ne kundivido" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Permesu ĉiujn uzulojn" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Akomodata" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -630,86 +630,86 @@ msgstr "" "\n" "\"Custum\" ebligas per-uzulan.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " "Windows." msgstr "" -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " "systems." msgstr "" -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "Vi povas eksporti uzante NFS aŭ SMB. Bonvole elektu kiun vi ŝatus uzi." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Lanĉu userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" "You can use userdrake to add a user to this group." msgstr "" -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Horzono" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "kio estas vian horzonon?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "" -#: any.pm:1573 +#: any.pm:1572 #, fuzzy, c-format msgid "%s (hardware clock set to UTC)" msgstr "Aparata horloĝo estas ĝustigita laŭ GMT" -#: any.pm:1574 +#: any.pm:1573 #, fuzzy, c-format msgid "%s (hardware clock set to local time)" msgstr "Aparata horloĝo estas ĝustigita laŭ GMT" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP Servilo" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Auxtomata hor-sinkronizado (uzante NTP) " @@ -1033,7 +1033,7 @@ msgid "Domain Admin Password" msgstr "" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1048,56 +1048,56 @@ msgstr "" "atendu por defauxlta starto.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "mankas sufiĉe da spaco en /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Vi ne povas instali la startŝargilon en %s-subdiskon\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " "renumbered" msgstr "" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " "choose \"%s\"" msgstr "" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, fuzzy, c-format msgid "Re-install Boot Loader" msgstr "Instalu restart-ŝargilon" @@ -1215,7 +1215,7 @@ msgstr "Finata" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1239,7 +1239,7 @@ msgstr "La URL devas komenci per http:// aŭ https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Averto" @@ -2270,7 +2270,7 @@ msgstr "Serĉu servilojn" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Ĉi tiu pakaĵo %s devas esti instalita. Ĉu vi deziras instali ĝin?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, fuzzy, c-format msgid "Could not install the %s package!" msgstr "Instalanta pakaĵo %s" @@ -2280,17 +2280,17 @@ msgstr "Instalanta pakaĵo %s" msgid "Mandatory package %s is missing" msgstr "" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, fuzzy, c-format msgid "The following packages need to be installed:\n" msgstr "La sekvaj pakaĵoj estos instalataj" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Instalanta pakaĵojn..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, fuzzy, c-format msgid "Removing packages..." msgstr "Distingivo: %s\n" @@ -4660,7 +4660,7 @@ msgstr "Zambio" msgid "Zimbabwe" msgstr "Zimbabvo" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Bonvenon al %s" @@ -4686,7 +4686,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, fuzzy, c-format msgid "" "Introduction\n" @@ -4699,8 +4699,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Enkonduko\n" "\n" @@ -4712,7 +4711,8 @@ msgstr "" "kaj la diversajnf komponantojn de la Mageia Linuks-eldono, sed\n" "ne estas limigitaj al ili.\n" - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4748,8 +4748,8 @@ msgstr "" "Iu ajn provo instali, duobligi aŭ uzi la softvarproduktojn en maniero kiu ne " "kongruas kun la teksto kaj kondiĉoj de tiu ĉi licenco estas" - - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4794,7 +4794,8 @@ msgid "" "you." msgstr "" - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4814,7 +4815,8 @@ msgid "" "further details." msgstr "" - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4828,7 +4830,8 @@ msgid "" "\"Mageia\" and associated logos are trademarks of Mageia" msgstr "" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -4846,7 +4849,7 @@ msgid "" "For any question on this document, please contact Mageia." msgstr "" -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -4859,7 +4862,7 @@ msgid "" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po index 2d331c917..3afe9be8b 100644 --- a/perl-install/share/po/es.po +++ b/perl-install/share/po/es.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakx_share\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2012-03-11 22:05-0500\n" "Last-Translator: Diego Bello <dbello@gmail.com>\n" "Language-Team: Spanish <mdktrans@blogdrake.net>\n" @@ -15,21 +15,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Espere, por favor" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Instalación del cargador de arranque en progreso" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -46,13 +46,13 @@ msgstr "" "\n" "¿Asignar un nuevo ID de Volumen?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "" "Falló la instalación del cargador de arranque. Ocurrió el siguiente error:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -70,7 +70,7 @@ msgstr "" " Luego escriba: shut-down\n" "La próxima vez que arranque debería ver el prompt del cargador de arranque." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -85,268 +85,268 @@ msgstr "" "\n" "¿Desde qué disco arranca?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Instalación del cargador de arranque" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "¿Dónde quiere instalar el cargador de arranque?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Primer sector (MBR) del disco %s" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Primer sector del disco (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Primer sector de la partición raíz" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "En disquete" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Omitir" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Configuración del estilo de arranque" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Opciones principales del cargador de arranque" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Cargador de arranque" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Cargador de arranque a usar" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Dispositivo de arranque" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Opciones principales" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Demora antes de arrancar la imagen predeterminada" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Habilitar ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Habilitar SMP" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Habilitar APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Habilitar APIC local" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Seguridad" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Contraseña" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Las contraseñas no coinciden" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Vuelva a intentarlo, por favor" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "No puede usar una contraseña con %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Contraseña (de nuevo)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Limpiar /tmp en cada inicio del equipo" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Mensaje de inicio" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Demora de Open firmware" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Tiempo de espera de arranque del núcleo" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "¿Habilitar el arranque desde CD?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "¿Habilitar el arranque de OF?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "¿SO predeterminado?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Imagen" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Raíz" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Añadir" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Añadir Xen" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "Requiere contraseña para iniciar" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Modo de vídeo" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Perfil de red" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Etiqueta" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Por defecto" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "Sin vídeo" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "No se admite una etiqueta vacía" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Debe especificar una imagen del núcleo" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Debe especificar una partición raíz" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Esta etiqueta ya está en uso" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "¿Qué tipo de entrada desea añadir?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Otro SO (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Otro SO (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Otro SO (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Configuración del cargador de arranque" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -355,47 +355,47 @@ msgstr "" "Aquí están las diferentes entradas.\n" "Puede añadir otras o cambiar las que ya existen." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "acceso a programas X" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "acceso a herramientas rpm" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "permitir \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "acceso a archivos administrativos" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "acceso a herramientas de red" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "acceso a herramientas de compilación" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(%s ya fue añadido)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Introduzca el nombre de usuario" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -404,149 +404,149 @@ msgstr "" "El nombre de usuario (login) debe comenzar con una letra minúscula seguida " "sólo letras minúsculas, números, `-' y `_'" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "El nombre de usuario es muy largo" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Este nombre de usuario ya fue añadido" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "ID de usuario" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "ID de grupo" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "¡%s debe ser un número!" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s debería ser superior a 500. ¿Aceptarlo igual?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Administración de usuarios" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "Habilitar cuenta de invitado" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Introduzca contraseña del administrador (root)" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Ingrese un usuario" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Icono" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Nombre y apellidos" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Nombre de conexión" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Shell" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Por favor espere, agregando soportes..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Conexión automática" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Puedo configurar su computadora para que entre automáticamente con un " "usuario." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Utilizar esa característica" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Elija el usuario predeterminado:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Elija el gestor de ventanas a ejecutar:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Notas de versión" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Cerrar" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Acuerdo de licencia" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Salir" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "¿Acepta esta licencia?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Aceptar" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Rechazar" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Por favor, elija el idioma a usar" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -557,82 +557,82 @@ msgstr "" "los idiomas que desea instalar. Estarán disponibles\n" "cuando la instalación esté completa y reinicie el sistema." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "Mageia" -#: any.pm:1160 +#: any.pm:1159 #, c-format msgid "Multiple languages" msgstr "Múltiples idiomas" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Codificación (no UTF-8) para compatibilidad antigua" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Todos los idiomas" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Selección del idioma" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "País / Región" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Seleccione su país, por favor" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Aquí tiene la lista completa de países disponibles" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Otros países" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Avanzada" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Método de entrada:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Ninguno" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "No compartir" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Permitir a todos los usuarios" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Personalizada" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -647,7 +647,7 @@ msgstr "" "\n" "\"Personalizada\" permite una granularidad por usuario.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -656,7 +656,7 @@ msgstr "" "NFS: sistema tradicional Unix para compartir archivos, con menos soporte en " "Mac y Windows." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -665,19 +665,19 @@ msgstr "" "SMB: sistema para compartir archivos usado por Windows, Mac OS X y muchos " "sistemas Linux modernos." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "" "Puede exportar usando NFS o SMB. Por favor, elija el que desea utilizar." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Lanzar UserDrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -686,7 +686,7 @@ msgstr "" "Los recursos compartidos por usuario utilizan el grupo \"fileshare\". \n" "Puede utilizar UserDrake para añadir un usuario a este grupo." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -695,48 +695,48 @@ msgstr "" "Debe desconectarse y volver a conectarse para que los cambios tengan efecto. " "Pulse OK para conectarse ahora." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" "Debe desconectarse y volver a conectarse para que los cambios tengan efecto" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Huso horario" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "¿Cuál es su huso horario?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Configuración de la fecha, hora y huso horario" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "¿Cuál es la mejor hora?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (reloj interno puesto en hora UTC)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (reloj interno puesto en hora local)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "Servidor NTP" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Sincronización automática de hora (usando NTP)" @@ -1079,7 +1079,7 @@ msgid "Domain Admin Password" msgstr "Contraseña del Administrador del Dominio" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1094,42 +1094,42 @@ msgstr "" "a que arranque el sistema predeterminado.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO con menú de texto" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB con menú gráfico" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB con menú de texto" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "no hay espacio suficiente en /boot" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "No puede instalar el cargador de arranque en una partición %s\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1138,7 +1138,7 @@ msgstr "" "Se debe actualizar la configuración de su cargador de arranque debido a que " "cambió el número de la partición" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1147,7 +1147,7 @@ msgstr "" "No se puede instalar correctamente el cargador de arranque. Debe arrancar " "con rescate y elegir \"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Volver a instalar cargador de arranque" @@ -1265,7 +1265,7 @@ msgstr "Hecho" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1289,7 +1289,7 @@ msgstr "La URL debería empezar con http:// o https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Advertencia" @@ -2341,7 +2341,7 @@ msgstr "Buscar servidores nuevos" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Se necesita instalar el paquete %s. ¿Quiere instalarlo?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "¡No se pudo instalar el paquete %s!" @@ -2351,17 +2351,17 @@ msgstr "¡No se pudo instalar el paquete %s!" msgid "Mandatory package %s is missing" msgstr "Falta el paquete obligatorio %s" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Se deben instalar los siguientes paquetes:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Instalando paquetes..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Quitando paquetes..." @@ -4822,7 +4822,7 @@ msgstr "Zambia" msgid "Zimbabwe" msgstr "Zimbaue" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Bienvenido a %s" @@ -4849,7 +4849,7 @@ msgstr "" "El cargador de arranque no puede manejar /boot en múltiples volúmenes físicos" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4862,8 +4862,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Introducción\n" "\n" @@ -4879,7 +4878,8 @@ msgstr "" "proveedores o licenciatarios\n" "de Mageia." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4921,7 +4921,8 @@ msgstr "" "Licencia. En caso de anulación de la Licencia, Usted deberá destruir " "inmediatamente todas las copias de los Productos de Software." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -5006,7 +5007,8 @@ msgstr "" "limitación \n" "anterior puede no aplicar a Usted. " - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -5045,7 +5047,8 @@ msgstr "" "consulte \n" "la documentación para más detalles." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -5069,10 +5072,10 @@ msgstr "" "modificar o adaptar los \n" "Productos de Software, como un todo o en parte, por todos los medios y para " "cualquier propósito.\n" -"\"Mageia\" y los logos asociados son marca registrada de " -"Mageia " - +"\"Mageia\" y los logos asociados son marca registrada de Mageia " +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5105,8 +5108,7 @@ msgstr "" "Para cualquier pregunta relacionada con este documento, por favor ponerse en " "contacto con Mageia" - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5127,7 +5129,7 @@ msgstr "" "a Usted, por favor consulte las leyes locales." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po index b8b3e3956..8e3b7cdae 100644 --- a/perl-install/share/po/et.po +++ b/perl-install/share/po/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakx_share\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2012-04-25 02:29+0000\n" "Last-Translator: Marek Laane <bald@smail.ee>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,21 +17,21 @@ msgstr "" "Content-Transfer-Encoding: 8-bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Palun oodake" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Paigaldatakse alglaadurit..." -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -48,12 +48,12 @@ msgstr "" "\n" "Kas anda kettale uus ID?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Alglaaduri paigaldamine nurjus. Tekkis järgmine viga:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -70,7 +70,7 @@ msgstr "" " Seejärel kirjutage: shut-down\n" "Järgmisel käivitusel peaksite nägema alglaaduri käsurida." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -85,268 +85,268 @@ msgstr "" "\n" "Milliselt kettalt Te alglaadimise sooritate?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Alglaaduri paigaldamine" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Kuhu soovite alglaaduri paigaldada?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Ketta %s algusesse (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Ketta algusesse (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Juurpartitsiooni algusesse" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Disketil" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Jäta vahele" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Alglaaduri stiil" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Alglaaduri põhiseadistused" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Alglaadur" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Eelistatav alglaadur" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Alglaadimisseade" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Põhivalikud" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Ooteaeg alglaadimisel" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "ACPI lubamine" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "SMP lubamine" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "APIC lubamine" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Kohaliku APIC lubamine" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Turvalisus" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Parool" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Paroolid ei klapi" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Palun proovige veel" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "%s puhul ei saa parooli kasutada" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Parool (uuesti)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "/tmp puhastatakse igal käivitumisel" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Initsialiseerimisteade" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Open Firmware viivitus" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Ajapiirang kerneli laadimisel" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "CD-lt laadimine lubatud?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "OF laadimine lubatud?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Vaikimisi OS?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Laadefail" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Juurpartitsioon" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Lisaargumendid" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Xen'i lisaargument" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "Alglaadimiseks on vajalik parool" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Ekraanilahutus" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Võrguprofiil" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Nimi" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Vaikimisi" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "NoVideo" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Nimi ei tohi puududa" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Teil peab olema kerneli laadepilt" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Teil peab olema juurpartitsioon" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Selline nimi on juba kasutusel" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Millist kirjet soovite lisada?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Muu OS (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Muu OS (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Muu OS (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Alglaaduri seadistamine" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -355,47 +355,47 @@ msgstr "" "Praegu on kasutusel sellised kirjed.\n" "Te võite neid lisada ning olemasolevaid muuta." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "ligipääs X'i rakendustele" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "ligipääs rpm-tööriistadele" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "\"su\" lubamine" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "ligipääs administreerimisfailidele" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "ligipääs võrgutööriistadele" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "ligipääs kompileerimistööriistadele" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(juba lisatud %s)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Palun andke kasutajanimi" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -404,148 +404,148 @@ msgstr "" "Kasutajanimi peab algama väiketähega ja tohib sisaldada ainult väikesi " "tähti, arve ning märke \"-\" ja \"_\"" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "See kasutajanimi on liiga pikk" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "See kasutajanimi on juba lisatud" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Kasutaja ID" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Grupi ID" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "%s peab olema arv" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s peab olema suurem kui 500. Kas ikkagi lisada?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Kasutajate haldamine" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "Külaliskonto (guest) lubamine" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Administraatori (root) parool" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Kasutaja lisamine" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Ikoon" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Pärisnimi" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Kasutajatunnus" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Shell" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Palun oodake, lisatakse andmekandja..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Automaatne sisselogimine" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "" "Teie arvutis saab määrata kasutaja, kel on lubatud automaatselt sisse logida." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Selle võimaluse lubamine" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Valige kasutaja:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Valige käivitatav aknahaldur:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Info väljalaske kohta" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Sulge" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Lõppkasutaja litsentsileping" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Välju" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "Kas olete selle litsentsiga nõus?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Nõustun" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Keeldun" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Valige palun kasutatav keel" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -557,82 +557,82 @@ msgstr "" "Need muutuvad kasutatavaks, kui olete paigaldamise\n" "lõpetanud ja süsteemi taaskäivitanud." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "Mageia" -#: any.pm:1160 +#: any.pm:1159 #, c-format msgid "Multiple languages" msgstr "Mitme keele valimine" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Varasemaga ühilduv kodeering (mitte-UTF-8)" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Kõik keeled" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Keelevalik" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Riik / Piirkond" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Palun valige oma riik" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "See on kõigi riikide täielik nimekiri" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Muud riigid" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Edasijõudnuile" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Sisestusmeetod:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Puudub" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Jagamiseta" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Lubatud kõigile kasutajatele" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Kohandatud" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -647,7 +647,7 @@ msgstr "" "\n" "\"Kohandatud\" lubab määrata seda kasutajate kaupa.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -656,7 +656,7 @@ msgstr "" "NFS: UNIX-i traditsiooniline failijagamissüsteem, mida Mac ja Windows eriti " "ei toeta." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -665,18 +665,18 @@ msgstr "" "SMB: failijagamissüsteem, mida toetavad Windows, Mac OS X ja enamik moodsaid " "Linuxi süsteeme." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "Eksportida saab NFS või SMB abil. Palun valige, kumba kasutada." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Userdrake käivitamine" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -685,7 +685,7 @@ msgstr "" "Kasutaja kaupa jagamise lubamine rakendab gruppi \"fileshare\". \n" "Sellesse gruppi kasutajate lisamiseks saab tarvitada userdraket." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -694,47 +694,47 @@ msgstr "" "Muudatuste rakendamiseks tuleb end uuesti sisse logida. Vajutage " "väljalogimiseks OK." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "Muudatuste rakendamiseks tuleb end uuesti sisse logida" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Ajavöönd" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Millises ajavöötmes asute?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Kuupäeva, kellaaja ja ajavööndi seadistamine" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Milline on korrektne aeg?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (arvuti sisekell on seatud GMT ajale)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (arvuti sisekell on seatud kohalikule ajale)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP server" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Aja automaatne sünkroniseerimine (NTP abil)" @@ -1071,7 +1071,7 @@ msgid "Domain Admin Password" msgstr "Domeeni administraatori parool" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1086,49 +1086,49 @@ msgstr "" "ehk oodake, kuni laetakse vaikimisi valitu.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LiLo tekstirežiimis" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB graafilises režiimis" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB tekstirežiimis" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "/boot on liiga täis" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Alglaadurit ei saa paigaldada %s partitsioonile\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " "renumbered" msgstr "Alglaaduri seadistust tuleb uuendada, sest partitsioon on ümber seatud" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1137,7 +1137,7 @@ msgstr "" "Alglaadurit ei saa korrektselt paigaldada. Peate tegema taaskäivituse " "päästerežiimi (rescue) ja valima \"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Alglaaduri taaspaigaldamine" @@ -1254,7 +1254,7 @@ msgstr "Tehtud" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1278,7 +1278,7 @@ msgstr "URL peab algama kas http:// või https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Hoiatus" @@ -2319,7 +2319,7 @@ msgstr "Uute serverite otsimine" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Pakett %s tuleks kindlasti paigaldada. Kas soovite seda teha?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Ei õnnestunud paigaldada %s paketti!" @@ -2329,17 +2329,17 @@ msgstr "Ei õnnestunud paigaldada %s paketti!" msgid "Mandatory package %s is missing" msgstr "Puudub kohustuslik pakett %s" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Paigaldada tuleb järgmised paketid:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Pakettide paigaldamine..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Pakettide eemaldamine..." @@ -4777,7 +4777,7 @@ msgstr "Sambia" msgid "Zimbabwe" msgstr "Zimbabwe" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "See ongi %s" @@ -4805,7 +4805,7 @@ msgstr "" "partitsiooni /boot" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4818,8 +4818,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Järgnev lõppkasutaja litsents on eksimuste vältimiseks originaalkeeles!\n" "\n" @@ -4834,10 +4833,10 @@ msgstr "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." - +"distributed with these products provided by Mageia's licensors or suppliers." +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4879,7 +4878,8 @@ msgstr "" "copies of the \n" "Software Products." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4965,7 +4965,8 @@ msgstr "" "consequential or incidental damages, the above limitation may not apply to " "you." - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -5001,7 +5002,8 @@ msgstr "" "documentation for \n" "further details." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -5025,7 +5027,8 @@ msgstr "" "Products, as a whole or in parts, by all means and for all purposes.\n" "\"Mageia\" and associated logos are trademarks of Mageia" - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5057,8 +5060,7 @@ msgstr "" "Paris - France.\n" "For any question on this document, please contact Mageia." - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5078,7 +5080,7 @@ msgstr "" "uurige oma riigi seadusi." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po index 1dcc3390c..c440432c6 100644 --- a/perl-install/share/po/eu.po +++ b/perl-install/share/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libDrakX\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2010-06-29 13:27+0200\n" "Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n" "Language-Team: Basque <kde-i18n-doc@kde.org>\n" @@ -18,21 +18,21 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Itxoin mesedez" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Abio zamatzailearen instalaketa egiten ari da" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -50,12 +50,12 @@ msgstr "" "\n" "Bolumen ID berria ezarri nahi duzu?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Abio zamatzailearen instalaketak huts egin du. Akats hau gertatu da:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -73,7 +73,7 @@ msgstr "" " Gero, idatzi: shut-down\n" "Hurrengo abiaraztean abio zamatzailearen gonbita ikusi beharko zenuke." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -88,268 +88,268 @@ msgstr "" "\n" "Zein unitatetik abiatzen duzu?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Abio zamatzailearen instalaketa" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Non instalatu nahi duzu abio zamatzailea?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "%s unitatearen lehen sektorea (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Unitatearen lehen sektorea (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Erro partizioko lehen sektorea" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Disketean" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Utzi" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Abio tankera konfiguraketa" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Abio zamatzailearen aukera nagusiak" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Abio zamatzailea" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Erabili beharreko abio zamatzailea" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Abio gailua" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Aukera nagusiak" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Imajina lehenetsia abiarazi arteko denbora" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Gaitu ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Gaitu SMP" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Gaitu APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Gaitu bertako APIC" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Segurtasuna" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Pasahitza" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Pasahitzak ez datoz bat" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Saiatu berriro" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Ezin duzu %s-rekin pasahitz bat erabili" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Pasahitza (berriro)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Garbitu /tmp abiatzen den bakoitzean" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Hasierako mezua" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Open Firmware-ren atzerapena" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Nukleoaren abioaren denbora-muga" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Gaitu CDtik abiaraztea?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Gaitu OF abiaraztea?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "SE lehenetsia?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Imajina" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Erroa" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Erantsi" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Xen erantsi" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "Abiarazteko pasahitza behar da" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Bideo modua" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Sare profila" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Etiketa" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Lehenetsia" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "BideorikEz" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Ez da etiketa hutsik onartzen" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Nukleo-imajina bat zehaztu behar duzu" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Erroko partizio bat zehaztu behar duzu" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Etiketa hau jadanik erabili da" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Zer sarrera-mota gehitu nahi duzu?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Beste SE bat (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Beste SE bat (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Beste SE bat (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Abio zamatzailearen konfiguraketa" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -358,47 +358,47 @@ msgstr "" "Hona hemen abioko menuko orain arteko sarrerak.\n" "Sarrera gehgiago sor ditzakezu, edo lehendik daudenak aldatu." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "X programen atzipena" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "rpm tresnen atzipena" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "onartu \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "administrazio-fitxategien atzipena" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "sare-tresnen atzipena" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "konpilazio-tresnen atzipena" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(%s jadanik gehituta)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Eman erabiltzaile-izen bat" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -407,147 +407,147 @@ msgstr "" "Erabiltzaile izena letra minuskulaz hasi behar da eta jarraian soilik letra " "minuskulak, zenbakiak, `-' eta `_' izan ditzake" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Erabiltzaile-izena luzeegia da" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Erabiltzaile-izen hau gehituta dago jadanik" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Erabiltzaile ID" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Talde ID" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "%s zenbakia izan behar da" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s 500 gainetik egon behar luke. Onartu hala ere?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Erabiltzaile kudeaketa" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "Gaitu gonbidatuaren kontua" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Ezarri administratzaile (root) pasahitza" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Sartu erabiltzaile bat" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Ikonoa" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Benetako izena" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Saioa hasteko izena" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Shell" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Itxoin mesedez, euskarria eransten..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Automatikoki hasi saioa" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Ezaugarri hau erabili" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Aukeratu erabiltzaile lehenetsia:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Askapen Oharrak" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Itxi" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Lizentzia-kontratua" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Irten" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "Lizentzia hau onartzen duzu ?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Onartu" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Ezetsi" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Aukeratu erabiltzeko hizkuntza bat" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -558,82 +558,82 @@ msgstr "" "instalatu nahi dituzun hizkuntzak. Instalazioa osatzean eta\n" "sistema berrabiaraztean, erabilgarri egongo dira." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "Hizkuntza anitz" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Kodeketa bateragarritasun zaharra (ez UTF-8)" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Hizkuntza guztiak" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Hizkuntza aukera" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Estatua / Eskualdea" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Aukeratu zure herrialdea edo estatua" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Hona hemen herrialde erabilgarri guztien zerrenda" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Beste Herrialde batzuk" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Aurreratua" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Sarrera metodoa:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Bat ere ez" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Ez partekatu" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Eman baimena erabiltzaile guztiei" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Pertsonalizatua" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -648,7 +648,7 @@ msgstr "" "\n" "\"Custom\"ek erabiltzaileen araberako banaketa egiteko aukera ematen du.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -657,7 +657,7 @@ msgstr "" "NFS: usadioz Unixen fitxategiak elkarbanatzeko sistema, Mac eta Windowsen " "euskarri gutxiago duena." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -666,18 +666,18 @@ msgstr "" "SMB: fitxategiak elkarbanatzeko sistema, Windows, Mac OS X eta gaur egungo " "hainbat Linux sistemek erabiltzen dutena." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "NFS edo SMB-rekin esporta dezakezu. Hautatu zein erabili nahi duzun." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Abiarazi userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -687,7 +687,7 @@ msgstr "" "taldea erabiltzen du. \n" "Userdrake erabil dezakezu talde honetan erabiltzaileak gehitzeko." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -696,48 +696,48 @@ msgstr "" "Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten. " "Sakatu Ados saioa orain amaitzeko." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" "Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Ordu-zona" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Zein da zure ordu-zona?" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Data, ordulari eta ordu gune ezarpenak" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Zein da ordu onena?" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (hardware ordularia UTC-ra ezarria)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (hardware ordularia bertako ordura ezarria)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP Zerbitzaria" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)" @@ -1081,7 +1081,7 @@ msgid "Domain Admin Password" msgstr "Domeinu-administratzailearen pasahitza" #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1096,42 +1096,42 @@ msgstr "" "itxaron lehenespenez berrabiarazi arte.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO testu-menuarekin" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB menu grafikoarekin" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB testu menuarekin" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "ez dago nahikoa leku /boot-en" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Abioko kargatzailea ezin da instalatu %s partizio batean\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1140,7 +1140,7 @@ msgstr "" "Abioko kargatzailearen konfigurazioa eguneratu egin behar da, partizioa " "berriro zenbakitu delako" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1149,7 +1149,7 @@ msgstr "" "Abioko kargatzailea ezin da behar bezala instalatu. Berrabiarazi " "berreskuratzea, eta hautatu \"%s\"" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Berriro instalatu abioko kargatzailea" @@ -1266,7 +1266,7 @@ msgstr "Eginda" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1290,7 +1290,7 @@ msgstr "URLak honela hasi behar du: http:// edo https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Kontuz" @@ -2337,7 +2337,7 @@ msgstr "Bilatu zerbitzari berriak" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "%s paketea instalatu egin behar da. Instalatu nahi duzu?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Ezin izan da %s paketea instalatu!" @@ -2347,17 +2347,17 @@ msgstr "Ezin izan da %s paketea instalatu!" msgid "Mandatory package %s is missing" msgstr "Derrigorrezko %s paketea falta da" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Ondorengo paketeak instalatu behar dituzu:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Paketeak instalatzen..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Paketeak kentzen..." @@ -4802,7 +4802,7 @@ msgstr "Zambia" msgid "Zimbabwe" msgstr "Zimbawe" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Ongi etorri %s(e)ra" @@ -4830,7 +4830,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "Abio-zamatzaileak ezin du /boot bolumen fisiko anitzetan maneiatu" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4843,8 +4843,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Sarrera\n" "\n" @@ -4857,7 +4856,8 @@ msgstr "" "eta Mandribaren lizentziatzaile edo hornitzaileek produktu hauekin banatzen " "duten edozein aplikazio." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4899,7 +4899,8 @@ msgstr "" "suntsitu \n" "behar dituzu." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4977,7 +4978,8 @@ msgstr "" "handiko osagaiei aplikatzen \n" "zaie, baina ez da horietara mugatzen." - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4998,8 +5000,8 @@ msgid "" msgstr "" "3. GPL Lizentzia eta Lizentzia erlazionatuak\n" "\n" -"Software Produktuak hainbat pertsonak edo erakundek sortutako osagaiak dira. " -"\n" +"Software Produktuak hainbat pertsonak edo erakundek sortutako osagaiak " +"dira. \n" "Osagai horietako gehienak aurrerantzean \"GPL\" deituko diogun GNU Lizentzia " "Publiko Orokorraren\n" "edo antzeko lizentzien baldintzek eraenduak dira. Lizentziahorietako " @@ -5014,7 +5016,8 @@ msgstr "" "gehiago nahi izanez gero \n" "jo dokumentaziora." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -5036,10 +5039,10 @@ msgstr "" "Mageiak eskubidea du Software Produktuak bere osotasunean edo zatika " "aldatzeko, \n" "edozein bide erabiliz eta helburu guztietarako.\n" -"\"Mageia\" eta asoziatutako logotipoak Mageiaren marka " -"erregistratuak dira. " - +"\"Mageia\" eta asoziatutako logotipoak Mageiaren marka erregistratuak dira. " +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5070,8 +5073,7 @@ msgstr "" "Dokumentu honi buruzko edozein zalantza argitzeko, jarri harremanetan\n" "Mageiarekin." - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5092,7 +5094,7 @@ msgstr "" "bat aplika daitekeen zalantzak badituzu, aztertu zure tokiko legeak." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po index 5105981f8..ebe614318 100644 --- a/perl-install/share/po/fa.po +++ b/perl-install/share/po/fa.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX-fa\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2005-02-26 06:31+0100\n" "Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n" "Language-Team: Persian\n" @@ -15,21 +15,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.3.1\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "لطفاً صبر کنید" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "نصب بارگذارآغازگر در پیشروی است" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -46,12 +46,12 @@ msgstr "" "\n" "شناسهی جدید حجم گذارده شود؟ " -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "نصب بارگذار آغازگر شکست خورد. خطای بدنبال آمده رخ داد:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -70,7 +70,7 @@ msgstr "" " سپس تایپ کنید: shut-down\n" "در آغازگری بعدی بایستی اعلان بارگذار آغازگر را مشاهده کنید." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -85,269 +85,269 @@ msgstr "" "\n" "شما از روی کدام دستگاه آغازگری میکنید؟" -#: any.pm:341 +#: any.pm:340 #, fuzzy, c-format msgid "Bootloader Installation" msgstr "نصب بارگذارآغازگر در پیشروی است" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "کجا میخواهید بارگذارآغازگر را نصب کنید؟" -#: any.pm:369 +#: any.pm:368 #, fuzzy, c-format msgid "First sector (MBR) of drive %s" msgstr "اولین بند گرداننده (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "اولین بند گرداننده (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "اولین بند قسمتبندی ریشه" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "بر دیسکچه" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "پرش" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "پیکربندی سبک آغازگری" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "گزینههای اصلی بارگذارآغازگری" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "بارگذار آغازگر" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "بارگذارآغازگری برای استفاده" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "دستگاه آغازگری" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "تأخیر قبل از آغازگری تصویر پیشفرض" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "بکار انداختن ACPI" -#: any.pm:442 +#: any.pm:441 #, fuzzy, c-format msgid "Enable SMP" msgstr "بکار انداختن ACPI" -#: any.pm:443 +#: any.pm:442 #, fuzzy, c-format msgid "Enable APIC" msgstr "بکار انداختن ACPI" -#: any.pm:445 +#: any.pm:444 #, fuzzy, c-format msgid "Enable Local APIC" msgstr "بکار انداختن ACPI" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "امنیت" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "گذرواژه" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "گذرواژهها مطابقت نمیکنند" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "لطفاً دوباره امتحان کنید" -#: any.pm:452 +#: any.pm:451 #, fuzzy, c-format msgid "You cannot use a password with %s" msgstr "" "نمیتوانید از سیستم پروندهی رمزگذاری شده برای نقطه سوارسازی %s استفاده کنید" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "گذرواژه (دوباره)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "پاک کردن شاخهی /tmp در هر آغازگری" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "پیغام init" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "تأخیر Firmware متن باز" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "مدت انتظار آغازگری هسته" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "بکار انداختن آغازگری سیدی؟" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "بکار انداختن آغازگری OF؟" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "سیستمعامل پیشفرض؟" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "تصویر" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "ریشه" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "پیوست به انتها" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "حالت ویدیوئی" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "نمایهی شبکه" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "برچسب" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "پیشفرض" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "بدون ویدیو" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "برچسب خالی اجازه داده نمیشود" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "تصویر هستهایی را باید مشخص کنید" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "قسمتبندی ریشهایی را باید مشخص کنید" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "این جدول از قبل مورد استفاده است" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "چه نوع از ورودیی را میخواهید اضافه کنید؟" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "لینوکس" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "سیستم عامل دیگر (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "سیستم عامل دیگر (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "سیستم عامل دیگر (ویندوز...)" -#: any.pm:656 +#: any.pm:655 #, fuzzy, c-format msgid "Bootloader Configuration" msgstr "پیکربندی سبک آغازگری" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -356,196 +356,196 @@ msgstr "" "اینها فعلاً ورودیهای منوی آغازگری شما هستند.\n" "میتوانید ورودیهای بیشتری را ایجاد کرده یا ورودیهای موجود را تغییر دهید." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "دستیابی به برنامههای X" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "دستیابی به ابزارهای rpm" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "اجازه دادن به \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "دستیابی به پروندههای مدیریت" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "دستیابی به ابزارهای شبکه" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "دستیابی به ابزارهای کمپایل کردن" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(%s از قبل اضافه شده است)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "لطفاً نام کاربریی را بدهید" -#: any.pm:886 +#: any.pm:885 #, fuzzy, c-format msgid "" "The user name must start with a lower case letter followed by only lower " "cased letters, numbers, `-' and `_'" msgstr "نام کاربر باید فقط دارای حروف کوچک، `-' و `_' باشد" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "نام کاربر بسیار طولانی است" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "این نام کاربر از قبل اضافه شده است" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "شناسهی کاربر" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "شناسهی گروه" -#: any.pm:895 +#: any.pm:894 #, fuzzy, c-format msgid "%s must be a number" msgstr "گزینهی %s باید یک عدد باشد!" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "" -#: any.pm:900 +#: any.pm:899 #, fuzzy, c-format msgid "User management" msgstr "نامکاربر" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "تعیین گذرواژهی مدیر" -#: any.pm:912 +#: any.pm:911 #, fuzzy, c-format msgid "Enter a user" msgstr "" "کاربری را وارد کنید\n" "%s" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "شمایل" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "نام واقعی" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "نام ثبتورود" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "پوسته" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "لطفا صبر کنید، در حال افزودن رسانه..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "ثبتورود خودکار" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "میتوانم رایانهاتان را برای ثبتورود خودکار یک کاربر برپاسازی کنم." -#: any.pm:1006 +#: any.pm:1005 #, fuzzy, c-format msgid "Use this feature" msgstr "آیا میخواهید از این قابلیت استفاده کنید؟" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "انتخاب کردن کاربر پیشفرض:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "انتخاب کردن مدیر پنجرهی برای اجرا:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "یادداشتهای پخش" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "بستن" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "توافقنامهی مجوز" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "ترک" -#: any.pm:1102 +#: any.pm:1101 #, fuzzy, c-format msgid "Do you accept this license ?" msgstr "یکی دیگر دارید؟" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "پذیرش" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "امتناع" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "لطفاً زبان برای استفاده را انتخاب کنید" -#: any.pm:1157 +#: any.pm:1156 #, fuzzy, c-format msgid "" "%s can support multiple languages. Select\n" @@ -556,82 +556,82 @@ msgstr "" "را که میخواهید نصب کنید انتخاب نمایید. آنها وقتی نصب شما تکمیل \n" "شود و شما سیستم خود را راهاندازی مجدد کنید قابل دسترسی میباشند." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "" -#: any.pm:1160 +#: any.pm:1159 #, fuzzy, c-format msgid "Multiple languages" msgstr "همهی زبانها" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "" -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "همهی زبانها" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "گزینش زبان" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "کشور / منطقه" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "لطفاً کشور خود را انتخاب کنید" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "این لیست کامل کشورهای در دسترس میباشد" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "کشورهای دیگر" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "پیشرفته" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "روش درونداد:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "هيچکدام" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "بدون اشتراک" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "اجازه دادن به تمام کاربرها" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "سفارشی" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -646,7 +646,7 @@ msgstr "" "\n" "\"سفارشی\" اجازهی هر-کاربر تکی را میدهد.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -654,7 +654,7 @@ msgid "" msgstr "" "NFS: سیستم سنتی اشتراک پرونده یونیکس، با پشتیبانی کمتر بر Mac و ویندوز." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -663,7 +663,7 @@ msgstr "" "SMB: سیستم اشتراک پرونده که بوسیله ویندوز، Mac OS X و بسیاری از سیستمهای " "مدرن لینوکس استفاده میگردد." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." @@ -671,12 +671,12 @@ msgstr "" "میتوانید با استفاده از NFS یا SMB صادر کنید. لطفاً آن را که میخواهید استفاده " "کنید را انتخاب کنید." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "راهاندازی userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -685,54 +685,54 @@ msgstr "" "اشتراک هر-کاربر از گروه \"fileshare\" استفاده میکند. \n" "برای افزودن کاربری به این گروه میتوانید از userdrake استفاده کنید." -#: any.pm:1504 +#: any.pm:1503 #, fuzzy, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "باید ثبت خروج کرده و باز برگردید برای اینکه تغییرات تأثیر کنند" -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "باید ثبت خروج کرده و باز برگردید برای اینکه تغییرات تأثیر کنند" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "زمان منطقهای" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "منطقهی زمانی شما کدام است؟" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "" -#: any.pm:1573 +#: any.pm:1572 #, fuzzy, c-format msgid "%s (hardware clock set to UTC)" msgstr "گذاردن ساعت سختافزار به GMT" -#: any.pm:1574 +#: any.pm:1573 #, fuzzy, c-format msgid "%s (hardware clock set to local time)" msgstr "گذاردن ساعت سختافزار به GMT" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "کارگزار NTP" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "همگاهسازی خودکار زمان (با استفاده از NTP)" @@ -1065,7 +1065,7 @@ msgstr "گذرواژهی مدیریت دامنه" # this text MUST be in ASCII! it has to be rewritten in ascii-transliteration # of Farsi (or left in english) #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1080,42 +1080,42 @@ msgstr "" "wait for default boot.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO با منوی متنی" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "فضای کافی در شاخهی /boot وجود ندارد" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "نمیتوانید بارگذارآغازگر را بر یک قسمتبندی %s نصب کنید\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1124,7 +1124,7 @@ msgstr "" "پیکربندی بارگذار آغازگر باید بروزسازی شود برای اینکه قسمتبندی شمارهگذاری " "مجدد گردیده است" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1133,7 +1133,7 @@ msgstr "" "بارگذار آغازگر نمیتواند بدرستی نصب گردد. شما باید با گزینهی نجات آغازگری " "کرده و \"%s\" را انتخاب کنید" -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "نصب-مجدد بارگذار آغازگر" @@ -1252,7 +1252,7 @@ msgstr "انجام شد" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1276,7 +1276,7 @@ msgstr "نشانی اینترنتی باید با http:// یا https:// شروع #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "هشدار" @@ -2312,7 +2312,7 @@ msgstr "جستجوی کارگزارهای جدید" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "بستهی %s لازم است نصب شود. آیا میخواهید آن را نصب کنید؟" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "بستهی %s نتوانست نصب گردد!" @@ -2322,17 +2322,17 @@ msgstr "بستهی %s نتوانست نصب گردد!" msgid "Mandatory package %s is missing" msgstr "بستهی ضروری %s حضور ندارد" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "بستههای بدنبال آمده لازم است نصب شوند:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "نصب بستهها..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "حذف بستهها..." @@ -4775,7 +4775,7 @@ msgstr "زامبیا" msgid "Zimbabwe" msgstr "زیمبابوه" -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "به %s خوش آمدید" @@ -4801,7 +4801,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4814,8 +4814,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "معرفی\n" "\n" @@ -4824,7 +4823,8 @@ msgstr "" "یک مجموعه از نرمافزارها، روشها، قواعد و نوشتارهای مربوط به سیستم عامل\n" "و اجزای مختلف پخش لینوکس ماندریبا میباشد." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4859,7 +4859,8 @@ msgstr "" "این مجوز پایان میبخشد. با باطل شدن مجوز، باید بیدرنگ تمام کپیهای\n" "محصولات نرمافزاری را نابود کنید." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -4930,7 +4931,8 @@ msgstr "" "در\n" "محصولات نرمافزاری وجود دارند میباشد." - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -4964,10 +4966,10 @@ msgstr "" "نرمافزار بایستی به نویسندهی آن نرمافزار ونه به ماندریبا فرستاده شوند. " "برنامههای تهیه شده بوسیله \n" "ماندریبا توسط مجوز GPL اداره میشوند. نوشتارهای نوشته شده توسط Mageia تحت \n" -"مجوز مخصوص اداره میشوند. لطفاً به این نوشتارها برای توضیحات بیشتر مراجعه " -"کنید." - +"مجوز مخصوص اداره میشوند. لطفاً به این نوشتارها برای توضیحات بیشتر مراجعه کنید." +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -4986,10 +4988,10 @@ msgstr "" "مالکیت نبوغی و قوانین حق امتیاز برنامههای نرمافزاری حفاظت میشوند. \n" "شرکت Mageiaحقوق امتیازی خود را برای تغییر یا وفق دادن محصولات نرمافزاری \n" "بطور کامل یا قسمتهایی از آنها، در هر صورت و برای هر منظور محفوظ میدارد. \n" -"\"Mageia\" و علائم مربوطه آرمهای بازرگانی Mandriva S.A. می " -"باشند." - +"\"Mageia\" و علائم مربوطه آرمهای بازرگانی Mandriva S.A. می باشند." +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5018,8 +5020,7 @@ msgstr "" "مرحله، اختلاف به دادسرای قانون پاریس - فرانسه ارجاع داده خواهد شد. \n" "برای هر سؤالی درباره این نوشتار لطفاً با Mageia تماس بگیرید." - -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5037,7 +5038,7 @@ msgstr "" "نیستید به قوانین محل اقامت خود مراجعه کنید." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po index b13e701ee..b0c2252f3 100644 --- a/perl-install/share/po/fi.po +++ b/perl-install/share/po/fi.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: libDrakX-fi\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2011-08-08 22:43+0300\n" "Last-Translator: Jani Välimaa <wally@mageia.org>\n" "Language-Team: Finnish <mageia-i18n@mageia.org>\n" @@ -26,21 +26,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Odota hetki" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Käyttöjärjestelmän lataimen asennus käynnissä" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -58,12 +58,12 @@ msgstr "" "\n" "Määritetäänkö uusi Volume ID?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "Käynnistyslataimen asennus epäonnistui. Tapahtui seuraava virhe:" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -81,7 +81,7 @@ msgstr "" " shut-down\n" "Seuraavalla käynnistyskerralla käynnistyslataimen pitäisi näkyä." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -96,268 +96,268 @@ msgstr "" "\n" "Miltä kiintolevyltä käynnistys tapahtuu?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Käynnistyslataimen asennus" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Minne käyttöjärjestelmän latain asennetaan?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Kiintolevyn %s käynnistyssektorille (MBR)" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Kiintolevyn käynnistyssektorille (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Juuriosion ensimmäiselle sektorille" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Levykkeelle" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Ohita" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Käynnistystavan asetukset" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Käynnistyslataimen asetukset" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Käynnistyslatain" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Käytettävä käynnistyslatain" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Käynnistyslaite" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Asetukset" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Viive ennen oletusjärjestelmän käynnistystä" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Ota ACPI käyttöön" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Ota moniprosessorituki käyttöön" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Ota APIC käyttöön" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Ota paikallinen APIC käyttöön" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Tietoturva" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Salasana" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Salasanat eivät täsmää" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Yritä uudelleen" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Et voi käyttää salasanaa %s kanssa" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Salasana (uudelleen)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Tyhjennä /tmp jokaisella käynnistyskerralla" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Käynnistysviesti" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Open Firmware -viive" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Ytimen käynnistämisen aikakatkaisu" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Ota käynnistäminen CD/DVD-levyltä käyttöön?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Ota Open Firmware -käynnistäminen käyttöön?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Oletuskäyttöjärjestelmä?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Kuva" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Juuri" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Lisäys" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Xen-lisäys" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "Käynnistys vaati salasanan" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Näyttötila" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Initrd" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Verkkoprofiili" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Nimi" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Oletus" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "Ei näyttöä" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Tyhjää nimiä ei sallita" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Sinun täytyy määritellä ydin" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Sinun täytyy määritellä juuriosio" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Nimi on jo käytössä" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Minkä tyyppisen tietueen haluat lisätä?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Muu käyttöjärjestelmä (SunOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Muu käyttöjärjestelmä (MacOS...)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Muu käyttöjärjestelmä (Windows...)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Käynnistyslataimen asetukset" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -366,47 +366,47 @@ msgstr "" "Tämän hetkiset käynnistysvalikon tietueet.\n" "Voit lisätä uusia tai muuttaa olemassa olevia." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "Oikeudet X-ohjelmiin" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "Oikeudet RPM-työkaluihin" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "Salli \"su\"" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "Oikeudet ylläpidollisiin tiedostoihin" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "Oikeudet verkkotyökaluihin" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "Oikeudet ohjelmointityökaluihin" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "(lisätty jo: %s)" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Anna käyttäjätunnus" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -414,148 +414,148 @@ msgid "" msgstr "" "Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita ja merkit - ja _" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Käyttäjätunnus on liian pitkä" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Käyttäjätunnus on jo olemassa" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Käyttäjän tunnistenumero (UID)" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Ryhmän tunnistenumero (GID)" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "%s pitää olla luku" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s pitäisi olla suurempi kuin 500. Jatka silti?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Käyttäjien hallinta" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "Aktivoi vierastili" # Asennuksen sivuvalikko -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Aseta pääkäyttäjän (root) salasana" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Lisää käyttäjä" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Kuvake" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Oikea nimi" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Käyttäjätunnus" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Komentotulkki" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Odota, lisätään lähteitä..." -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Automaattinen kirjautuminen" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "Yksi käyttäjä voidaan asettaa kirjautumaan sisään automaattisesti." -#: any.pm:1006 +#: any.pm:1005 #, c-format msgid "Use this feature" msgstr "Käytä automaattista kirjautumista" -#: any.pm:1007 +#: any.pm:1006 #, c-format msgid "Choose the default user:" msgstr "Valitse oletuskäyttäjä:" -#: any.pm:1008 +#: any.pm:1007 #, c-format msgid "Choose the window manager to run:" msgstr "Valitse käytettävä ikkunointijärjestelmä:" -#: any.pm:1019 any.pm:1039 any.pm:1107 +#: any.pm:1018 any.pm:1038 any.pm:1106 #, c-format msgid "Release Notes" msgstr "Julkaisutiedote" -#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817 +#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817 #, c-format msgid "Close" msgstr "Sulje" -#: any.pm:1093 +#: any.pm:1092 #, c-format msgid "License agreement" msgstr "Käyttöoikeussopimus" -#: any.pm:1095 diskdrake/dav.pm:26 +#: any.pm:1094 diskdrake/dav.pm:26 #, c-format msgid "Quit" msgstr "Lopeta" -#: any.pm:1102 +#: any.pm:1101 #, c-format msgid "Do you accept this license ?" msgstr "Hyväksy käyttöoikeussopimus?" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Accept" msgstr "Hyväksy" -#: any.pm:1103 +#: any.pm:1102 #, c-format msgid "Refuse" msgstr "Kieltäydy" -#: any.pm:1129 any.pm:1191 +#: any.pm:1128 any.pm:1190 #, c-format msgid "Please choose a language to use" msgstr "Valitse käytettävä kieli" -#: any.pm:1157 +#: any.pm:1156 #, c-format msgid "" "%s can support multiple languages. Select\n" @@ -566,84 +566,84 @@ msgstr "" "kielet. Kielet ovat käytettävissä asennuksen ja koneen\n" "uudelleenkäynnistämisen jälkeen." -#: any.pm:1159 fs/partitioning_wizard.pm:174 +#: any.pm:1158 fs/partitioning_wizard.pm:174 #, c-format msgid "Mageia" msgstr "Mageia" -#: any.pm:1160 +#: any.pm:1159 #, c-format msgid "Multiple languages" msgstr "Asenna useita kieliä" -#: any.pm:1169 any.pm:1200 +#: any.pm:1168 any.pm:1199 #, c-format msgid "Old compatibility (non UTF-8) encoding" msgstr "Vanhempi ei-UTF-8-merkistö" # Asennuksen sivuvalikko -#: any.pm:1170 +#: any.pm:1169 #, c-format msgid "All languages" msgstr "Kaikki kielet" -#: any.pm:1192 +#: any.pm:1191 #, c-format msgid "Language choice" msgstr "Kielivalinta" -#: any.pm:1246 +#: any.pm:1245 #, c-format msgid "Country / Region" msgstr "Maa / alue" -#: any.pm:1247 +#: any.pm:1246 #, c-format msgid "Please choose your country" msgstr "Valitse maa, jossa olet" -#: any.pm:1249 +#: any.pm:1248 #, c-format msgid "Here is the full list of available countries" msgstr "Lista kaikista käytettävissä olevista maista" -#: any.pm:1250 +#: any.pm:1249 #, c-format msgid "Other Countries" msgstr "Muut maat" -#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445 +#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445 #, c-format msgid "Advanced" msgstr "Lisäasetukset" -#: any.pm:1256 +#: any.pm:1255 #, c-format msgid "Input method:" msgstr "Syöttömenetelmä:" -#: any.pm:1259 +#: any.pm:1258 #, c-format msgid "None" msgstr "Ei mitään" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "No sharing" msgstr "Ei jaettu" # Asennuksen sivuvalikko -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Allow all users" msgstr "Salli kaikille käyttäjille" -#: any.pm:1340 +#: any.pm:1339 #, c-format msgid "Custom" msgstr "Mukautettu" -#: any.pm:1344 +#: any.pm:1343 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" @@ -658,7 +658,7 @@ msgstr "" "\n" "\"Mukautettu\" sallii käyttäjäkohtaiset oikeudet.\n" -#: any.pm:1356 +#: any.pm:1355 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " @@ -667,7 +667,7 @@ msgstr "" "NFS: perinteinen Unix-tiedostonjakojärjestelmä, jota Mac ja Windows tukevat " "huonosti." -#: any.pm:1359 +#: any.pm:1358 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " @@ -676,7 +676,7 @@ msgstr "" "SMB: tiedostonjakojärjestelmä, jota käyttävät Windows, Mac OS X ja monet " "nykyaikaiset Linux-järjestelmät." -#: any.pm:1367 +#: any.pm:1366 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." @@ -684,12 +684,12 @@ msgstr "" "Tiedostoja voidaan jakaa sekä NFS:llä että Samballa. Valitse kumpaa " "käytetään." -#: any.pm:1395 +#: any.pm:1394 #, c-format msgid "Launch userdrake" msgstr "Käynnistä Userdrake" -#: any.pm:1397 +#: any.pm:1396 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" @@ -698,7 +698,7 @@ msgstr "" "Käyttäjäkohtainen jako käyttää ryhmää \"fileshare\".\n" "Käyttäjä voidaan lisätä ryhmään Userdrake:n avulla." -#: any.pm:1504 +#: any.pm:1503 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " @@ -707,47 +707,47 @@ msgstr "" "Muutosten ottaminen käyttöön vaatii uloskirjautumisen. Valitse OK " "kirjautuaksesi ulos." -#: any.pm:1508 +#: any.pm:1507 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "Muutosten ottaminen käyttöön vaatii uloskirjautumisen." -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Timezone" msgstr "Aikavyöhyke" -#: any.pm:1543 +#: any.pm:1542 #, c-format msgid "Which is your timezone?" msgstr "Valitse järjestelmän aikavyöhyke" -#: any.pm:1566 any.pm:1568 +#: any.pm:1565 any.pm:1567 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Päivämäärän, kellonajan ja aikavyöhykkeen asetukset" -#: any.pm:1569 +#: any.pm:1568 #, c-format msgid "What is the best time?" msgstr "Valitse aika, joka on lähimpänä oikeata aikaa" -#: any.pm:1573 +#: any.pm:1572 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (laitteistokello UTC-ajassa)" -#: any.pm:1574 +#: any.pm:1573 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (laitteistokello paikallisessa ajassa)" -#: any.pm:1576 +#: any.pm:1575 #, c-format msgid "NTP Server" msgstr "NTP-palvelin" -#: any.pm:1577 +#: any.pm:1576 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Automaattinen kellon tahdistus NTP:n avulla" @@ -1099,7 +1099,7 @@ msgstr "Toimialueen pääkäyttäjän salasana" # leave it in English, as it is the best for your language) # #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) -#: bootloader.pm:978 +#: bootloader.pm:991 #, c-format msgid "" "Welcome to the operating system chooser!\n" @@ -1114,42 +1114,42 @@ msgstr "" "odota oletuskaynnistysta.\n" "\n" -#: bootloader.pm:1156 +#: bootloader.pm:1169 #, c-format msgid "LILO with text menu" msgstr "LILO tekstipohjaisella valikolla" -#: bootloader.pm:1157 +#: bootloader.pm:1170 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB graafisella valikolla" -#: bootloader.pm:1158 +#: bootloader.pm:1171 #, c-format msgid "GRUB with text menu" msgstr "GRUB tekstipohjaisella valikolla" -#: bootloader.pm:1159 +#: bootloader.pm:1172 #, c-format msgid "Yaboot" msgstr "Yaboot" -#: bootloader.pm:1160 +#: bootloader.pm:1173 #, c-format msgid "SILO" msgstr "SILO" -#: bootloader.pm:1244 +#: bootloader.pm:1257 #, c-format msgid "not enough room in /boot" msgstr "/boot-osiolla tai -hakemistossa ei ole tarpeeksi vapaata tilaa" -#: bootloader.pm:1970 +#: bootloader.pm:1983 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Käyttöjärjestelmän lataajaa ei voida asentaa osiolle %s\n" -#: bootloader.pm:2091 +#: bootloader.pm:2104 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " @@ -1158,7 +1158,7 @@ msgstr "" "Käynnistyslataimen asetukset pitää päivittää, koska levyosiot on numeroitu " "uudelleen" -#: bootloader.pm:2104 +#: bootloader.pm:2117 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " @@ -1168,7 +1168,7 @@ msgstr "" "rescue-tilaan ja valita \"%s\"" # Asennuksen sivuvalikko -#: bootloader.pm:2105 +#: bootloader.pm:2118 #, c-format msgid "Re-install Boot Loader" msgstr "Asenna käynnistyslatain uudelleen" @@ -1286,7 +1286,7 @@ msgstr "Valmis" #: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 #: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 #: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 -#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 +#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 #: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 #: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122 @@ -1310,7 +1310,7 @@ msgstr "Osoitteen tulee alkaa etuliitteellä http:// tai https://" #: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 #: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 #: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 -#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399 +#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399 #, c-format msgid "Warning" msgstr "Varoitus" @@ -2361,7 +2361,7 @@ msgstr "Etsi uudet palvelimet" msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Paketti %s pitää asentaa. Asennetaanko se?" -#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82 +#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83 #, c-format msgid "Could not install the %s package!" msgstr "Pakettia %s ei voitu asentaa!" @@ -2371,17 +2371,17 @@ msgstr "Pakettia %s ei voitu asentaa!" msgid "Mandatory package %s is missing" msgstr "Pakollinen paketti %s puuttuu" -#: do_pkgs.pm:39 do_pkgs.pm:77 +#: do_pkgs.pm:39 do_pkgs.pm:78 #, c-format msgid "The following packages need to be installed:\n" msgstr "Seuraavat paketit pitää asentaa:\n" -#: do_pkgs.pm:241 +#: do_pkgs.pm:242 #, c-format msgid "Installing packages..." msgstr "Asennetaan paketteja..." -#: do_pkgs.pm:286 pkgs.pm:285 +#: do_pkgs.pm:287 pkgs.pm:285 #, c-format msgid "Removing packages..." msgstr "Poistetaan paketteja..." @@ -4830,7 +4830,7 @@ msgid "Zimbabwe" msgstr "Zimbabwe" # mat -#: lang.pm:1227 +#: lang.pm:1191 #, c-format msgid "Welcome to %s" msgstr "Tervetuloa %s:n" @@ -4858,7 +4858,7 @@ msgstr "" "boot-osiota tai hakemistoa" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:11 +#: messages.pm:12 #, c-format msgid "" "Introduction\n" @@ -4871,8 +4871,7 @@ msgid "" "to the operating \n" "system and the different components of the Mageia distribution, and any " "applications \n" -"distributed with these products provided by Mageia's licensors or " -"suppliers." +"distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "Johdanto\n" "\n" @@ -4886,7 +4885,8 @@ msgstr "" "dokumentaation, jotka kuuluvat käyttöjärjestelmään sekä Mageia\n" "-jakeluun kuuluvat komponentit." - +#: messages.pm:21 +#, c-format msgid "" "1. License Agreement\n" "\n" @@ -4922,7 +4922,8 @@ msgstr "" "yritykset päättävät oikeutesi tämän Lisenssin alla välittömästi. Lisenssin\n" "päättyessä sinun pitää välittömästi tuhota kaikki Ohjelmiston kopiot." - +#: messages.pm:35 +#, c-format msgid "" "2. Limited Warranty\n" "\n" @@ -5001,7 +5002,8 @@ msgstr "" "tai rajoittaminen tahallisista tai tahottomista vahingoista, yllä oleva\n" "rajoitus voi olla soveltamaton sinulle. " - +#: messages.pm:61 +#, c-format msgid "" "3. The GPL License and Related Licenses\n" "\n" @@ -5038,7 +5040,8 @@ msgstr "" "dokumentaatioihin sovelletaan erillistä lisenssiä. Lue dokumentaatiota\n" "saadaksesi lisää tietoa." - +#: messages.pm:73 +#, c-format msgid "" "4. Intellectual Property Rights\n" "\n" @@ -5060,7 +5063,8 @@ msgstr "" "jokaiseen tarpeeseen. \"Mageia\" ja kaikki niihin\n" "liittyvät logot ovat Mageia:n rekisteröityjä tavaramerkkejä." - +#: messages.pm:82 +#, c-format msgid "" "5. Governing Laws \n" "\n" @@ -5205,7 +5209,7 @@ msgstr "" "be referred to the appropriate Courts of Law of Paris - France.\n" "For any question on this document, please contact Mageia" -#: messages.pm:93 +#: messages.pm:95 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" @@ -5232,7 +5236,7 @@ msgstr "" "may be applicable to you, check your local laws." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX -#: messages.pm:102 +#: messages.pm:104 #, c-format msgid "" "Congratulations, installation is complete.\n" diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po index c4a16513a..2e2219560 100644 --- a/perl-install/share/po/fr.po +++ b/perl-install/share/po/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: drakx_share\n" -"POT-Creation-Date: 2012-07-29 11:51+0300\n" +"POT-Creation-Date: 2012-09-14 13:51+0200\n" "PO-Revision-Date: 2012-09-14 11:37+0200\n" "Last-Translator: Oliver Burger <oliver.bgr@googlemail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -15,21 +15,21 @@ msgstr "" "Content-Transfer-Encoding: 8-bit\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 +#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 #: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 #: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 -#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 +#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 #: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285 #, c-format msgid "Please wait" msgstr "Veuillez patienter" -#: any.pm:262 +#: any.pm:261 #, c-format msgid "Bootloader installation in progress" msgstr "Installation du programme d'amorçage en cours" -#: any.pm:273 +#: any.pm:272 #, c-format msgid "" "LILO wants to assign a new Volume ID to drive %s. However, changing\n" @@ -47,13 +47,13 @@ msgstr "" "\n" "Voulez-vous assigner un nouvel identifiant de volume ?" -#: any.pm:284 +#: any.pm:283 #, c-format msgid "Installation of bootloader failed. The following error occurred:" msgstr "" "L'installation du programme d'amorçage a échoué pour la raison suivante :" -#: any.pm:290 +#: any.pm:289 #, c-format msgid "" "You may need to change your Open Firmware boot-device to\n" @@ -73,7 +73,7 @@ msgstr "" "Au prochain démarrage vous devriez voir apparaître l'invite du\n" "programme d'amorçage." -#: any.pm:330 +#: any.pm:329 #, c-format msgid "" "You decided to install the bootloader on a partition.\n" @@ -88,268 +88,268 @@ msgstr "" "\n" "Sur quel disque amorcez vous ?" -#: any.pm:341 +#: any.pm:340 #, c-format msgid "Bootloader Installation" msgstr "Installation du programme d'amorçage" -#: any.pm:345 +#: any.pm:344 #, c-format msgid "Where do you want to install the bootloader?" msgstr "Où désirez-vous installer le programme d'amorçage ?" -#: any.pm:369 +#: any.pm:368 #, c-format msgid "First sector (MBR) of drive %s" msgstr "Premier secteur (MBR) du disque %s" -#: any.pm:371 +#: any.pm:370 #, c-format msgid "First sector of drive (MBR)" msgstr "Premier secteur du disque (MBR)" -#: any.pm:373 +#: any.pm:372 #, c-format msgid "First sector of the root partition" msgstr "Premier secteur de la partition racine" -#: any.pm:375 +#: any.pm:374 #, c-format msgid "On Floppy" msgstr "Sur disquette" -#: any.pm:377 pkgs.pm:281 ugtk2.pm:526 +#: any.pm:376 pkgs.pm:281 ugtk2.pm:526 #, c-format msgid "Skip" msgstr "Passer" -#: any.pm:412 +#: any.pm:411 #, c-format msgid "Boot Style Configuration" msgstr "Configuration du style de démarrage" -#: any.pm:428 any.pm:461 any.pm:462 +#: any.pm:427 any.pm:460 any.pm:461 #, c-format msgid "Bootloader main options" msgstr "Principales options du programme d'amorçage" -#: any.pm:432 +#: any.pm:431 #, c-format msgid "Bootloader" msgstr "Programme d'amorçage" -#: any.pm:433 any.pm:465 +#: any.pm:432 any.pm:464 #, c-format msgid "Bootloader to use" msgstr "Programme d'amorçage à utiliser" -#: any.pm:436 any.pm:468 +#: any.pm:435 any.pm:467 #, c-format msgid "Boot device" msgstr "Périphérique d'amorçage" -#: any.pm:439 +#: any.pm:438 #, c-format msgid "Main options" msgstr "Options principales" -#: any.pm:440 +#: any.pm:439 #, c-format msgid "Delay before booting default image" msgstr "Délai avant l'activation du choix par défaut" -#: any.pm:441 +#: any.pm:440 #, c-format msgid "Enable ACPI" msgstr "Activer l'ACPI" -#: any.pm:442 +#: any.pm:441 #, c-format msgid "Enable SMP" msgstr "Activer le SMP" -#: any.pm:443 +#: any.pm:442 #, c-format msgid "Enable APIC" msgstr "Activer l'APIC" -#: any.pm:445 +#: any.pm:444 #, c-format msgid "Enable Local APIC" msgstr "Activer l'APIC local" -#: any.pm:446 security/level.pm:63 +#: any.pm:445 security/level.pm:63 #, c-format msgid "Security" msgstr "Sécurité" -#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 +#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 #: diskdrake/smbnfs_gtk.pm:181 #, c-format msgid "Password" msgstr "Mot de passe" -#: any.pm:450 authentication.pm:260 +#: any.pm:449 authentication.pm:260 #, c-format msgid "The passwords do not match" msgstr "Les mots de passe ne sont pas identiques" -#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499 +#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499 #, c-format msgid "Please try again" msgstr "Veuillez réessayer" -#: any.pm:452 +#: any.pm:451 #, c-format msgid "You cannot use a password with %s" msgstr "Vous ne pouvez pas utiliser de mot de passe avec %s" -#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250 +#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250 #, c-format msgid "Password (again)" msgstr "Mot de passe (vérification)" -#: any.pm:457 +#: any.pm:456 #, c-format msgid "Clean /tmp at each boot" msgstr "Vider le dossier /tmp à chaque démarrage" -#: any.pm:467 +#: any.pm:466 #, c-format msgid "Init Message" msgstr "Message de démarrage" -#: any.pm:469 +#: any.pm:468 #, c-format msgid "Open Firmware Delay" msgstr "Délai de l'Open Firmware" -#: any.pm:470 +#: any.pm:469 #, c-format msgid "Kernel Boot Timeout" msgstr "Délai d'amorçage du noyau" -#: any.pm:471 +#: any.pm:470 #, c-format msgid "Enable CD Boot?" msgstr "Autoriser le démarrage sur CD-ROM ?" -#: any.pm:472 +#: any.pm:471 #, c-format msgid "Enable OF Boot?" msgstr "Autoriser le démarrage sur l'OF ?" -#: any.pm:473 +#: any.pm:472 #, c-format msgid "Default OS?" msgstr "Système d'exploitation par défaut ?" -#: any.pm:547 +#: any.pm:546 #, c-format msgid "Image" msgstr "Image" -#: any.pm:548 any.pm:562 +#: any.pm:547 any.pm:561 #, c-format msgid "Root" msgstr "Partition racine" -#: any.pm:549 any.pm:575 +#: any.pm:548 any.pm:574 #, c-format msgid "Append" msgstr "Options passées au noyau" -#: any.pm:551 +#: any.pm:550 #, c-format msgid "Xen append" msgstr "Options Xen passées au noyau" -#: any.pm:553 +#: any.pm:552 #, c-format msgid "Requires password to boot" msgstr "Nécessite un mot de passe pour le démarrage" -#: any.pm:555 +#: any.pm:554 #, c-format msgid "Video mode" msgstr "Mode vidéo" -#: any.pm:557 +#: any.pm:556 #, c-format msgid "Initrd" msgstr "Fichier RamDisk" -#: any.pm:558 +#: any.pm:557 #, c-format msgid "Network profile" msgstr "Profil réseau" -#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411 +#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411 #, c-format msgid "Label" msgstr "Label" -#: any.pm:569 any.pm:577 harddrake/v4l.pm:438 +#: any.pm:568 any.pm:576 harddrake/v4l.pm:438 #, c-format msgid "Default" msgstr "Choix par défaut" -#: any.pm:576 +#: any.pm:575 #, c-format msgid "NoVideo" msgstr "NoVideo" -#: any.pm:587 +#: any.pm:586 #, c-format msgid "Empty label not allowed" msgstr "Un label vide n'est pas autorisé" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a kernel image" msgstr "Vous devez spécifier l'image noyau désirée" -#: any.pm:588 +#: any.pm:587 #, c-format msgid "You must specify a root partition" msgstr "Vous devez spécifier une partition racine" -#: any.pm:589 +#: any.pm:588 #, c-format msgid "This label is already used" msgstr "Ce label est déjà utilisé" -#: any.pm:607 +#: any.pm:606 #, c-format msgid "Which type of entry do you want to add?" msgstr "Quel type de système souhaitez-vous ajouter ?" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Linux" msgstr "Linux" -#: any.pm:608 +#: any.pm:607 #, c-format msgid "Other OS (SunOS...)" msgstr "Autre système (SunOS, etc.)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (MacOS...)" msgstr "Autre système (MacOS, etc.)" -#: any.pm:609 +#: any.pm:608 #, c-format msgid "Other OS (Windows...)" msgstr "Autre système (Windows, etc.)" -#: any.pm:656 +#: any.pm:655 #, c-format msgid "Bootloader Configuration" msgstr "Configuration du programme d'amorçage" -#: any.pm:657 +#: any.pm:656 #, c-format msgid "" "Here are the entries on your boot menu so far.\n" @@ -358,47 +358,47 @@ msgstr "" "Voici les différentes entrées.\n" "Vous pouvez en ajouter de nouvelles ou modifier les entrées existantes." -#: any.pm:868 +#: any.pm:867 #, c-format msgid "access to X programs" msgstr "accès aux programmes graphiques" -#: any.pm:869 +#: any.pm:868 #, c-format msgid "access to rpm tools" msgstr "accès aux outils rpm" -#: any.pm:870 +#: any.pm:869 #, c-format msgid "allow \"su\"" msgstr "autoriser « su »" -#: any.pm:871 +#: any.pm:870 #, c-format msgid "access to administrative files" msgstr "accès aux fichiers d'administration" -#: any.pm:872 +#: any.pm:871 #, c-format msgid "access to network tools" msgstr "accès aux outils réseaux" -#: any.pm:873 +#: any.pm:872 #, c-format msgid "access to compilation tools" msgstr "accès aux outils de compilation" -#: any.pm:879 +#: any.pm:878 #, c-format msgid "(already added %s)" msgstr "Utilisateur(s) existant(s) : %s" -#: any.pm:885 +#: any.pm:884 #, c-format msgid "Please give a user name" msgstr "Veuillez taper un nom d'utilisateur" -#: any.pm:886 +#: any.pm:885 #, c-format msgid "" "The user name must start with a lower case letter followed by only lower " @@ -407,147 +407,147 @@ msgstr "" "Le nom d'utilisateur doit commencer par une minuscule suivie seulement de " "minuscules, de nombres, de « - » et « _ »" -#: any.pm:887 +#: any.pm:886 #, c-format msgid "The user name is too long" msgstr "Ce nom d'utilisateur est trop long" -#: any.pm:888 +#: any.pm:887 #, c-format msgid "This user name has already been added" msgstr "Ce nom d'utilisateur est déjà utilisé" -#: any.pm:894 any.pm:930 +#: any.pm:893 any.pm:929 #, c-format msgid "User ID" msgstr "Identifiant de l'utilisateur" -#: any.pm:894 any.pm:931 +#: any.pm:893 any.pm:930 #, c-format msgid "Group ID" msgstr "Identifiant du groupe" -#: any.pm:895 +#: any.pm:894 #, c-format msgid "%s must be a number" msgstr "%s doit être un nombre" -#: any.pm:896 +#: any.pm:895 #, c-format msgid "%s should be above 500. Accept anyway?" msgstr "%s devrait être supérieur ou égal à 500. Accepter quand même ?" -#: any.pm:900 +#: any.pm:899 #, c-format msgid "User management" msgstr "Gestion des utilisateurs" -#: any.pm:905 +#: any.pm:904 #, c-format msgid "Enable guest account" msgstr "Activer le compte Invité" -#: any.pm:906 authentication.pm:236 +#: any.pm:905 authentication.pm:236 #, c-format msgid "Set administrator (root) password" msgstr "Définissez le mot de passe administrateur (root)" -#: any.pm:912 +#: any.pm:911 #, c-format msgid "Enter a user" msgstr "Tapez un nom d'utilisateur" -#: any.pm:914 +#: any.pm:913 #, c-format msgid "Icon" msgstr "Icône" -#: any.pm:917 +#: any.pm:916 #, c-format msgid "Real name" msgstr "Nom et prénom" -#: any.pm:924 +#: any.pm:923 #, c-format msgid "Login name" msgstr "Identifiant de connexion" -#: any.pm:929 +#: any.pm:928 #, c-format msgid "Shell" msgstr "Interpréteur" -#: any.pm:972 +#: any.pm:971 #, c-format msgid "Please wait, adding media..." msgstr "Veuillez patienter, ajout du média…" -#: any.pm:1004 security/l10n.pm:14 +#: any.pm:1003 security/l10n.pm:14 #, c-format msgid "Autologin" msgstr "Connexion automatique" -#: any.pm:1005 +#: any.pm:1004 #, c-format msgid "I can set up your computer to automatically log on one user." msgstr "Connexion automatique d'un utilisateur au démarrage." -#: any.pm:1006 +#: any.pm:1005 #, c-format |