diff options
Diffstat (limited to 'perl-install/install/share')
100 files changed, 135973 insertions, 0 deletions
diff --git a/perl-install/install/share/aliases b/perl-install/install/share/aliases new file mode 100644 index 000000000..f58e6b9ca --- /dev/null +++ b/perl-install/install/share/aliases @@ -0,0 +1,11 @@ +/etc/ndiswrapper /mnt/etc/ndiswrapper +/sbin/loadndisdriver /mnt/sbin/loadndisdriver +/bin/gunzip gzip +/usr/bin/install2 ../lib/libDrakX/install/install2 +/usr/bin/commands ../lib/libDrakX/install/commands +/usr/bin/runinstall2 install2 +/sbin/fsck.ext2 e2fsck +/lib/modules /modules +/lib/firmware /firmware +/sbin/hotplug /hotplug +/usr/share/X11/xkb/compiled /tmp diff --git a/perl-install/install/share/consolefonts/Cyr_a8x16 b/perl-install/install/share/consolefonts/Cyr_a8x16 Binary files differnew file mode 100644 index 000000000..a09ac03d8 --- /dev/null +++ b/perl-install/install/share/consolefonts/Cyr_a8x16 diff --git a/perl-install/install/share/consolefonts/lat0-sun16 b/perl-install/install/share/consolefonts/lat0-sun16 Binary files differnew file mode 100644 index 000000000..19e3d432e --- /dev/null +++ b/perl-install/install/share/consolefonts/lat0-sun16 diff --git a/perl-install/install/share/consolefonts/lat2-sun16 b/perl-install/install/share/consolefonts/lat2-sun16 Binary files differnew file mode 100644 index 000000000..509e5def2 --- /dev/null +++ b/perl-install/install/share/consolefonts/lat2-sun16 diff --git a/perl-install/install/share/consolefonts/ruscii_8x16 b/perl-install/install/share/consolefonts/ruscii_8x16 Binary files differnew file mode 100644 index 000000000..b0513a9db --- /dev/null +++ b/perl-install/install/share/consolefonts/ruscii_8x16 diff --git a/perl-install/install/share/gdb-inst b/perl-install/install/share/gdb-inst new file mode 100644 index 000000000..8cd7d837e --- /dev/null +++ b/perl-install/install/share/gdb-inst @@ -0,0 +1,24 @@ +#!/bin/sh +cat <<EOF +You can now type "run" in order to start the installer from within the debugger. +If it segfaults, you can: +- go back to tty2 by pressing Alt+Ctlr+F2. +- type "gcore" in order to generate a core file +- type "exit" to go back to the shell. +- you can then: + o either plug a USB key to your physical/virtual machine and copy the + core.XXXX file on it + o copy it to /mnt if you already passed the partitionning step ; + you can later retrieve it from another OS (dual boot) or using guestfish if + it's a virtual machine + +On a real Mageia system, you can then install the needed debuginfo packages and +get a proper stack trace with GDB. You would probably need at least the +following packages: + urpmi {glibc,perl{,-Glib,-Gtk2},glib2.0,gtk+2.0}-debuginfo + + +WARNING: that keyboard is in QWERTY mode!!!! + +EOF +exec gdb -q --args perl /usr/bin/install2 diff --git a/perl-install/install/share/generate-xlocales b/perl-install/install/share/generate-xlocales new file mode 100755 index 000000000..60607af7b --- /dev/null +++ b/perl-install/install/share/generate-xlocales @@ -0,0 +1,67 @@ +#!/usr/bin/perl +# +# Copyright (C) 2006 Mandriva +# Pablo Saraxtaga <pablo@mandriva.com> +# Thierry Vignaud <thierry.vignaud.com> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +use strict; +use lib qw(..); # for lang +# perl_checker: use lib qw(/usr/lib/libDrakX/) +use MDK::Common; +use lang; + +my $prefix = $ARGV[0]; + +my $dir = "$prefix/usr/share/X11/locale"; +mkdir_p($dir); + +output("$dir/locale.alias", +qq(# automatically build list; only valid for install +# since gtk+-2 is used, which uses unicode internally, +# all locales to UTF-8 ones +), + sort(uniq((map { "$_:\t\t\ten_US.UTF-8\n" } lang::list_langs()), + (map { "$_:\t\t\ten_US.UTF-8\n" } (@lang::locales)), + qq(zh_CN.gb2312:\t\t\ten_US.UTF-8 +zh_CN.GB2312:\t\t\ten_US.UTF-8 +zh_CN.Big5:\t\t\ten_US.UTF-8 +), + ), + ), + ); + +output("$dir/locale.dir", + qq(# automatically build list ; only valid for install +C/XLC_LOCALE: C +en_US.UTF-8/XLC_LOCALE: UTF-8 +iso8859-1/XLC_LOCALE: ISO8859-1 +), + map { s/(.*_..)(\.[^@]*)*(\@.*)*$/${1}.UTF-8${3}/; "en_US.UTF-8/XLC_LOCALE: $_\n" } @lang::locales + ); + + +output("$dir/compose.dir", + qq(# list automatically build list ; only valid for install +C/Compose: C +en_US.UTF-8/Compose: UTF-8 +iso8859-1/Compose: ISO8859-1 +), + map { + s/(.*_..)(\.[^@]*)*(\@.*)*$/${1}.UTF-8${3}/; + "en_US.UTF-8/Compose: $_\n"; + } @lang::locales + ); diff --git a/perl-install/install/share/gtk.css b/perl-install/install/share/gtk.css new file mode 100644 index 000000000..3befe735c --- /dev/null +++ b/perl-install/install/share/gtk.css @@ -0,0 +1,7 @@ +/* CSD for windows: */ +window, .window-frame { + border-width: 1px; + border: solid 1px alpha(black, 0.75); + border-radius: 7px 7px 0 0; +} + diff --git a/perl-install/install/share/gtkrc b/perl-install/install/share/gtkrc new file mode 100644 index 000000000..6d4b2f48c --- /dev/null +++ b/perl-install/install/share/gtkrc @@ -0,0 +1 @@ +gtk-theme-name = "oxygen-gtk" diff --git a/perl-install/install/share/keymaps.tar.bz2 b/perl-install/install/share/keymaps.tar.bz2 Binary files differnew file mode 100644 index 000000000..c2fd4db57 --- /dev/null +++ b/perl-install/install/share/keymaps.tar.bz2 diff --git a/perl-install/install/share/keymaps_generate b/perl-install/install/share/keymaps_generate new file mode 100755 index 000000000..6a43556e5 --- /dev/null +++ b/perl-install/install/share/keymaps_generate @@ -0,0 +1,18 @@ +#!/usr/bin/perl + +use lib "/usr/lib/libDrakX"; +use keyboard; + +my $dir = "keymaps/usr/share/keymaps"; +system("rm -rf keymaps ; mkdir -p keymaps/usr/share/keymaps"); + +foreach (keyboard::keyboards()) { + my $kmap = keyboard::keyboard2kmap($_); + if (system("./kmap2bkmap $kmap > $dir/$kmap.bkmap") != 0) { + warn "unknown kmap $kmap\n"; + unlink "$dir/$kmap.bkmap"; + } +} + +system("tar cfj keymaps.tar.bz2 -C keymaps usr") == 0 or die; +system("rm -rf keymaps"); diff --git a/perl-install/install/share/kmap2bkmap b/perl-install/install/share/kmap2bkmap new file mode 100755 index 000000000..9870ef3ef --- /dev/null +++ b/perl-install/install/share/kmap2bkmap @@ -0,0 +1,42 @@ +#!/usr/bin/perl + +use lib "/usr/lib/libDrakX"; +use c; + +my $KMAP_MAGIC = 0x8B39C07F; + +BEGIN { @ARGV == 1 or die "usage: kmap2bkmap <keymap>\n" } + +# load unicode keymap +my $unimap = $ARGV[0] . ".uni"; +system("sudo loadkeys $unimap") == 0 or die; +open my $F, "dumpkeys -n -f |"; +<$F> =~ /^keymaps\s+(.*)/ or die; + +my @keymaps; +foreach (split ',', $1) { + my @l = /(\d+)-(\d+)/; + my ($i, $j) = @l ? @l : ($_,$_); + $keymaps[$_] = 1 foreach $i .. $j; +} + +print pack("I", $KMAP_MAGIC); +print map { pack "i", $keymaps[$_] || 0 } 0 .. c::MAX_NR_KEYMAPS()-1; + +my @L; +foreach (<$F>) { + s/\+0x/0x/g; + my ($keycode, $key, undef, @l) = split; + $keycode eq 'keycode' or next; + my $i = 0; + $L[$i++][$key] = hex $_ foreach @l; +} +close $F or die "dumpkeys failed"; + +foreach (@L) { + foreach my $i (0 .. c::NR_KEYS()-1) { + print pack "s", defined $_->[$i] ? $_->[$i] : 0x200; + } +} + +exit 0; diff --git a/perl-install/install/share/list.xml b/perl-install/install/share/list.xml new file mode 100644 index 000000000..3c1100d34 --- /dev/null +++ b/perl-install/install/share/list.xml @@ -0,0 +1,791 @@ +<list no-arch-libraries="on"> + +<from expand="binary"> + ash dash.static echo + aria2c cp curl md5sum wget <!-- needed by urpmi --> + rpm rpmdb <!-- needed to rebuild database --> + cpio gzip bzip2 xz + grub2-editenv + insmod modinfo rmmod modprobe lsmod + + <!-- block device tools --> + cryptsetup dmsetup + dmraid kpartx + fdisk + losetup + lvm2 lvm lvs pvs vgs mdadm mdmon + quotacheck + + <!-- virtualization integration --> + spice-vdagent spice-vdagentd + systemd-detect-virt + + udevadm <!-- needed by mouse::detect & stage2 --> + + <!-- FS tools --> + badblocks + mkswap swaplabel + mkfs.btrfs btrfs btrfsck fsck.btrfs btrfstune + mkfs.exfat tune.exfat + mkfs.ext2 mkfs.ext3 mkfs.ext4 e2fsck tune2fs dumpe2fs resize2fs + mkfs.f2fs fsck.f2fs resize.f2fs + mkfs.fat dosfslabel mlabel + mkfs.jfs fsck.jfs jfs_tune + mkfs.nilfs2 nilfs-tune nilfs-resize + mkfs.ntfs ntfsresize ntfslabel + mkfs.reiserfs resize_reiserfs reiserfstune + mkfs.xfs xfs_admin xfs_growfs + mount mount.nfs umount + xfs_freeze xfs_io <!-- needed for setup grub on XFS formated / --> + xfs_db <!-- needed by xfs_admin for setting UUID --> + + tty stty <!-- needed for text mode installer (through unicode_start) --> + + setfont kbd_mode + <mode copy="dereference"> + Xorg + </mode> + xset + xkbcomp setxkbmap + libinput + + scrot <!-- for screenshots --> + perl + monitor-edid + <if ARCH="i.86|x86_64"> + monitor-get-edid-using-vbe + </if> + monitor-parse-edid monitor-get-edid + + <filter subst="s!^echo!/bin/echo!"> + unicode_start + </filter> + + <if ARCH="i.86|x86_64"> + dmidecode + </if> + <if ARCH="ia64"> + efibootmgr + </if> + + <if set="DEBUG_INSTALL"> + strace bash less ps top gdb busybox cfdisk partprobe chroot grep vim-minimal rpm urpmi + </if> +</from> + +<!-- when adding udev rules, think whether they're needed in rescue too + (../../../rescue/list.xml) --> +<from dir="/lib/udev/rules.d"> + 10-dm.rules + 11-dm-lvm.rules + 13-dm-disk.rules + 50-udev-default.rules <!-- needed for input in X11 --> + 60-evdev.rules + 60-input-id.rules + 60-persistent-input.rules + 60-persistent-storage.rules + 60-sensor.rules + 61-x11-input.rules + 63-md-raid-arrays.rules + 64-md-raid-assembly.rules + 65-libwacom.rules + 70-mouse.rules + 70-spice-vdagentd.rules + 70-touchpad.rules + 70-uaccess.rules + 75-net-description.rules + 80-drivers.rules + 80-libinput-device-groups.rules + 80-net-setup-link.rules + 90-libinput-fuzz-override.rules + 95-dm-notify.rules +</from> +<from dir="/usr/lib/udev/hwdb.d"> + <from expand="glob"> + *.hwdb + </from> +</from> + +<from dir="/usr/libexec"> + Xorg + Xorg.wrap + <!-- needed by WebKit-4.1.typelib --> + webkit2gtk-4.1/WebKitNetworkProcess + webkit2gtk-4.1/WebKitWebProcess + <!-- glycin-loaders --> + glycin-loaders/2+/glycin-image-rs + glycin-loaders/2+/glycin-svg + <from expand="glob"> + libinput/libinput-* + </from> +</from> + +<from dir="/usr/LIB/imlib2/loaders"> <!-- for scrot/giblib --> + argb.so + jpeg.so + png.so + zlib.so +</from> + +<!-- needed by Gtk3 introspection --> +<from dir="/usr/LIB/girepository-1.0"> + Atk-1.0.typelib + cairo-1.0.typelib + freetype2-2.0.typelib <!-- needed by WebKit-4.1.typelib --> + Gdk-3.0.typelib + GdkPixbuf-2.0.typelib + GdkPixdata-2.0.typelib + GdkX11-3.0.typelib + Gio-2.0.typelib + GLib-2.0.typelib + GModule-2.0.typelib + GObject-2.0.typelib + Gtk-3.0.typelib + HarfBuzz-0.0.typelib <!-- needed by Pango-1.0.typelib --> + JavaScriptCore-4.1.typelib <!-- needed by WebKit-4.1.typelib --> + Pango-1.0.typelib + Soup-3.0.typelib <!-- needed by WebKit-4.1.typelib --> + WebKit2-4.1.typelib + xlib-2.0.typelib +</from> + +<from dir="/usr/LIB/xorg/modules"> + drivers/fbdev_drv.so + <if ARCH="i.86|x86_64"> + drivers/vesa_drv.so + libint10.so + </if> + input/libinput_drv.so + input/wacom_drv.so + libfbdevhw.so + libshadow.so +</from> + +<from dir="/usr/share/X11/xorg.conf.d"> + <from expand="glob"> + *.conf + </from> +</from> + +<!-- fix "No GSettings schemas are installed on the system" --> +<from dir="/usr/share/glib-2.0/schemas"> + <from expand="glob"> + gschema* + org.gnome.desktop.* + </from> +</from> + +<!-- keyboard layouts --> +<from dir="/usr/share/X11/xkb"> + <filter subst="s!//.*!!"> + geometry/pc + keycodes/aliases + keycodes/evdev + keycodes/xfree86 + rules/base + rules/base.lst + <from expand="glob"> + rules/evdev* + </from> + compat types + <from expand="glob"> + symbols/* + </from> + </filter> +</from> + +<from dir="/usr/share/fonts/"> + <to flatten="on"> + misc/cursor.pcf.gz + TTF/bengali/MuktiNarrow.ttf + TTF/dejavu/DejaVuSans.ttf + TTF/dejavu/DejaVuSans-Bold.ttf + TTF/dejavu/DejaVuSans-BoldOblique.ttf + TTF/devanagari/raghu.ttf + TTF/lohit/lohit_pa.ttf + TTF/thai/Norasi.ttf + TTF/wqy-microhei/wqy-microhei.ttc + </to> +</from> + +<from dir="/usr/share/icons/Adwaita/"> + index.theme + scalable/status/image-missing.svg + symbolic/actions/list-add-symbolic.svg + symbolic/actions/list-remove-symbolic.svg + symbolic/ui/pan-down-symbolic.svg + symbolic/ui/pan-end-symbolic-rtl.svg + symbolic/ui/pan-end-symbolic.svg + symbolic/ui/pan-start-symbolic-rtl.svg + symbolic/ui/pan-start-symbolic.svg + symbolic/ui/pan-up-symbolic.svg +</from> + +<!-- translations for modules used by drakx --> +<from dir="/usr/share/locale"> + <to dir="/usr/share/locale_special"> + <from expand="glob"> + */LC_MESSAGES/draksnapshot.mo + */LC_MESSAGES/drakx-net.mo + */LC_MESSAGES/drakx-kbd-mouse-x11.mo + */LC_MESSAGES/gtk30.mo + */LC_MESSAGES/urpmi.mo + </from> + </to> +</from> + +<from dir="/usr/share/X11/locale"> + C + en_US.UTF-8 + iso8859-1 +</from> + +<from dir="/usr/share/zoneinfo"> + zone.tab +</from> + +<filter command="strip"> +<from dir="/LIB"> + libnss_files.so.2 + libnss_dns.so.2 + libresolv.so.2 + ld-linux*.so.* + <!-- needed for mount.ntfs-3g --> + libfuse.so.2 + + <!-- needed by dmraid --> + libdmraid-events-isw.so + + <!-- mutter --> + <from expand="glob"> + mutter-*/plugins/libdefault.so + </from> + + <!-- needed fro Gtk3-WebKit2 --> + <from expand="glob"> + libwebkit2gtk-4.1.so.? + </from> + webkit2gtk-4.1/injected-bundle/libwebkit2gtkinjectedbundle.so +</from> +</filter> + +<from> + /etc/urpmi/prefer.vendor.list + /etc/mke2fs.conf + /etc/netconfig + /etc/fonts/ + /etc/passwd + /etc/protocols + + <from expand="glob"> + /usr/LIB/ntfs-3g/* + </from> + + <from expand="glob"> + /usr/share/icu/*/icudt*.dat + </from> + +<!-- /usr/share/X11/XKeysymDB --> + /usr/LIB/libgdk_pixbuf-2.0.so.0 + /usr/LIB/gtk-3.0/*/immodules/im-cedilla.so + /usr/share/mime/mime.cache + + /usr/lib/libDrakX/keyboard.pm + /usr/lib/libDrakX/mouse.pm + /usr/lib/libDrakX/network + /usr/lib/libDrakX/Xconfig + /usr/lib/libDrakX/auto/xf86misc + /usr/lib/libDrakX/xf86misc + <mode copy="keep-links"> + /usr/share/doc/installer-help/ + </mode> + /usr/share/libDrakX/pixmaps + + /usr/lib/rpm/rpmrc + <from expand="glob"> + /usr/lib/rpm/rpmpopt-* + </from> + /usr/lib/rpm/sysusers.sh + /usr/lib/rpm/mageia/macros + /usr/lib/rpm/macros + + <!-- glycin-loaders --> + /usr/share/glycin-loaders/2+/conf.d/glycin-image-rs.conf + /usr/share/glycin-loaders/2+/conf.d/glycin-svg.conf + + /usr/share/pci.ids + /usr/share/usb.ids + /usr/share/locale/UTF-8 + /usr/share/terminfo/l/linux + /bin/brltty + /sbin/mount.ntfs-3g <!-- cannot be expanded as binary, not executable for all users --> + /sbin/blkid + + /sbin/mageia-setup-keyboard + + /usr/bin/mutter + + /usr/share/themes/Adwaita/gtk-3.0/gtk.css + + /etc/pcmcia/config.opts + /etc/pki/tls/certs/ca-bundle.crt + /etc/pki/tls/cert.pem + /etc/pki/tls/openssl.cnf + /etc/crypto-policies/back-ends/opensslcnf.config + + <!-- misc tools needed by some udev rules --> + /usr/lib/systemd/systemd-udevd + /usr/lib/udev/ata_id + /usr/lib/udev/libinput-device-group + /usr/lib/udev/libinput-fuzz-extract + /usr/lib/udev/libinput-fuzz-to-zero + /usr/lib/udev/pcmcia-socket-startup + /usr/lib/udev/scsi_id + + <from expand="glob"> + /usr/share/libinput/*.quirks + </from> + + <!-- for GDB: --> + <if set="DEBUG_INSTALL"> + /usr/libexec/gdb + <from expand="glob"> + /usr/include/python3.*/pyconfig-*.h + /usr/LIB/libpython3.*so + /usr/LIB/python3.*/abc.py + /usr/LIB/python3.*/codecs.py + /usr/LIB/python3.*/_collections_abc.py + /usr/LIB/python3.*/contextlib.py + /usr/LIB/python3.*/copy.py + /usr/LIB/python3.*/copyreg.py + /usr/LIB/python3.*/collections/*.py + /usr/LIB/python3.*/enum.py + /usr/LIB/python3.*/importlib/*.py + /usr/LIB/python3.*/lib-dynload/*opcode*.so + /usr/LIB/python3.*/encodings/aliases.py + /usr/LIB/python3.*/encodings/__init__.py + /usr/LIB/python3.*/encodings/latin_1.py + /usr/LIB/python3.*/encodings/utf_8.py + /usr/LIB/python3.*/functools.py + /usr/LIB/python3.*/genericpath.py + /usr/LIB/python3.*/heapq.py + /usr/LIB/python3.*/io.py + /usr/LIB/python3.*/keyword.py + /usr/LIB/python3.*/linecache.py + /usr/LIB/python3.*/operator.py + /usr/LIB/python3.*/os.py + /usr/LIB/python3.*/posixpath.py + /usr/LIB/python3.*/reprlib.py + /usr/LIB/python3.*/site.py + /usr/LIB/python3.*/_sitebuiltins.py + /usr/LIB/python3.*/sre_compile.py + /usr/LIB/python3.*/sre_constants.py + /usr/LIB/python3.*/sre_parse.py + /usr/LIB/python3.*/stat.py + /usr/LIB/python3.*/sysconfig.py + /usr/LIB/python3.*/_sysconfigdata*.py + /usr/LIB/python3.*/tokenize.py + /usr/LIB/python3.*/token.py + /usr/LIB/python3.*/traceback.py + /usr/LIB/python3.*/types.py + /usr/LIB/python3.*/warnings.py + /usr/LIB/python3.*/weakref.py + /usr/LIB/python3.*/_weakrefset.py + /usr/share/gdb/guile/gdb/* + /usr/share/gdb/python/gdb/* + </from> + /usr/LIB/guile/3.0/ccache/language/scheme/compile-tree-il.go + /usr/LIB/guile/3.0/ccache/language/scheme/decompile-tree-il.go + /usr/LIB/guile/3.0/ccache/language/scheme/spec.go + /usr/LIB/guile/3.0/ccache/language/tree-il.go + /usr/LIB/guile/3.0/ccache/rnrs/bytevectors.go + /usr/LIB/guile/3.0/ccache/system/foreign.go + /usr/share/gdb/guile/gdb/boot.scm + /usr/share/gdb/guile/gdb.go + /usr/share/guile/3.0/language/bytecode/spec.scm + /usr/share/guile/3.0/language/bytecode.scm + /usr/share/guile/3.0/language/scheme/compile-tree-il.scm + /usr/share/guile/3.0/language/scheme/decompile-tree-il.scm + /usr/share/guile/3.0/language/scheme/spec.scm + /usr/share/guile/3.0/language/tree-il.scm + /usr/share/guile/3.0/language/tree-il/spec.scm + /usr/share/guile/3.0/srfi/srfi-9/gnu.scm + /usr/share/guile/3.0/system/foreign.scm + <from expand="glob"> + /usr/LIB/guile/3.0/ccache/ice-9/*go + /usr/LIB/guile/3.0/ccache/srfi/*.go + /usr/LIB/guile/3.0/ccache/system/base/*.go + /usr/LIB/guile/3.0/ccache/system/vm/*.go + /usr/share/guile/3.0/ice-9/*.scm <!-- for boot-9.scm and its deps --> + /usr/share/guile/3.0/rnrs/*.scm + /usr/share/guile/3.0/rnrs/*/*.scm + /usr/share/guile/3.0/srfi/* + /usr/share/guile/3.0/system/base/*.scm + /usr/share/guile/3.0/system/vm/*.scm + </from> + /usr/share/guile/3.0/system/foreign.scm + /usr/share/gdb/guile/gdb.go + /usr/share/gdb/guile/gdb.scm + </if> + + <from expand="glob"> + /etc/brltty/*/*.ttb + /etc/brltty/*/*/*.txt + /LIB/brltty/libbrlttyb??.so + </from> + + <!-- example how to include debuginfo in stage2: + <from expand="command"> + rpm -ql ldetect-debuginfo drakxtools-backend-debuginfo x11-server-debuginfo |grep -E '.build-id/|\.debug' + </from> + --> + <from expand="command"> + perl -Mlang -I.. -le 'print foreach lang::console_font_files()' + </from> +</from> + +<from dir="/usr/share/ldetect-lst"> + dmitable.gz pcitable.gz usbtable.gz + dkms-modules.alias fallback-modules.alias + <filter command="gzip"> + Cards+ MonitorsDB isdn.db + </filter> +</from> + +<from dir="/lib/module-init-tools"> + ldetect-lst-modules.alias +</from> + +<from dir="/usr/LIB/device-mapper"> + <from expand="glob"> + *.so + </from> +</from> + +<from dir="/usr/LIB/gconv"> + BIG5.so + EUC-JP.so + libGB.so + libJIS.so + libKSC.so + EUC-KR.so + ISO8859-15.so + ISO8859-14.so + ISO8859-13.so + ISO8859-9E.so + ISO8859-9.so + ISO8859-7.so + ISO8859-5.so + ISO8859-3.so + ISO8859-2.so + ISO8859-1.so + <from expand="glob"> + KOI8-*.so + </from> + TIS-620.so + CP1251.so + GEORGIAN-PS.so + EUC-CN.so + gconv-modules +</from> + +<!-- For the usrmove --> +<from> + /usr/lib/dracut/modules.d/30convertfs/convertfs.sh +</from> +<from expand="binary"> + find bash ldconfig mv rm cp ln +</from> + +<filter subst="/^__END__/ and $_ = '', close ARGV"> +<from expand="main-perl"> + AutoLoader.pm + Carp/Heavy.pm + Carp.pm + Exporter/Heavy.pm + Exporter.pm + File/Basename.pm + File/Find.pm + FileHandle.pm + File/Path.pm + File/Temp.pm + Getopt/Long.pm + IPC/Open2.pm + IPC/Open3.pm + Net/Cmd.pm + Net/Config.pm + Net/FTP/A.pm + Net/FTP/dataconn.pm + Net/FTP/I.pm + Net/FTP.pm + Net/Netrc.pm + Net/Ping.pm + PerlIO.pm + SelectSaver.pm + SelfLoader.pm + Symbol.pm + Tie/Hash.pm + Time/Local.pm + XSLoader.pm + base.pm + bytes.pm + constant.pm + dumpvar.pl + feature.pm + integer.pm + locale.pm + overload.pm + overloading.pm + parent.pm + strict.pm + unicore/To/Uc.pl <!-- needed for uc() on UTF-8 --> + utf8.pm + vars.pm + warnings.pm + warnings/register.pm + <if set="DEBUG_INSTALL"> + perl5db.pl + Term/ReadLine.pm + </if> +</from> + +<from expand="main-perl-bin"> + B.pm + Config_git.pl + Config_heavy.pl + Config.pm + Cwd.pm + Data/Dumper.pm + DynaLoader.pm + Encode.pm + Encode/Alias.pm + Encode/Config.pm + Encode/Encoding.pm + Encode/MIME/Name.pm + Encode/Unicode.pm + Errno.pm + Fcntl.pm + File/Glob.pm + File/Spec.pm + File/Spec/Unix.pm + _h2ph_pre.ph + IO/File.pm + IO/Handle.pm + IO.pm + IO/Seekable.pm + IO/Select.pm + IO/Socket/INET.pm + IO/Socket.pm + IO/Socket/UNIX.pm + List/Util.pm + POSIX.pm + Scalar/Util.pm + Socket.pm + Storable.pm + Time/HiRes.pm + <if ARCH="i.86|x86_64"> + asm/unistd_32.ph + asm/unistd_64.ph + </if> + asm/unistd.ph + auto/B/B.so + auto/Cwd/Cwd.so + auto/Data/Dumper/Dumper.so + auto/Encode/Encode.so + auto/Encode/Unicode/Unicode.so + auto/Fcntl/Fcntl.so + auto/File/Glob/Glob.so + auto/IO/IO.so + auto/List/Util/Util.so + auto/POSIX/POSIX.so + auto/re/re.so + auto/Socket/Socket.so + auto/Storable/Storable.so + auto/Time/HiRes/HiRes.so + bits/syscall.ph + bits/wordsize.ph + lib.pm + re.pm + syscall.ph + sys/syscall.ph +</from> + +<from expand="perl-bin"> + Cairo.pm + List/MoreUtils/XS.pm + Term/ReadKey.pm + XML/LibXML.pm + XML/LibXML/AttributeHash.pm + XML/LibXML/Error.pm + XML/LibXML/NodeList.pm + XML/LibXML/Reader.pm + XML/LibXML/XPathContext.pm + XML/LibXML/Boolean.pm + XML/LibXML/Literal.pm + XML/LibXML/Number.pm + auto/Cairo/Cairo.so + auto/List/MoreUtils/XS/XS.so + auto/Term/ReadKey/ReadKey.so + auto/XML/LibXML/LibXML.so + <if set="DEBUG_INSTALL"> + Term/ReadLine/Gnu.pm + Term/ReadLine/Gnu/XS.pm + auto/Term/ReadLine/Gnu/Gnu.so + auto/Term/ReadLine/Gnu/XS/autosplit.ix + </if> +</from> + +<from expand="perl"> + Config/IniFiles.pm + Exporter/Tiny.pm + List/MoreUtils.pm + List/MoreUtils/PP.pm + MDV/Distribconf.pm + MDV/Packdrakeng.pm + MDV/Snapshot/Common.pm + MDV/Snapshot/Restore.pm + Parse/EDID.pm + String/ShellQuote.pm + Time/ZoneInfo.pm + XML/SAX/Exception.pm + urpm.pm + urpm/args.pm + urpm/cdrom.pm + urpm/cfg.pm + urpm/download.pm + urpm/get_pkgs.pm + urpm/install.pm + urpm/lock.pm + urpm/main_loop.pm + urpm/md5sum.pm + urpm/media.pm + urpm/mirrors.pm + urpm/msg.pm + urpm/orphans.pm + urpm/removable.pm + urpm/select.pm + urpm/signature.pm + urpm/util.pm + urpm/sys.pm + urpm/xml_info.pm + urpm/xml_info_pkg.pm +</from> + +<from expand="rpm" matching="m!^/usr/(share|LIB)/perl5! and !/\.pod$/"> + perl-Curses + perl-Curses-UI + perl-File-FnMatch + perl-Locale-gettext + <!-- for MDK::Cmmon: --> + perl-File-Sync + perl-Filesys-Df + perl-MDK-Common + <!-- Gtk stack: --> + perl-Cairo-GObject + perl-Glib + perl-Glib-Object-Introspection + perl-Gtk3 + perl-Gtk3-WebKit2 + perl-Pango + <!-- urpmi stack: --> + perl-Clone + perl-URPM +</from> +</filter> + +<from dir=".."> + <to dir="$(REP4PMS)"> + <filter command="strip"> + <from expand="command"> + cd .. ; find auto -follow -name "*.so" + </from> + </filter> + </to> +</from> + +<from dir="../../tools"> + <to dir="/usr/bin" flatten="on"> + serial_probe/serial_probe + </to> +</from> + +<from dir="../standalone"> + <to dir="/usr/bin"> + display_installer_help + display_release_notes.pl + </to> +</from> + +<from dir="share"> + <from expand="tar"> + keymaps.tar.bz2 + </from> + + <to dir="/usr/share"> + consolefonts symlinks + upgrade + </to> + + <if set="DEBUG_INSTALL"> + <to dir="/bin"> + <!-- abusing '<from expand="command">' --> + <from expand="command"> + echo 'gdb -q --args /usr/libexec/Xorg.wrap :0 -allowMouseOpenFail -xf86config /tmp/Xconf vt7 -dpi 75 -nolisten tcp'> share/gdb-x11; + chmod +x share/gdb-x11; echo gdb-x11 + </from> + </to> + </if> + + <!-- for gtk+3 that needs dbus to be initialized --> + <to dir="/etc"> + <!-- abusing '<from expand="command">' --> + <from expand="command"> + dbus-uuidgen > share/machine-id; echo machine-id + </from> + </to> + + <!-- custom CSD CSS --> + <to dir="/usr/lib/libDrakX"> <!-- /.config/gtk-3.0 is RO --> + gtk.css <!-- symlinked in --> + </to> + +</from> + +<from dir="../pixmaps"> + <to dir="/usr/share"> + <from expand="glob"> + *.png + </from> + </to> +</from> + +<from dir="../share"> + <to dir="/usr/share"> + <from expand="glob"> + *.png + </from> + </to> + <to dir="/usr/lib/libDrakX"> + <from expand="glob"> + *.css + </from> + </to> +</from> + +<from dir="pixmaps"> + <to dir="/usr/share"> + <from expand="glob"> + *.png + </from> + </to> +</from> + +<from dir="pixmaps/langs"> + <to dir="/usr/share/langs"> + <from expand="command"> + perl -I.. -Mlang -le 'print "lang-$_.png" foreach lang::list_langs()' + </from> + </to> +</from> + +</list> diff --git a/perl-install/install/share/po/.gitignore b/perl-install/install/share/po/.gitignore new file mode 100644 index 000000000..cd1f2c943 --- /dev/null +++ b/perl-install/install/share/po/.gitignore @@ -0,0 +1 @@ +*.mo diff --git a/perl-install/install/share/po/.tx/config b/perl-install/install/share/po/.tx/config new file mode 100644 index 000000000..8aa47b976 --- /dev/null +++ b/perl-install/install/share/po/.tx/config @@ -0,0 +1,8 @@ +[main] +host = https://www.transifex.com + +[o:MageiaLinux:p:mageia:r:drakx_install] +file_filter = <lang>.po +source_file = DrakX.pot +source_lang = en +type = PO diff --git a/perl-install/install/share/po/DrakX.pot b/perl-install/install/share/po/DrakX.pot new file mode 100644 index 000000000..aa1f9ea97 --- /dev/null +++ b/perl-install/install/share/po/DrakX.pot @@ -0,0 +1,1608 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" diff --git a/perl-install/install/share/po/Makefile b/perl-install/install/share/po/Makefile new file mode 100644 index 000000000..0bbdaf96f --- /dev/null +++ b/perl-install/install/share/po/Makefile @@ -0,0 +1,47 @@ +NAME = DrakX +LOCALEDIR = ${prefix}/share/locale +METATASK = share/meta-task/compssUsers.pl +PMSFILES = *.pm $(METATASK) ../../advertising/*.pl +PMSFILES_HERE = $(wildcard $(PMSFILES:%=../../%)) + +MAIN_PO_FILES = ../../../share/po/libDrakX.pot + +POFILES = $(wildcard *.po) +MOFILES = $(POFILES:%.po=%.mo) +LANGS = $(POFILES:%.po=%) + +default: $(MOFILES) + +%.mo: %.po + msgfmt -o $@ $< + +update_n_merge: $(NAME).pot merge + +merge: $(NAME).pot + for n in $(POFILES); do \ + echo "Merging $$n"; \ + msgmerge $$n $(NAME).pot > "$$n"t ; \ + mv -f "$$n"t $$n ; \ + done + +../../$(METATASK): + mkdir -p ../../share/meta-task + svn cat svn://svn.mageia.org/svn/packages/cauldron/meta-task/current/SOURCES/compssUsers.pl > $@ + +$(NAME).pot: $(PMSFILES_HERE) ../../$(METATASK) + cd ../.. ; perl_checker -q --generate-pot share/po/.$@ $(PMSFILES) + xgettext $(MAIN_PO_FILES:%=-x %) -o $@ .$@ + rm -f .$@ + +install: $(MOFILES) + for l in $(LANGS); do \ + install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \ + install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/$(NAME).mo; \ + done + +clean: + @rm -rf *.mo $(POFILES:%=%t) ../../$(METATASK) + @rmdir ../../share/meta-task + +check: + for i in *.po; do msgfmt -c $$i -o /dev/null; done diff --git a/perl-install/install/share/po/af.po b/perl-install/install/share/po/af.po new file mode 100644 index 000000000..30facadc5 --- /dev/null +++ b/perl-install/install/share/po/af.po @@ -0,0 +1,1713 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dirk van der Walt <dirkvanderwalt@webmail.co.za>, 2004 +# Dirk van der Walt <mandrake@webmail.co.za>, 2003 +# F Wolff <friedel@translate.org.za>, 2019 +# Schalk W. Cronjé <schalkc@ntaba.co.za>, 2000 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: F Wolff <friedel@translate.org.za>\n" +"Language-Team: Afrikaans (http://www.transifex.com/MageiaLinux/mageia/" +"language/af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Sluit aan by ons!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Maak dit joune!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "U eie keuse!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Kantoorgereedskap" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Tuisvermaak" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Vir kinders" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Vir familie!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Vir programmeerders!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Dankie!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Wees vry!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Is daar verdere aanvullende media?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Die volgende media is gevind en sal tydens installasie gebruik word: %s.\n" +"\n" +"\n" +"Het u ’n aanvullende installasiemedium om op te stel?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Netwerk (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Netwerk (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Netwerk (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-opstelling" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Tik die rekenaarnaam en gids van die NFS-media" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Rekenaarnaam ontbreek" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Gids moet met “/” begin" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Rekenaarnaam van die NFS-hegpunt?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Gids" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Aanvullend" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Kan nie ’n pakketlyslêer op dié spieëlwerf kry nie. Maak seker die ligging " +"is korrek." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Sommige hardeware op die rekenaar benodig sekere nievrye fermware vir die " +"vry sagteware-aandrywers om te werk." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "U moet “%s” aktiveer" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "“%s” bevat die verskeie dele van die stelsel in die toepassings" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "“%s” bevat nievrye sagteware.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Dit bevat ook fermware wat nodig is vir sekere toestelle om te werk (bv. " +"sekere ATI/AMD-grafikakaarte, sommige netwerkkaarte, sommige RAID-" +"kaarte, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"“%s” bevat sagteware wat weens sagtewarepatente nie in alle lande versprei " +"kan word nie." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Dit bevat ook sagteware van “%s” wat herbou is met addisionele " +"funksionaliteit." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Hier kan mens meer media aktiveer as mens wil." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Dié medium verskaf pakketbywerkings vir medium “%s”" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Ondersoek pakkette wat reeds geïnstalleer is..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Soek vir pakkette om op te gradeer..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Verwyder pakkette voor opgradering..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Die volgende pakkette gaan verwyder word om die rekenaar op te gradeer: %s\n" +"\n" +"\n" +"Wil u definitief dié pakkette verwyder?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Fout met die lees van lêer %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Die volgende skywe is hernoem:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (voorheen %s genoem)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Netwerk" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Kies asb. ’n medium" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Lêer bestaan reeds. Oorskryf?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Toegang verbied" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Slegte NFS-naam" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Slegte media %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Kan nie skermkiekies neem voor partisies geskep is nie" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Skermkiekies sal na die installasie beskikbaar wees in %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installasie" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Opstelling" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "U moet ook %s formatteer" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Sekere hardeware op u rekenaar benodig “geslote” aandrywers.\n" +"U kan inligting hieroor vind by: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Netwerk op pad op" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Netwerk op pad af" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Net ’n oomblik. Lêer word afgehaal" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "kon nie medium byvoeg nie" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopieer tans pakkette na die skyf vir latere gebruik" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiëring onderweg" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "benodig" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "belangrik" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "baie oulik" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "oulik" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "miskien" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Kry tans pakketinligting vanaf XML-metadata..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Geen XML-inligting vir medium “%s”, slegs gedeeltelike resultate vir pakket " +"%s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Geen beskrywing" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Sommige pakkette wat deur %s aangevra is, kan nie geïnstalleer word nie:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "'n Fout het voorgekom:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "’n Ernstige fout het voorgekom: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Moenie weer vra nie" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d installasietransaksies het misluk" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Installasie van pakkette het misluk:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Werkstasie" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kantoorwerkstasie" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Kantoorprogramme: woordverwerkers( LibreOffice Writer, Kword), sigblaaie " +"(LibreOffice Calc, Kspread), PDF-kykers, ens." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Speletjiesrekenaar" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Vermaak: arkade, bordspel, strategie ens." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimediastasie" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Klank- en videospelers/-redigeerders" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internetstasie" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Hulpprogramme om e-pos en netnuus te lees en te stuur (mutt, tin) en ook om " +"die web deur te blaai" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Netwerkrekenaar (kliënt)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Kliëntprogramme vir 'n verskeidenheid protokolle insluitend SSH" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Nutsprogramme wat die rekenaaropstelling vergemaklik" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsole-hulpprogramme" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Redigeerders, instruksiedoppe, lêernutsprogramme, terminaal-programme" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Ontwikkeling" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C en C++ ontwikkelingsbiblioteke, programme en insluitlêers" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentasie" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Boeke en HOWTO's oor Linux en Vry Sagteware" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Ondersteuning vir derdepartyprogramme" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Webbediener" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab-bediener" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Brandmuur/Netwerkroteerder" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internetdeurgang" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Pos/Nuus" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix-posbediener, Inn-nuusbediener" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Gidsbediener" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-bediener" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Domeinnaam- en netwerk-inligtingbediener (DNS/NIS)" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Bediener vir deel van lêers en drukkers" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS-bediener, Samba-bediener" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Databasis" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL- en MariaDB-databasisbediener" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Pos" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix e-posbediener" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL- of MariaDB-databasisbediener" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Netwerkrekenaar-bediener" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-bediiener, SMB-bediener, Instaanbediener, SSH-bediener" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafiese omgewing" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma-werkstasie" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Die K-werkskermomgewing (KDE), die basiese grafiese omgewing met 'n " +"versameling bygaande hulpprogramme" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME-werkstasie" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"’n Grafiese omgewing met gebruikersvriendelike toepassings en werkskerm-" +"hulpprogramme" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce-werkstasie" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"’n Ligter grafiese omgewing met gebruikersvriendelike toepassings en " +"werkskerm-hulpprogramme" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE-werkstasie" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon-werkstasie" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "’n Grafiese omgewing gebaseer op GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt-werkskerm" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment-werkskerm" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "'n Liggewig, vinnige grafiese omgewing met getroue volgelinge" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE-werkskerm" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "’n Liggewig, vinnige grafiese omgewing" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Ander grafiese werkskerms" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, ens." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Nutsprogramme" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-bediener" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Netwerknutsprogramme/monitering" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"’n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n" +"nie. Gaan op u eie risiko voort." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Sekere belangrike pakkette het nie korrek geïnstalleer nie.\n" +"Óf die CDROM-aandrywer óf die CD is foutief.\n" +"Toets die CD op 'n werkende Linux-installasie met \"rpm -qpl media/main/*.rpm" +"\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Gaan stap “%s” binne\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s-installasie %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> tussen elemente" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg-bediener neem lank om te begin. Wag asseblief..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"U stelsel het min hulpbronne beskikbaar. U mag dalk probleme\n" +"ondervind met die installering van %s. In so 'n geval probeer\n" +"eerder die teksinstallasie. Daarvoor moet u “F1” druk wanneer\n" +"u vanaf die CDROM herlaai en dan “text” op die instruksielyn\n" +"intik." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Mediaseleksie" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Installeer %s plasmawerkskerm" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Installeer %s GNOME-werkskerm" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Eie installasie" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma-werkskerm" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME-werkskerm" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Eie werkskerm" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Hier is ’n voorskou van die “%s”-werkskerm." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klik op prente vir ’n groter voorskou" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Kies pakketgroepe" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Individuele pakket-seleksie" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Maak seleksie skoon" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Totale grootte: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Weergawe: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Grootte: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Belangrikheid: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "U kan nie hierdie pakket selekteer/deselekteer nie" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "weens %s wat soek is" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "weens onvoldoende %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "probeer promosie van %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "om %s te kan behou" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie " +"beskikbaar is nie" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Die volgende pakkette gaan geïnstalleer word" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Die volgende pakkette gaan verwyder word" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Hierdie is ’n verpligte pakket. Dit kan nie uitgehaal word nie." + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "U kan nie hierdie pakket verwyder nie. Dit is reeds geïnstalleer." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Wys outogeselekteerde pakkette" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installasie" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Laai/stoor seleksie" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Pakketseleksie word opgedateer" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimale installasie" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Sagtewarebestuur" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Kies die pakkette wat u wil installeer" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Besig met installasie" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Geen detail" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tyd oor:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(skat tans...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pakket" +msgstr[1] "%d pakkette" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Opsomming" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Opstelling" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nie gekonfigureer nie" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Die volgende installasiemedia is gevind.\n" +"Indien u sommige wil oorslaan, ontmerk hulle nou." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"U het die keuse om die inhoud van die CD’s na die hardeskyf te kopieer voor " +"installasie.\n" +"Installasie sal dan van die hardeskyf af voortgaan en die pakkette sal " +"beskikbaar bly wanneer die stelsel volledig geïnstalleer is." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopieer hele CD’s" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "'n Fout het voorgekom" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Kies asseblief u sleutelborduitleg" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Hier is die volledige lys beskikbare sleutelborde:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installeer/Opgradeer" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Is hierdie 'n installasie of opgradering?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installasie" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Gradeer %s op" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Enkripsiesleutel vir %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Kanselleer installasie. Herlaai die stelsel." + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nuwe installasie" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Gradeer vorige installasie op (nie aanbeveel nie)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Verander u CDROM!\n" +"\n" +"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK. Indien u " +"nie\n" +"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Soek tans vir beskikbare pakkette..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Die stelsel het nie genoeg plek oor vir installasie of opgradering nie (%dMB " +"> %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Laai" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Stoor" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Slegte lêer" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Werkskermkeuse" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Kies gerus die werkskermprofiel vir u werkstasie." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Geselekteerde grootte is groter as beskikbare spasie" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipe installasie" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"U het geen groep pakkette gekies nie.\n" +"Kies asseblief die tipe minimale installasie:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Met X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Installeer aanbevole pakkette" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Met basiese dokumentasie (word aanbeveel!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Absolute minimale installasie (veral geen urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Berei tans opgradering voor..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Berei tans installasie voor" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Installeer tans pakket %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Daar was 'n fout met volgorde van pakkette:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Gaan steeds voort?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Probeer weer" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Slaan dié pakket oor" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Slaan alle pakkette van medium “%s” oor" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Gaan terug na media- en pakketseleksie" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Daar was ’n fout met installering van pakket %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Post-installasiekonfigurasie" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Bywerkings" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Daar is nou geleentheid om media aanlyn op te stel." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Hiermee kan sekuriteitsbywerkings geïnstalleer word." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Om sulke media op te stel is ’n werkende internetverbinding nodig.\n" +"\n" +"Wil u die bywerkingsmedia opstel?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Die volgende pakkette gaan geïnstalleer word" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Probeer weer?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Fout met byvoeging van medium" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"U het nou ’n geleentheid om bygewerkte pakkette af te laai. Hierdie " +"pakkette\n" +"is opgedateer na die distribusie vrygestel is. Hulle kan " +"sekuriteitsprobleme\n" +"en goggas regstel.\n" +"\n" +"Om hulle af te n laai, is ’n werkende Internetkonneksie nodig.\n" +"\n" +"Wil u die bywerkings nou installeer?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s op %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardeware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Klankkaart" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafiese koppelvlak" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Netwerk en internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Instaanbedieners" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "gekonfigureer" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Sekuriteitsvlak" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Brandmuur" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "geaktiveer" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "gedeaktiveer" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "U het nog nie X opgestel nie. Verlang u dit regtig?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Net ’n oomblik. Dit kan ’n rukkie neem..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Met hierdie sekuriteitsvlak word toegang na lêers op die Windows-partisie " +"beperk tot die administrateur." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Sit 'n leë floppie in aandrywer %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Outoinstallasieskyf word tans geskep..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Sekere stappe is nie afgehandel nie.\n" +"\n" +"Wil u definitief nou afsluit?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Geluk" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Herlaai" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Taal" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalisering" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lisensie" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Muis" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Hardeskyfbespeuring" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Installasieklas" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Sleutelbord" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sekuriteit" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partisies" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatering" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Pakketseleksie" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installlasie" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Gebruikers" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Herlaaistelsel" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Stel X op" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Opsomming" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Dienste" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Bywerkings" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Sluit af" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL van die spieëlwerf?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL moet met ftp:// of http:// begin" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Kontak tans die %s-webwerf vir 'n lys van spieëlwerwe..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Kon nie die %s-webwerf kontak om die lys beskikbare spieëlwerwe te kry nie" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Kies 'n spieëlwerf waar die pakkette verkry kan word" diff --git a/perl-install/install/share/po/am.po b/perl-install/install/share/po/am.po new file mode 100644 index 000000000..cc2da325f --- /dev/null +++ b/perl-install/install/share/po/am.po @@ -0,0 +1,1609 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Alemayehu Gemeda <alemayehu@gmx.at>, 2004 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Amharic (http://www.transifex.com/MageiaLinux/mageia/language/" +"am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "ዶሴ" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%sን በማንበብ ላይ ስህተት ተፈጥሯል" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "መረብ" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "ፈቃድ አልተሰጠም" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "ስየማ" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "መረቡን በማቀራረብ ላይ" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "መረቡን በማለያየት ላይ" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "አስፈላጊ" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "በጣም ጥሩ" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "ጥሩ" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "ምናልባት" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "እድገት" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "ማስረጃ" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "የመረብ ሰርቨር" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "የFTP ተጠሪ" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "ዳታቤዝ" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "ፖስታ" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "የ%s ተከላ %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "የጥቅል ቡድን ምርጫ" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "የነጠላ ጥቅል ምርጫ" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "አጠቃላይ መጠን: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "ዝርያ: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "መጠን: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "አስፈላጊነት: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "ይህን ጥቅል መምረጥ/አለመምረጥ አይችሉም" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s ባለመገኘቱ ምክንያት" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "%s አጥጋቢ ባለመሆኑ ምክንያት" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%sን ለማስተዋወቅ በመሞከር ላይ" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%sን ለማቆየት" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "የሚከተሉት ጥቅሎች ሊተከሉ ነው" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "የሚከተሉት ጥቅሎች ሊወገዱ ነው" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "ይህንን ጥቅል መምረጥ አይችሉም። ቀደም ብሎ ተተክሏል።" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "ትከል" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "የጥቅል ምርጫ በማሻሻል ላይ" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "አነስተኛ ተከላ" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "ለመትከል የሚፈልጉትን ጥቅል ይምረጡ" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "በመትከል ላይ" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "ያለ ዝርዝሮች" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "ማጠቃለያ" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "ለውጥ" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "አልተስተካከለም" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "ስህተት ተፈጥሯል" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "ትከል/አሳድግ" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "ትከል" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "የ%s ሚስጢራዊ መገልበጫ ቁልፍ" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "ጫን" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "አስቀምጥ" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "ኖም" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "የተከላው አይነት" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "በX" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "ተከላ በማዘጋጀት ላይ" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "የ%s ጥቅል በመትከል ላይ" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "ለማንኛውም ቀጥል?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Post-install configuration" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "አሻሻዎች" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "የሚከተሉት ጥቅሎች ሊተከሉ ነው" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s %s ላይ ነው" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "ሀርድዌር" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "የድምፅ ካርድ" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "ንድፋዊ እይታ" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "መረብ እና ኢንተርኔት" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "ወኪሎች" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "ተስተካክሏል" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "የደህንነት ደረጃ" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "የእሳት ግድግዳ" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "መስራት ጀምሯል" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "መስራት አቁሟል" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "እንኳን ደስ ያለዎ!" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "እንደገና ጀምር" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "ቋንቋ" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "መጠቆሚያ" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "መተየቢያ" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "ደህንነት" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "በመትከል ላይ" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "ተጠቃሚዎች" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "አስጀማሪያ" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Xን ሰይም" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "ማጠቃለያ" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "አገልግሎት" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "አሻሻዎች" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "ውጣ" diff --git a/perl-install/install/share/po/ar.po b/perl-install/install/share/po/ar.po new file mode 100644 index 000000000..d962bce2c --- /dev/null +++ b/perl-install/install/share/po/ar.po @@ -0,0 +1,1696 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Arabic (http://www.transifex.com/MageiaLinux/mageia/language/" +"ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "انضم إلينا!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "لتكن ملكك!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "اختيارك!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "أدوات مكتبية" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "الترفيه المنزلي" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "للأطفال" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "للعائلة!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "للمطورين!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "شكرا لك!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "كن حراً!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "هل لديك وسائط إضافية أخرى؟" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"لقد تم العثور على الوسائط التالية وستستخدم خلال التثبيت: %s.\n" +"\n" +"\n" +"هل لديك وسيط تثبيت إضافي لضبطه؟" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "الشبكة (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "الشبكة (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "الشبكة (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "تثبيت NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "فضلا أدخل اسم المضيف والدليل لوسائط NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "اسم المضيف غير موجود" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "يجب أن يبدأ الدليل بـ \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "اسم مضيف نقطة وصل NFS ؟" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "الدليل" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "إضافي" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "لم يمكن العثور على ملف لائحة الحزم على هذه المرآة. تأكد من صحة الموقع." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "مخزن Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "مخزن Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "مخزن Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"بعض قطع العتاد في جهازك تحتاج بعض المكتبات الغير حرة لتتمكن التعاريف الحرة " +"من العمل." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "يجب أن تفعل \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" يحتوي على مختلف مكونات النظام وتطبيقاته" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" يحتوي على برمجيات غير حرة. \n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"يحتوى أيضا على بعض المكتبات الضرورية لتشغيل قطع عتاد معينة ( على سبيل " +"المثال: كروت الشاشة ATI/AMD، بعض كروت الشبكة، بعض كروت RAID، ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" يحتوى على برمجيات لا يمكن إعادة نشرها في جميع بقاع العالم بسبب " +"براءات الاختراع. " + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "يحتوي أيضا على برمجيات من \"%s\" تم إعادة بنائها بإمكانيات إضافية." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "هنا يمكنك تفعيل وسائط أكثر إن أردت." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "هذا الوسيط يوفر تحديثات للبرمجيات للوسيط \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "جاري البحث عن الحزم المثبتة مسبقا..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "جاري العثور على الحزم التي يمكن ترقيتها... " + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "جاري إزالة الحزم قبيل ترقيتها" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"ستحذف هذه الحزم للسماح بترقية النظام: %s\n" +"\n" +"\n" +"هل تريد حذف هذه الحزم فعلا؟\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "خطأ في قراءة الملف %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "لقد تم تغيير أسماء الأقراص التالية:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (المسمى %s سابقاً)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "الشبكة" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "الرجاء اختيار وسيط" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "الملف موجود مسبقا. هل تريد استبداله؟" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "تم رفض الإذن" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "اسم NFS غير صالح" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "الوسيط %s سيء" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "لا يمكن عمل لقطات للشاشة قبل التجزئة" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr " لقطات الشاشة ستكون متوفرة بعد التثبيت في %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "التثبيت" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "الضبط" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "عليك أيضا تهيئة %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"بعض العتاد على جهازك يحتاج إلى مشغلات ``مملوكة'' كي يعمل.\n" +"يمكنك إيجاد مزيد من المعلومات عنها في: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "جاري تشغيل الشبكة" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "جاري إغلاق الشبكة" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "انتظر رجاء، جاري جلب الملف" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "لا يمكن إضافة وسيط" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "نسخ بعض الحزم إلى الأقراص لاستخدامها مستقبلاً" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "جاري النسخ" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "ضروري" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "مهم" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "جيد جدا" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "جيد" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "ربما" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "جاري جلب معلومات الحزم من ملف XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"لا توجد معلومات xml للوسيط \"%s\"، إنما توجد معلومات جزئية فقط عن الحزمة %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "وصف غير متوفر" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"بعض الحزم التي يتطلبها %s لا يمكن تثبيتها:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "حدث خطأ:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "حدث خطأ فادح: %s" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "لا تسأل مرة أخرى" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "فشلت عملية تثبيت %d" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "فشل تثبيت الحزمة:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "محطة عمل" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "محطة عمل مكتبية" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"برامج مكتبية: معالجات نصوص (OpenOffice.org Writer، Kword)، جداول ممتدة " +"(OpenOffice.org Calc، Kspread)، برامج عرض pdf، إلخ" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "محطة ألعاب" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "برامج تسلية: ألعاب فيديو، ألعاب لوحات، ألعاب استراتيجية، إلخ" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "محطة وسائط متعددة" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "برامج تحرير/تشغيل مرئيات وصوتيات" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "محطة إنترنت" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"مجموعة أدوات لقراءة وإرسال البريد والأخبار (mutt، tin..) ولتصفح الإنترنت" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "جهاز شبكة (عميل)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "عملاء لبروتوكولات مختلفة بما فيها ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "أدوات لتسهيل ضبط حاسبك" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "أدوات الطرفيات" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "محررات نصوص، صدفات، أدوات ملفات، طرفيات" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "تطوير" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "مكتبات تطوير خاصة بلغة C وC++، برامج وملفات مضمنة" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "توثيق" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "كتب ودلائل إرشادية حول لينكس والبرامج الحرة" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "القاعدة القياسية للينكس (LSB). دعم تطبيقات الطرف الثالث" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "خادم وب" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "برامج مجموعات" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "خادم Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "جدار ناري/روتر" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "بوابة إنترنت" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "بريد/أخبار" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "خادم بريد Postfix، خادم أخبار Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "خادم مجلدات" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "خادم FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "خادم أسماء النطاقات ومعلومات الشبكة" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "خادم مشاركة الملفات والطابعات" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "خادم NFS، خادم سامبا" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "قواعد بيانات" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "خادم قواعد بيانات PostgreSQL و MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "وب/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache، Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "البريد" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "خادم بريد Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "خادم قواعد بيانات PostgreSQL أو MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "خادم شبكات" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "خادم NFS، خادم SMB، خادم وسيط، خادم ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "بيئات رسومية" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"بيئة سطح مكتب كدي، البيئة الرسومية الأساسية مع مجموعة من الأدوات المصاحبة" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "محطة عمل جنوم" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"بيئة رسومية مع مجموعة من التطبيقات وأدوات سطح المكتب المناسبة للمستخدمين " +"العاديين" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "سطح مكتب LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "سطح مكتب LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "أسطح مكتب رسومية أخرى" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "أدوات" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "خادم SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "خادم الضبط البعيد Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "وسائل الشبكة/المراقبة" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "أدوات مراقبة، محاسبة عمليات، tcpdump، nmap، ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "مرشدو ماجيا" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "مرشدو ضبط الخادم" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"حدث خطأ ولا أعرف كيف أتعامل معه جيدأ. \n" +"تابع على مسؤوليتك." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"لم يتم تثبيت بعض الحزم المهمة بشكل صحيح.\n" +"إما أن محرك الأقراص أو القرص ذاته معطوب.\n" +"افحص القرص المدمج على حاسب مثبت باستعمال \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "الانتقال للخطوة `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s تثبيت %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> بين العناصر" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "تشغيل خادم Xorg بطيء. الرجاء الانتظار..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"موارد نظامك قليلة، لذا قد تقابل بعض المشكلات قي تثبيت\n" +"%s. إذا حدث ذلك، فيمكنك تجربة التثبيت النصي كبديل. للقيام بذلك،\n" +"اضغط `F1' عند الإقلاع من القرص المدمج، ثم اكتب `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "انتقاء الوسائط" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "تثبيت %s بسطح مكتب جنوم" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "تثبيت مخصص" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "سطح مكتب جنوم" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "سطح مكتب مخصص" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "هذه معاينة لشكل سطح مكتب %s" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "اضغط على الصور لتشاهد المعاينة بحجم أكبر" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "انتقاء مجموعات الحزم" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "انتقاء مفرد للحزم" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "إلغاء اختيار الكل" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "الحجم الإجمالي: %d / %d م.ب" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "الإصدار: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "الحجم: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d ك.ب\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "الأهمية: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "لا يمكنك انتقاء/إلغاء انتقاء هذه الحزمة" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "بسبب نقص %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "بسبب عدم إرضاء %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "السعي إلى ترويج %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "من أجل الاحتفاظ بـ %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "لا يمكنك انتقاء هذه الحزمة لأنه لا يوجد مساحة كافية لتثبيتها" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "ستثبت الحزم التالية" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "ستحذف الحزم التالية" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "هذه الحزمة إلزامية؛ لا يمكن إلغاء انتقائها" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "لا يمكن إلغاء انتقاء هذه الحزمة؛ لأنها مثبتة مسبقاً" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "لا يمكنك إلغاء انتقاء هذه الحزمة. لأن ترقيتها ضرورية" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "إظهار الحزم المنتقاة آليا" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "تثبيت" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "تحميل/حفظ الانتقاء" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "تحديث انتقاء الحزم" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "تثبيت مصغر" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "إدارة البرامج" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "اختر الحزم التي تريد تثبيتها" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "التثبيت" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "لا تفاصيل" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "الوقت المتبقي:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(حساب تقديري...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "لا حزم" +msgstr[1] "حزمة واحدة" +msgstr[2] "حزمتان" +msgstr[3] "%d حزم" +msgstr[4] "%d حزم" +msgstr[5] "%d حزم" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "ملخص" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "اضبط" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "غير مضبوط" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"تم العثور على وسائط التثبيت التالية.\n" +"إن كنت تريد تخطي بعضها، فيمكنك إلغاء انتقائها الآن." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"لديك الخيار بنسخ محتويات الأقراص المدمجة إلى قرصك الصلب قبل التثبيت.\n" +"حيئذ، سيكمل التثبيت من القرص الصلب وستبقى الحزم متوفرة حتى يثبت النظام كاملا." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "نسخ الأقراص كاملة" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "حدث خطأ" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr " اختر رجاء تخطيط لوحة مفاتيحك" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "هذه القائمة الكاملة لكلّ لوحات المفاتيح المتاحة:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "تثبيت/ترقية" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "هل هذا تثبيت أم ترقية؟" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "تثبيت" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "ترقية %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "مفتاح التشفير لـ %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "إلغاء التثبيت، وإعادة تشغيل النظام" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "تثبيت جديد" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "ترقية تثبيت سابق (لا ينصح به)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"تبين للمثبت أنه لا يمكن للنظام السابق\n" +" أن يرقَّ بأمان لـ %s\n" +" \n" +" ينصح بثبيت جديد يحل محل التثبيت السابق\n" +" \n" +" تحذير: ينبغي أن تنسخ جميع بياناتك الشخصية قبل اختيار\"تثبيت جديد\"" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"غيّر قرصك المدمج!\n" +"من فضلك أدخل القرص المسمى \"%s\" في السواقة واضغط على موافق عندما تنتهي.\n" +"إن لم يكن القرص لديك، اضغط على إلغاء لتجنب التثبيت من هذا القرص." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "البحث عن الحزم المتاحة..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "لا توجد مساحة كافية في نظامك للتثبيت أو الترقية (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"اختر رجاء حفظ أو تحميل انتقائك للحزم.\n" +"النسق مشابه للملفات الناتجة عن التثبيت الآلي." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "تحميل" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "حفظ" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "ملف فاسد" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "جنوم" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "انتقاء سطح المكتب" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "بإمكانك اختيار حساب سطح مكتب الخاص بك." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "الحجم المختار أكبر من المساحة المتاحة" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "نوع التثبيت" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"لم تختر أي مجموعة من الحزم.\n" +"اختر رجاء حد التثبيت الأدنى الذي تريده:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "مع X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "مع وثائق المساعدة الأساسية (ينصح به)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "حد التثبيت الأدنى الحقيقي (دون urpmi خصوصا)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "التحضير للترقية..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "التحضير للتثبيت" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "تثبيت الحزمة %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "حدث خطأ في ترتيب الحزم:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "هل تريد المتابعة على أية حال؟" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "أعد المحاولة" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "تخطّ هذه الحزمة" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "تخطّ جميع الحزم من الوسيط \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "ارجع إلى الوسائط وانتقاء الحزم" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "حدث خطأ في تثبيت الحزمة %s" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "ضبط ما بعد التثبيت" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "تأكد رجاء من وجود وسائط وحدات التحديث في محرك الأقراص %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "التحديثات" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "ستثبت الحزم التالية" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Retry?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "فشل عند إضافة الوسيط" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"لديك الآن الفرصة لتنزيل حزم محدثة، فهذه الحزم\n" +"تم تحديثها بعد إصدار التوزيعة، وقد\n" +"تحتوي على إصلاحات لعلل أمنية أو برمجية.\n" +"\n" +"لتنزيل هذه الحزم، تحتاج إلى اتصال \n" +"بالإنترنت.\n" +"\n" +"هل تريد تثبيت هذه التحديثات؟" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s على %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "العتاد" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "بطاقة الصوت" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "الواجهة الرسومية" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "الشبكة والإنترنت" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "الخوادم الوسيطة" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "تم ضبطه" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "مستوى الأمن" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "جدار ناري" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "مفعلة" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "معطلة" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "لم تقم بضبط خادم (X). هل أنت متأكد أنك تريد ذلك؟" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "تحضير برنامج بدء التشغيل الأولي..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "كن صبورا، ستستغرق العملية بعض الوقت..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"في هذا المستوى الأمني، الوصول إلى الملفات في قسم وندوز سيكون مقصوراً على " +"المدير." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "أدخل قرصا مرنا فارغا في محرك الأقراص %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "إنشاء قرص مرن للتثبيت الآلي..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"بعض الخطوات لم تكتمل.\n" +"\n" +"هل تريد الخروج الآن حقا؟" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "تهانينا" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "إعادة اﻹقلاع" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "اللغة" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "التوطين" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "الرخصة" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "الفأرة" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "اكتشاف القرص الصلب" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "صنف التثبيت" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "لوحة المفاتيح" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "الأمن" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "التقسيم" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "التهيئة" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "انتقاء الحزم" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "التثبيت" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "المستخدمون" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "محمل الإقلاع" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "ضبط (X)" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "ملخص" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "الخدمات" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "التحديثات" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "خروج" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "مسار المرآة؟" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "يجب أن يبدأ المسار بـ http:// أو بـ ftp://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "جاري الاتصال بموقع %s للحصول على قائمة بالمرايا المتوفرة..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "فشل الاتصال بموقع %s للحصول على قائمة بالمرايا المتوفرة" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "اختر مرآة لتحصيل الحزم" diff --git a/perl-install/install/share/po/ast.po b/perl-install/install/share/po/ast.po new file mode 100644 index 000000000..925f65bbb --- /dev/null +++ b/perl-install/install/share/po/ast.po @@ -0,0 +1,1673 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# enolp <enolp@softastur.org>, 2015-2016,2019-2020,2025 +# Ḷḷumex03, 2014 +# Ḷḷumex03, 2014 +# Softastur <alministradores@softastur.org>, 2009 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: enolp <enolp@softastur.org>, 2015-2016,2019-2020,2025\n" +"Language-Team: Asturian (http://app.transifex.com/MageiaLinux/mageia/" +"language/ast/)\n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "¡Xúnite a nós!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Failu de to" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "¡La to eleición!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Ferramientes d'oficina" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Entretenimientu en casa" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Pa la reciella" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "¡Pa la familia!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "¡Pa desendolcadores!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "¡Gracies!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "¡Sé llibre!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "¿Tienes más medios suplementarios?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Atopáronse los medios siguientes ya van usase demientres la instalación: " +"%s.\n" +"\n" +"\n" +"¿Tienes dalgún mediu suplementariu pa configurar?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rede (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rede (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rede (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Configuración NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Introduz l'agospiador ya'l direutoriu del mediu NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Falta l'agospiador" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "El direutoriu ha comenzar per «/»" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "¿Cuál ye l'agospiador del montaxe NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Direutoriu" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Suplementariu" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Nun se pue atopar la llista de paquetes nesti espeyu. Asegúrate de que la " +"llocalización ye correuta." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Edición «Core»" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Edición alteriada" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Edición «Nonfree»" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Dalgunos componentes de la máquina precisen dalgún tipu de firmware que nun " +"ye llibre pa que los controladores llibres funcionen." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Habríes activar «%s»" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" +"«%s» contién dellos componentes de los sistemes ya les sos aplicaciones" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "«%s» contién software que nun ye llibre.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Tamién contién el firmware necesario pa que ciertos preseos funcionen (p. " +"exem: dalgunes tarxetes gráfiques, RAID, de rede…)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"«%s» contién software que nun se pue distribuyir en tolos países pola mor de " +"les patentes de software." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Equí pues activar más medios si quies." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Esti mediu forne anovamientos de paquetes pal mediu «%s»" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Tán consultándose los paquetes xá instalaos…" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Tán quitándose los paquetes enantes d'anovar…" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Van desaniciase los paquetes siguientes pa permitir l'anovamientu del " +"sistema: %s\n" +"\n" +"\n" +"¿De xuru que quies desaniciar estos paquetes?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Prodúxose un error al lleer el ficheru «%s»" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Renomáronse los discos siguientes:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (enantes llamábase «%s»)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rede" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Escueyi un mediu" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "El ficheru xá esiste. ¿Quies sobrescribilu?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "El nome NFS ye incorreutu" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "El mediu «%s» ye incorreutu" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Nun se puen facer captures de pantalla enantes de particionar" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" +"Les captures de pantalla van tar disponibles dempués de la instalación en " +"«%s»" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalación" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configuración" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Tamién tienes de formatiar «%s»" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Dalgunos componentes del ordenador precisen controladores propietarios pa " +"funcionar.\n" +"Pues atopar más información tocante a ellos en: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Ta activándose la conexón de rede" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Ta desactivándose la conexón de rede" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Espera, ta recibiéndose'l ficheru" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "nun ye posible amestar el mediu" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Tán copiándose dalgunos paquetes nos discos pa usalos nel futuru" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Copia en cursu" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "obligatoriu" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "importante" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nun hai nenguna descripción" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Nun se puen instalar dalgunos paquetes solicitaos por «%s»:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Prodúxose un error:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Prodúxose un error fatal: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "L'aición d'instalar los paquetes falló:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Estación de trabayu" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Estación ofimática" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Estación de xuegu" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Estación multimedia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Estación d'internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Ferramientes p'acencellar la configuración del ordeandor" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Ferramientes de la consola" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Desendolcu" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentación" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Sirvidor web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Sirvidor Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Sirvidor FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Sirvidor pa compartir imprentadores ya ficheros" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Corréu electrónicu" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Sirvidor de bases de datos MariaDB o PostgreSQL" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Entornu gráficu" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Un entornu gráficu basáu en GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Escritoriu LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Un entronu d'escritoriu basáu en QT y LXDE de nueva xeneración" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Escritoriu Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Escritoriu LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Un entornu gráficu rápidu ya llixeru" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Otros escritorios gráficos" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilidaes" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Sirvidor SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Encontos pa Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"El sistema tien pocos recursos ya ye posible que tengas dalgún problema\n" +"demientres la instalación de %s.. Si pasara, pues probar l'instalador per " +"testu. Pa facelo, primi la tecla «F1» al arrincar el CD-ROM ya introduz " +"«text»." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Seleición de medios" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Escritoriu Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Escritoriu GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Esbilla individual de paquetes" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Deseleicionar too" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Tamañu total: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versión:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Tamañu:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importancia:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Nun pues de/seleicionar esti paquete" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "pa caltener «%s»" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Nun pues instalar esti paquete darréu que nun hai abondu espaciu pa instalalu" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Van instalase los paquetes siguientes" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Van quitase los paquetes siguientes" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Esti paquete ye obligatoriu ya nun se pue deseleicionar" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Nun pues deseleicionar esti paquete porque xá ta instaláu" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Nun pues deseleicionar esti paquete, ha anovase" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalar" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Instalación mínima" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Xestión del software" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Escueyi los paquetes que quies instalar" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalando" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tiempu restante:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paquete" +msgstr[1] "%d paquetes" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Resume" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configurar" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Atopáronse los medios d'instalación siguiente.\n" +"Si quies saltar dalgún, pues deseleicionalu agora." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Tienes la opción de copiar el conteníu de los CD nel discu duru enantes de " +"la instalación.\n" +"Dempués d'esto, la instalación va siguir dende'l discu duru y los paquetes " +"van quedar presentes namás que s'instale dafechu'l sistema." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Prodúxose un error" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Escueyi la distribución del tecláu" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Equí tienes la llista completa de los teclaos disponibles:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalación/anovamientu" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "¿Ye una instalación o un anovamientu?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalación" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Anovamientu de %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Instalación nueva" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"¡Cambia'l CD-ROM!\n" +"Inxerta'l discu etiquetáu como «%s» nel llector ya primi «D'acuerdu» cuando " +"lo faigas.\n" +"Si nun lu tienes, primi «Encaboxar» pa impidir la instalación dende esti CD-" +"ROM." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Tán buscándose los paquetes disponibles…" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Al sistema nun-y queda abondu espaciu pa facer la instalación o " +"l'anovamientu (%d MB > %d MB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "El tamañu seleicionáu supera l'espaciu disponible" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipu d'instalación" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Nun seleicionesti nengún grupu de paquetes.\n" +"Escueyi la instalación mínima que quies:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Con X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Ta preparándose l'anovamientu…" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Ta instalándose'l paquete «%s»" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Prodúxose un error al ordenar los paquetes:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Prodúxose un error al instalar el paquete «%s»." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configuración de dempués de la instalación" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Anovamientos" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Agora tienes la oportunidá de configurar medios en llinia." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Esto permite instalar anovamientos de seguranza." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Pa configurar estos medios vas precisar una conexón a internet\n" +"que funcione.\n" +"\n" +"¿Quies configurar los medios d'anovamientu?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "¿Quies retentalo?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Prodúxose un error al amestar el mediu" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Agora tienes la oportunidá de baxar paquetes anovaos. Estos paquetes\n" +"anováronse dempués de publicar la distribución ya ye posible que contengan\n" +"igües de fallos ya parches de seguranza.\n" +"\n" +"Pa baxar estos paquetes vas precisar una conexón a internet que\n" +"funcione.\n" +"\n" +"¿Quies instalar los anovamientos?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Tarxeta de soníu" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfaz gráfica" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rede ya internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxys" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nivel de seguranza" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Tornafuéu" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Ta preparándose'l programa d'arrinque inicial…" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Ten paciencia, esta aición pue tardar un tiempu…" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Ta creándose'l disquete d'instalación automática…" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Dalgunos pasos nun se completaron.\n" +"\n" +"¿De xuru que quies colar agora?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Norabona" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Reaniciar" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Llingua" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Traducciones" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Llicencia" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mur" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Tipu d'instalación" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tecláu" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Seguranza" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Particionáu" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatéu" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Seleición de paquetes" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalación" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Usuarios" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Cargador d'arrinque" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Configuración de X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Resume" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servicios" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Anovamientos" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" diff --git a/perl-install/install/share/po/az.po b/perl-install/install/share/po/az.po new file mode 100644 index 000000000..cf531fdc8 --- /dev/null +++ b/perl-install/install/share/po/az.po @@ -0,0 +1,1650 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Mətin Əmirov <metin@karegen.com>, 2001-2003, 2004 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Azerbaijani (http://www.transifex.com/MageiaLinux/mageia/" +"language/az/)\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Qovluq" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Qurulu olan paketlər yoxlanır..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Güncəllənəcək paketlar tapılır" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Sisteminizin yenilənməsi üçün bu paketlər silinəcək: %s\n" +"\n" +"\n" +"Bu paketləri həqiqətən də silmək istəyirsiniz?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%s faylı oxunurkan xəta oldu" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Şəbəkə" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Səlahiyyət yoxdur" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Bölmələmədən əvvəl görüntü alına bilməz" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Ekran görüntüləri qurulumdan sonra %s mövqeyində olacaqdır" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Quraşdırma" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Eyni zamanda %s da şəkilləndirilməlidir" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Sisteminizdaki bə'zi avadanlıqlar işləməsi üçün düzgün sürücülərə ehtiyac " +"duyar.\n" +"Bunun haqqında %s də/a lazımi malumatları tapa bilərsiniz" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Şəbəkə fəallaşdırılır" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Şəbəkə dayandırılır" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "sınamağa dəyər" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "vacib" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "çox ə'la" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "ə'la" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "bəlkə" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "İzahat yoxdur" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Xəta baş verdi" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Ölümcül xəta yarandı: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "İş Stansiyası" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Ofis İş Stansiyası" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"İdarə proqramları: kəlmə işləyənlər (LibreOffice Writer, Kword), " +"hesablayıcılar və pdf göstəriciləri, vs." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Oyun stansiyası" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Məzəli proqramlar: arkad, lövhə oyunları, strategiya, vs" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedya stansiyası" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Səs və video çalınması/düzəliş proqramları" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "İnternet stansiyası" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Elektronik məktub və xəbər oxuyucu vasitələr dəstəsi (pine, mutt, tin..) və " +"Veb səyyahları" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Şəbəkə Kompüteri (alıcı)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "SSH daxil bir çox protokolların alıcıları" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Kompüter qurğularını asandlaşdıran vasitələr" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsol Vasitələri" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editorlar, rəflər, fayl vasitələri, terminallar" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "İnkişaf" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C və C++ inkişaf kitabxanaları, proqramları və daxil ediləcək fayllar" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Sənədlər" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Linuks və sərbəst proqram tə'minatı haqqında Kitablar və Howtolar" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standartları Bazası. Üçüncü partiya tə'minat dəstəyi" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Veb Vericisi" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Vericisi" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Atəş Divarı/İstiqamətləndirici" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "İnternet keçidi" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Mə'lumat Bazası" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Veb/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Poçt" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix poçt vericisi" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL ya da MariaDB mə'lumat bazası vericisi" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Şəbəkə Kompüter vericisi" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS vericisi, SMB vericisi, Vəkil vericisi, SSH verici" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Qrafiki Mühit" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "KDE, əsas qrafiki ara üz və yardımçi proqramlar kolleksiyası" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME iş stansiyası" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"İstifadəçi dostu proqram və masa üstü ilə bərabər qrafiki ara üz vasitələri" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Başqa qrafiki ara üzlər" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Vasitələr" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH Vericisi" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Bir xəta oldu, yalnız necə düzəldiləcəyi bilinmir.\n" +"Davam edin, riski sizə aitdir!" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Bə'zi paketlər doğru olaraq qurulumu bitirmədi.\n" +"Cdrom sürücünüz ya da cdromunuz düzgün işləmir.\n" +"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl media/main/*.rpm\"\n" +"əmrini istifadə edərək Cd-Rom'u yoxlayın.\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Başlanğıc addımı `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Qurulumu %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> irəli/geri" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Paket Qruplarının Seçimi" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Fərdi paket seçimi" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Seçili olmayan hamısını" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Ümumi böyüklük: %d / %d Mb" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Buraxılış: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Böyüklük: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Əhəmiyyət:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s əksik olduğuna görə" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "%s razı qalmadığına görə" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s irəliləndirməyə çalışılır" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s-i saxlamaq üçün" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Aşağıdakı paketlər qurulacaq" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Aşağıdakı paketlər sistemdən silinəcəklər" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Avtomatik seçili paketləri göstər" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Qur" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Paket seçkiləri yenilənir" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimal qurulum" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Proqram Tə'minatı İdarəsi" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Qurmaq istədiyiniz paketləri seçin" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Qurulur" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Təfsilatsız" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "İcmal" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Qur" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "quraşdırılmayıb" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Bir xəta oldu" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Xahiş edirik, klaviatura düzülüşünüzü seçin" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Qurulum/Yeniləmə" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Bu bir qurulum, yoxsa yeniləmədir?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Qur" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s-i yenilə" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s üçün şifrələmə açarı" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Mövcud olan paketlər axtarılır." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Yüklə" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Qeyd Et" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Səhv fayl" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Seçili böyüklük var olandan daha böyükdür" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Qurulum növü" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Heç bir paket qrupunu seçmədiniz.\n" +"Xahiş edirik, istədiyiniz ən kiçik qurulumu seçin:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X ilə" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Əsas sənədlərlə birlikdə (məsləhət edilən!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Həqiqətən minimal qurulum (xüsusilə urpmi olmasın)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Qurulum hazırlanır" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s paketi qurulur" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Paketləri istərkən xəta yarandı:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Yenə də davam edək?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Qurulum sonrası qurğular" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Yeniləmələr" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Aşağıdakı paketlər qurulacaq" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Medium əlavə etmə xətası" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"İndi siz yenilənmiş paketləri endirib qurma imkanına maliksiniz. Bu " +"paketlər\n" +"distribusiya buraxıldıqdan sonra yeniləniblər və təhlükəsizlik ya da xəya " +"həllərini\n" +"daxil edə bilərlər.\n" +"\n" +"Bu paketləri endirmək üçün fəal İnternet bağlantınız olmalıdır \n" +"\n" +"Yeniləmələri qurmaq istəyirsiniz ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%2$s üstündə %1$s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Avadanlıq" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Səs kartı" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Qrafiki ara üz" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Şəbəkə və İnternet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Vəkil vericiləri" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "quraşdırılıb" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Təhlükəsizlik Səviyyəsi" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Atəş Divarı" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "fəal" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "qeyri-fəal" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Siz X-i quraşdırmadınız. Bundan əminsinizmi?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "%s sürücüsünə boş bir disket yerləşdirin" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Avtomatik qurulum disketi hazırlanır" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Bə'zi bölmələr bitdi.\n" +"\n" +"Həqiqətən də çıxmaq istəyirsiniz?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Təbriklər" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Yenidən başlat" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Dil" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lisenziya" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Siçan" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Sabit disklərin aşkar edilməsi" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Klaviatura" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Təhlükəsizlik" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Bölmələndirmə" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Qurulur" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "İstifadəçilər" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Açılış yükləyicisi" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X quraşdırılması" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "İcmal" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Xidmətlər" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Yeniləmələr" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Çıxış" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Mövcud əkslərin siyahısını almaq üçün %s səhifəsi ilə təmas qurulur..." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Paketleri almaq üçün bir əks ünvanı seçin" diff --git a/perl-install/install/share/po/be.po b/perl-install/install/share/po/be.po new file mode 100644 index 000000000..21857ccd2 --- /dev/null +++ b/perl-install/install/share/po/be.po @@ -0,0 +1,1639 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Alexander Bokovoy <ab@avilink.net>, 2000 +# Maryia Davidouskaia <maryia@scientist.com>, 2000 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Belarusian (http://www.transifex.com/MageiaLinux/mageia/" +"language/be/)\n" +"Language: be\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Каталёг" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Пошук пакетаў для абнаўлення" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Памылка чытання файлу %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Сетка" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Адмоўлена ў доступе" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Канфігурацыя" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Пэўнае абсталяванне патрабуе камерцыйных драйвераў для працы.\n" +"Часткова інфармацыю пра іх можна атрымаць тут: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Далучэнне да сеткі" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Адлучэнне ад сеткі" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "павінны мець" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "важна" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "вельмі добра" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "добра" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "можа быць" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Апісаньне адсутнічае" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Офісныя праграмы: працэсары словаў (LibreOffice Writer, Kword), электроныя " +"табліцы, аглядальнікі pdf-файлаў, і г.д." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Забаўляльныя праграмы: аркады, стратэгіі і г.д." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Рэдактары і прайгравальнікі гуку і відэа" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Кансольныя інструментальныя сродкі" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Рэдактары, абалонкі, тэрміналы" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Распрацоўка" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Бібліятэкі і праграмы для распрацоўкі на С і С++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Дакумэнтацыя" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "нігі і Howto па Linux і Free Software" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "База даньняў" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Пошта" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй " +"інструментальных сродкаў" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Графічнае асяродзе са зручным дзеля выкарыстання наборам прыкладанняў і " +"інструментальных сродкаў" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Іншыя графічныя Працоўныя сталы" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Карыснасьці" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Узнікла памылка, якую не атрымліваецца карэктна апрацаваць,\n" +"таму працягвайце на сваю рызыку." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Некаторыя важныя пакеты не былі ўсталяваны карэктна.\n" +"Другі ваш cdrom дыск ці ваш cdrom маюць дэфекты.\n" +"Праверце cdrom на вашым кампутары, выкарыстоўваючы\"rpm -qpl media/main/*.rpm" +"\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Пераход на крок ‛%s’\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Усталяванне %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> паміж элементамі" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"У Вашай сістэме маецца недахоп рэсурсаў, таму магчымы праблемы\n" +"пры ўсталяванні %s. У гэтым выпадку паспрабуйце тэкставую\n" +"праграму ўсталявання. Для гэтага націсніце ‛F1’ у час загрузкі, а потым\n" +"набярыце ‛text’ і націсніце <ENTER>." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Выбар групы пакетаў" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Асабісты выбар пакетаў" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Агульны памер: %d / %d Мб" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Вэрсія: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Памер: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Вы не можаце выбраць гэты пакет, таму як не хапае месца для яго ўсталявання" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Наступныя пакеты будуць даданы да сістэмы" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Наступныя пакеты будуць выдалены" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмяніць" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Вы не можаце адмяніць вылучэнне гэтага пакету. Ён ужо ўсталяваны" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Вы не можаце адмяніць вылучэнне гэтага пакету. Яго патрэбна абнавіць" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Усталёўка" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Выбар пакетаў для ўсталявання" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Усталёўваем" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Агульныя зьвесткі" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Настройка" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Адбылася памылка" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Усталёўка" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Прагляд даступных пакетаў" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Загрузка" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Захаваць" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Падрыхтоўка ўсталяваньня" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Усталяванне пакету %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Атрымалася памылка ўпарадкавання пакетаў:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Усё роўна працягваць?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Настройка пасля ўсталявання" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Аднавіць" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Наступныя пакеты будуць даданы да сістэмы" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s на %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Абсталяваньне" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Узровень бясьпекі" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "выключаны" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Устаўце дыскету ў дыскавод %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Стварэнне дыскеты для ўсталявання" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Некаторыя крокі не завершаны.\n" +"Вы сапраўды жадаеце выйсці зараз?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Перазагрузка" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Выбар мовы" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Мыш" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Вызначэнне жорсткага дыску" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Клавіятура" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Бясьпека" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Усталёўваем" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Карыстальнікі" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Настройка X Window" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Агульныя зьвесткі" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Сэрвісы" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Выход" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Выбар люстра для атрымання пакетаў" diff --git a/perl-install/install/share/po/bg.po b/perl-install/install/share/po/bg.po new file mode 100644 index 000000000..23f160fca --- /dev/null +++ b/perl-install/install/share/po/bg.po @@ -0,0 +1,1651 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Borislav Aleksandrov <B.Aleksandrov@cnsys.bg>, 2003 +# Boyan Ivanov <boyan17@bulgaria.com>, 2003 +# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000 +# Kolio Kolev <kolio_kolev@biotronica.net>, 2009 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Georgi Georgiev <georgiev_1994@abv.bg>\n" +"Language-Team: Bulgarian (http://www.transifex.com/MageiaLinux/mageia/" +"language/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Директория" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Търси във вече инсталираните пакети..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Търся пакети за обновяване" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Следните пакети ще бъдат изтрити за да се позволи обновяване на системата: " +"%s\n" +"\n" +"\n" +"Действително ли искате да изтриете тези пакети?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Грешка при четенето на файла %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Мрежа" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Лисват права" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Не мога да направя моментна \"снимка\" преди разделянето на диска " + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Снимки ще бъдат налични след инсталиране в %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Настройка" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Вие трябва също да форматирате %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Част от хардуера на компютъра ви се нуждае от ``собствените си'' драйвери, " +"за да работи.\n" +"Можете да намерите повече информация за това на: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Включвам мрежата" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Изключване на мрежата" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Копиране в прогрес" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "нужен" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "важен" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "много добър" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "добър" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "става" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Без описание" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Появи се грешка:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Получи се непоправима грешка: %s" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Без въпроси отново" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d инсталационни транзакции пропаднаха" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Работна станция" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Офисна работна станция" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Офис програми: word-процесори (LibreOffice Writer, Kword), таблици " +"(LibreOffice Calc, Kspread), преглед на PDF, и т.н." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Игрална станция" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Забавни програми: аркадни игри, игри на маса, стратегии и т.н." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Мутимедийна станция" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Програми за пускане/поправяне на звук и видео" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Интернет станция" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Мрежов компютър (клиент)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Клиенти за различни протоколи включително SSH" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Инструменти за улесняване настройката на компютъра ви" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Конзолни инструменти" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Редактори, шелове, файлови инстрименти, терминали" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Разработка" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Библиотеки за разработка на C и C++, програми и include файлове" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Документация" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Книги и HOTWO-та за Linux и свободния софтуер" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Web Сървър" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Групуер" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Сървър" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Сървър, Firewall/Рутер" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Интернет gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Сървър с директории" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP сървър" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Име на домейн и Мрежов Информационен Сървър" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Сървър, Бази-данни" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Сървър, Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache и Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Е-поща" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix пощенски сървър" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL или MariaDB сървър за бази-данни" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Мрежов компютър, сървър" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS сървър, SMB сървър, Proxy сървър, SSH сървър" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Графична среда" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"The K Desktop Environment, проста среда с колекция от придружаващи " +"инструменти" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gnome работна станция" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Графична среда с потребителски набор от приложения и desktop инструменти" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQT Десктоп" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE Десктоп" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Други графични desktop-и" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Помощни програми" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH Сървър" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Появи се грешка, но не знам как да се справя с нея деликатно.\n" +"Можете да продължите на свой риск." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Някои важни пакети не се инсталираха както трябва.\n" +"Или CDROM устройството ви или компакт диска ви е дефектен.\n" +"Проверете компакт диска на инсталирания компютър използвайки \"rpm -qpl " +"media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Навлизам в етап `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Инсталация на %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> между елементите" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Вашата система е с малки ресурси. Може да имате проблеми с инсталирането\n" +"на %s. Ако се появи проблем опитайте с текстовата инсалация. Зацелта,\n" +"натиснете 'F1', когато стартирате от CDROM и въведете 'теьт'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma Десктоп" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME Десктоп" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Избор на група пакети" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Избиране на пакети един по един" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Обща големина: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Версия: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Размер: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d КБ\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Важност:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Не можете да отбележете/деотбележете този пакет" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "поради неопределен %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Не можете да оставите пакета немаркиран, защото нямате място да го " +"инсталирате" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Следните пакети ще бъдат инсталирани" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Следните пакети ще бъдат премахнати" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Това е нужен пакет, не може да бъде немаркиран" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Не можете да оставите този пакет немаркиран. Той вече е инсталиран" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Не можете да изключите този пакет. Той трябва да бъде обновен" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Покажи автоматично отбелязаните пакети" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Инсталирай" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Прочитане/Запис на направения избор" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Обновяване на избора на пакети" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Миминална инсталация" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Управление на софтуер" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Изберете пакетите, които искате да инсталирате" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Инсталирам" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Без подробности" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Обобщение" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Настройка" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "не е конфигуриран" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Появи се грешка" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Моля, изберете подреждане на клавиатурата" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Инсталирай/Обнови" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Това нова инсталация ли е или обновяване ?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Инсталиране" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Обновява %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Ключ за криптиране на %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Търся налични пакети..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Натовареност" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Запазва" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Избраната големина е по-голяма от достъпното пространство" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Тип инсталация" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Вие не сте избрали никаква група от пакети.\n" +"Моля, изберете минималната инсталация кояти искате:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "С X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "С базова документация (препоръчва се!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Наистина минимална инсталация (особенно без urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Подготвям инсталацията" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Инсталиране на пакета %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Появи се грешка при поръчването на пакетите:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Да продължа ли все пак ?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Повторен опит" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "След инсталационна настройка" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Обновяване" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Следните пакети ще бъдат инсталирани" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Грешка при добавяне на източник" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s на %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Хардуер" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Звукова карта" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Графичен интерфайс" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Мрежа и интернет" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Ниво на защита" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Защитна стена" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "активирано" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "изключен" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Вие не сте конфигурирали X. Сигурни ли сте, че искате това?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Сложете празна дискета в устройство %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Подготвям дискета с автоматична инсталация" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Някои етапи не са завършени.\n" +"\n" +"Наистина ли искате да излезете сега ?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Поздравления" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Престартира" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Избор на език" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Регионални настройки (локализация)" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Лиценз" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Мишка" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Засичане на дисковете" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Клавиатура" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Сигурност" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Разделяне на дялове" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Инсталирам" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Потребители" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Настройка на Х" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Обобщение" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Услуги" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Обновяване" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Излез" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Свързване с %s web сайт за получаване на списъка с налични огледални " +#~ "сървъри..." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Изберете огледален сървър,от който да получите пакетите" diff --git a/perl-install/install/share/po/bn.po b/perl-install/install/share/po/bn.po new file mode 100644 index 000000000..92c8a547d --- /dev/null +++ b/perl-install/install/share/po/bn.po @@ -0,0 +1,1685 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jamil Ahmed <jamil@BengaLinux.Org>, 2004-2005,2007 +# Khandakar Mujahidul Islam <suzan@BengaLinux.Org>, 2004 +# Omi Azad <omi@altruists.org>, 2004 +# Progga <progga@BengaLinux.Org>, 2004 +# Samia <mailsamia2001@yahoo.com>, 2005 +# Tisa Nafisa <tisa_nafisa@yahoo.com>, 2007 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Bengali (http://www.transifex.com/MageiaLinux/mageia/language/" +"bn/)\n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "আপনার কি আরও একটি সম্পুরক মাধ্যম আছে?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"নিচের মিডিয়াটি পাওয়া গেছে এবং ইনস্টল করার সময় ব্যবহার করা হবে: %s.\n" +"\n" +"\n" +"আপনার কি কনফিগার করার জন্য কোনো সম্পুরক ইনস্টলেশন মিডিয়াম আছে?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "নেটওয়ার্ক (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "নেটওয়ার্ক (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "নেটওয়ার্ক (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS সেটআপ" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "অনুগ্রহ করে আপনার NFS মিডিয়ার হোস্টনাম এবং ডিরেক্টরী প্রবেশ করান" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "হোস্টনাম পাওয়া যাচ্ছে না" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "ডিরেক্টরী অবশ্যই \"/\" দিয়ে শুরু হবে" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS মাউন্টের জন্য হোস্টনাম ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "ডিরেক্টরি" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "সম্পুরক" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "এই mirror এ কোন hdlist ফাইল পাওয়া যাচ্ছে না" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "যে সমস্থ প্যাকেজ ইনস্টল হয়ে আছে সেগুলি পর্যবেক্ষন করা হচ্ছে..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "আপগ্রেড করার জন্য প্যাকেজ খোঁজা হচ্ছে..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "আপগ্রেডের পূর্বে প্যাকেজ মুছে ফেলা হচ্ছে..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"আপনার সিস্টেম আপগ্রেড করার ক্ষেত্রে নিম্নলিখিত প্যাকেজগুলো মুছে যাবে: %s\n" +"\n" +"\n" +"আপনি কি আসলেই এই প্যাকেজগুলো মুছে ফেলতে চান?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%s ফাইল পড়াতে ত্রুটি" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "নিম্নলিখিত ডিস্কগুলো নামান্তর করা হয়েছে:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (পূর্বের নাম %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "এইচ-টি-টি-পি" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "এফ-টি-পি" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "নেটওয়ার্ক" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "অনুগ্রহ করে একটি মিডিয়া নির্বাচন করুন" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "এই ফাইলটি আগে থেকেই আছে। করব?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "অনুমতি প্রদান করা হয়নি" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "ত্রুটিপূর্ণ NFS নাম" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "অগ্রহণযোগ্য মিডিয়া %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "পার্টিশন করার আগে স্ক্রিনশট তৈরী করা যায়নি" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "%s -এ ইনস্টল করার পরে স্ক্রিনশট পাওয়া যাবে" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr " ইনস্টলেশন" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "কনফিগারেশন" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "আপনাকে অবশ্যই %s-ও ফরম্যাট করতে হবে" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"আপনার কম্পিউটারের কিছু হার্ডওয়্যার কাজ করার জন্য ``মালিকানার'' ড্রাইভার প্রয়োজন।\n" +"আপনি তাদের সম্পর্কে এখান থেকে তথ্য নিতে পারবেন: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "নেটওয়ার্ককে চালু করা হচ্ছে" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "নেটওয়ার্ককে বন্ধ করা হচ্ছে" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "ভবিষ্যতে ব্যবহারের জন্য ডিস্কে কিছু প্যাকেজ কপি করা হচ্ছে" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "কপি সম্পন্ন হচ্ছে" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "অবশ্যই থাকতে হবে" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "জরুরী" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "খুবই সুন্দর" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "সুন্দর" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "হয়তোবা" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "বিবরণ নেই" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "একটি মারাত্মক ত্রুটি ঘটেছে: %s" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "ওয়ার্কষ্টেশন" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "অফিস ওয়ার্কষ্টেশন" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"অফিস প্রোগ্রামসমূহ: ওয়ার্ডপ্রসেসর (LibreOffice Writer, Kword), স্প্রেডসিট " +"(LibreOffice Calc, Kspread), PDF ফাইল প্রদর্শক ইত্যাদী" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "গেশ ষ্টেশন" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "উদ্দীপনামূলক প্রোগ্রামসমূহ: আর্কেড, বোর্ড, স্ট্রেটেজি, ইত্যাদি" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "মাল্টিমিডিয়া ষ্টেশন" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "সাউন্ড এবং ভিডিও দেখার/এডিট করার প্রোগ্রামসমূহ" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "ইন্টারনেট ষ্টেশন" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"মেইল আদানপ্রদান, খবর পড়া এবং ওয়েব ব্রাউজিং (mutt, tin..) এর জন্য কিছু টুলের সেট" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "নেটওয়ার্ক কম্পিউটার (ক্লাইন্ট)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "SSH সহ বিভিন্ন প্রোটকলের জন্য ক্লাইন্টসমূহ" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "আপনার কম্পিউটারের কনফিগারেশন সহজ করার জন্য কিছু টুল" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "কনসল টুল" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "এডিটর, শেল, ফাইল টুল, টার্মিনাল সমূহ" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "ডেভলপমেন্ট" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C এবং C++ ডেভলপমেন্টের লাইব্রেরী, প্রগ্রাম এবং include ফাইলসমূহ" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "ডকুমেন্টেশন" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "লিনাক্স এবং ফ্রী সফটওয়ার সংক্রান্ত বই ও হাউটু (HOWTO)" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "লিনাক্সের সাধারণ আধার। তৃতীয়পক্ষ এপ্লিকেশন সমূহের সাপোর্ট" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "ওয়েব সার্ভার" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "এ্যপাচি" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "গ্রুপওয়্যার" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "কোলাব সার্ভার" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "ফায়ারওয়াল/রাউটার" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "ইন্টারনেট গেটওয়ে" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "মেইল/সংবাদ" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix মেইল সার্ভার, Inn সংবাদ সার্ভার" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "ডিরেক্টরি সার্ভার" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP সার্ভার" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "ডিএনএস/এনআইএস" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "ডোমেইন নেম এবং নেটওয়ার্ক ইনফরমেশন সার্ভার" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "ফাইল এবং প্রিন্টার শেয়ারিং সার্ভার" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS সার্ভার, Samba সার্ভার" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "ডেটাবেস" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL অথবা MariaDB ডেটাবেস সার্ভার" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "ওয়েব/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "এ্যপাচি, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "মেইল" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix মেইল সার্ভার" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL অথবা MariaDB ডেটাবেস সার্ভার" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "নেটওয়ার্ক কম্পিউটার সার্ভার" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS সার্ভার, SMB সার্ভার, Proxy সার্ভার, ssh সার্ভার" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "গ্রাফিকাল পরিবেশ" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "K ডেক্সটপ, কিছু সহযোগীমূলক টুলের সমন্বয়ে একটি সাধারণ গ্রাফিকাল পরিবেশ" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "গুহনোম ওয়ার্কষ্টেশন" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"ব্যবহারকারীর বন্ধুসূলভ কিছু এপ্লিকেশন এবং ডোক্সটপ টুলের সমন্বয়ে একটি গ্রাফিকাল পরিবেশ" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "অন্যান্য গ্রাফিকাল ডেক্সটপ" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "ইউটিলিটিসমূহ" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH সার্ভিস" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "ওয়েবমিন" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "ওয়েবমিন দূরবর্তী কনফিগারেশন সার্ভার" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "নেটওয়ার্ক ইউটিলিটিসমূহ/পর্যবেক্ষণ" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "পর্যবেক্ষণ টুলসমূহ, হিসাবরক্ষণ প্রসেস করে, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia উইজার্ডসমূহ" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "সার্ভার কনফিগার করার জন্য উইজার্ডসমূহ" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"একটি ত্রুটি সম্পাদিত হয়েছে, কিন্তু আমি বুঝতে পারছিনা\n" +"কিভাবে এটা সন্দরভাবে হ্যান্ডল করবো।\n" +"আপনি নিজের ঝুঁকিতে অগ্রসর হতে পারেন।" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"কিছু গুরুত্বপূর্ণ প্যাকেজ সঠিকভাবে ইনস্টল হয়নি।\n" +"হয় আপনার সিডিরম ড্রাইভ অথবা আপনার সিডিরম ত্রুটিপূর্ণ।\n" +"কোন ইনস্টল কম্পিউটারে \"rpm -qpl media/main/*.rpm\" কমান্ডের মাধ্যমে সিডিরম " +"পরীক্ষাকরুন\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "`%s' স্টেপে প্রবেশ করছি\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s ইনস্টলেশন %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "উপাদানগুলোর মধ্যে <Tab>/<Alt-Tab> " + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "প্যাকেজ গ্রুপ নির্বাচন" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "আলাদাভাবে প্যাকেজ নির্বাচন" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "সব কিছু অনির্বাচিতকরণ" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "মোট সাইজ: %d / %d এমবি" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "ভার্সন:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "সাইজ:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "প্রাধান্য:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "আপনি এই প্যাকেজটি নির্বাচন/অ-নির্বাচন করতে পারবেন না" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s না থাকার কারনে" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "%s যথেষ্ট না হবার কারনে" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s প্রচারের চেষ্টা চলছে" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s রাখার কারণে" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"আপনি এই প্যাকেজটি নির্বাচন করতে পারবেননা যেহেতু এটা ইনস্টল করার জন্য যথেষ্ট জায়গা " +"ফাঁকা নেই" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "এই প্যাকেজগুলি ইনস্টল হতে যাচ্ছে" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "এই প্যাকেজগুলি অপসরিত হতে যাচ্ছে" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "এটি একটি বাধ্যতামূলাক প্যাকেজ, এটি কোনভাবেই বাদ দেয়া যাবেনা" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" +"আপনি এই প্যাকেজটির অ-নির্বাচন করতে পারবেন না, এটা আগে থেকেই ইনস্টল হয়ে আছে" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "আপনি এই প্যাকেজটি অ-নির্বাচন করতে পারবেন না। এটা অবশ্যই আপগ্রেড হতে হবে" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "সংয়-নির্বাচিত প্যাকেজগুলি দেখাও" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "ইনস্টল" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "নির্বাচনসমূহ লোড/সংরক্ষণ করো" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "প্যাকেজের নির্বাচন আপগ্রেড করা হচ্ছে" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "সর্বনিম্ন ইনস্টল" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "সফটওয়্যার ম্যানেজমেন্ট" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "আপনি যেই প্যাকেজগুলি ইনস্টল করতে চান তা পছন্দ করুন" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "ইনস্টলেশন" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "কোন বিস্তারিত ছাড়া" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "সারাংশ" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "কনফিগার" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "কনফিগার করা হয়নি" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"নিম্নলিখিত ইনস্টলেশন মিডিয়া পাওয়া গেছে।\n" +"যদি আপনি এগুলোর মধ্যকার কিছু এড়িয়ে যেতে চান, তাহলে এখন সেগুলোকে অনির্বাচিত করুন।" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"ইনস্টলেশনের আগে আপনি সিডির তথ্যসমূহ হার্ডডিস্কে কপি করতে পারেন।\n" +" এরপর হার্ডডিস্ক থেকে ইনস্টলেশন চলতে থাকবে এবং সিস্টেম সম্পূর্ন ইনস্টলেশনের পরও " +"প্যাকেজগুলো রয়ে যাবে।" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "CD গুলো সম্পুর্ন কপি করো " + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "একটি ত্রুটি সম্পাদিত হয়েছে" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "অনুগ্রহ করে আপনার কীবোর্ড বিন্যাস পছন্দ করুন।" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "ইনস্টল/আপগ্রড" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "এটা কি একটি ইনস্টলেশন না আপগ্রেড?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr " ইনস্টলেশন" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s আপগ্রড করো" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s -এর জন্য এনক্রিপশন কী" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"আপনার সিডিরম পরিবর্তন করুন!\n" +"অনুগ্রহ করে \"%s\" লেখা সিডিরমটি আপনার ড্রাইভে প্রবেশ করান এবং যখন সেটা হয়ে যাবে " +"ঠিক আছে চাপুন।\n" +"যদি সেটা আপনার না থাকে, এই সিডিরম থেকে ইনস্টলেশন এড়িয়ে যেতে বাতিল চাপুন।" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "বরাদ্দকৃত প্যাকেজসমূহ খোঁজা হচ্ছে..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"ইনস্টলেশন অথবা সাম্প্রতিকীকরনের জন্য আপনার সিস্টেমে যথেষ্ট পরিমান জায়গা খালি নেই " +"(%dএমবি > %dএমবি)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"অনুগ্রহ করে প্যাকেজ নির্বাচন লোড বা সংরক্ষণ বাছাই করুন।\n" +"এই ফরম্যাটটি auto_install দ্বারা তৈরী ফাইলসমূহের মত।" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "চাপ" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "সংরক্ষণ" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "অগ্রহণযোগ্য ফাইল" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "গুনোম" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "উপস্থিত জায়গার চাইতে নির্বাচিত সাইজটি অনেক বড়" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "ইনস্টলের ধরণ" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"আপনি প্যাকেজের কোন গ্রুপ নির্বাচন করেননি।\n" +"অনুগ্রহ করে আপনি যে ক্ষুদ্রাকৃতির ইনস্টলেশন চান তা পছন্দ করুন:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X-এর সাথে" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "সাধারন নির্দেশিকার সাথে (পরামর্শ দেয়া হচ্ছে!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "এক্কেবারেই ক্ষুদ্র ইনস্টলেশন (বিশেষ করে কোন urpmi ছাড়া)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "ইনস্টলেশনের প্রস্তুতি চলছে" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s প্যাকেজ সমূহ ইনস্টল করা হচ্ছে" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "প্যাকেজগুলো বিন্যস্ত করতে গিয়ে একটি ভুল ছিল:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "তবুও যাব?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "পুনরায় চেষ্টা করো" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "এই প্যাকেজটি এড়িয়ে যাও" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "\"%s\" মাধ্যমের সব প্যাকেজ এড়িয়ে যাও" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "মিডিয়া এবং প্যাকেজের নির্বাচন এ ফিরে যাও" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "%s প্যাকেজ ইনস্টল করতে সমস্যা হয়েছে।" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "ইনস্টলের পরের কনফিগারেশন" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "অনুগ্রহ করে নিশ্চিত করুন যে সাম্প্রতিক মডিউলগুলো %s ড্রাইভ এ আছে" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "আপডেট" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "এই প্যাকেজগুলি ইনস্টল হতে যাচ্ছে" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "মাধ্যম যোগ করার প্রক্রিয়া বিফল হয়েছে" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"আপনি এখন আপডেট প্যাকেজ ডাউনলোড করতে পারবেন। এই প্যাকেজগুলো\n" +"এই ডিস্ট্রিবিউশন রিলিজ হবার পর আপডেট করতে পারেন। তারা নিরাপত্তা\n" +"বা ত্রুটি নির্দিষ্ট ধারণ করতে পারে।\n" +"\n" +"এই প্যাকেজগুলো ডাউনলোড করতে, আপনার ইন্টারনেট সংযুক্তিতে কাজ করতে\n" +"হবে।\n" +"\n" +"আপনি কি ইনস্টল আপডেট করতে চান?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s -এ %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "হার্ডওয়্যার" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "সাউন্ডকার্ড" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "গ্রাফিকাল ইন্টারফেস" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "নেটওয়ার্ট এবং ইন্টারনেট" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "প্রক্সিসমূহ" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "কনফিগার করা হয়েছে" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "সিকউরিটি লেভেল" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "ফায়ারওয়াল" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "সক্রিয় হয়েছে" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "অকার্যকর করা হয়েছে" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "আপনি X কনফিগার করেননি। আপনি কি নিশ্চিত এরকমটি চান?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"এই নিরাপত্তা লেভেলে, উইন্ডোজ পার্টিশনের ফাইলে প্রবেশ শুধুমাত্র অ্যাডমিনিস্ট্রেটরের আছে।" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "%s ড্রাইভে একটি ফাঁকা ফ্লপি ঢোকান" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "সয়ং ইনস্টল ফ্লপি তৈরী করা হচ্ছে..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"কিছু ধাপ সম্পূর্ন করা যায়নি।\n" +"\n" +"আপনি কি এখন বের হতে চান?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "স্বাগতম" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "রিবুট" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "ভাষা" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "স্থানীয়করণ" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "লাইসেন্স" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "মাউস" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "হার্ড ড্রাইভ সনাক্ত" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "ইনস্টলেশনের শ্রেনী" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "কি-বোর্ড" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "সিকিউরিটি" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "পার্টিশন করা হচ্ছে" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "ফরম্যাট করা হচ্ছে" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "প্যাকেজ পছন্দ করা হচ্ছে" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "ইনস্টলেশন" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "ব্যবহারকারী" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "বুটলোডার" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X কনফিগার" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "সারাংশ" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "সার্ভিস সমূহ" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "আপডেট" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "বাহির" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "mirror এর ইউ-আর-এল?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "ইউআরএল অবশ্যই ftp:// অথবা http:// দিয়ে শুরু হবে" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "উপস্থিত মিররের তালিকার জন্য %s-এ সংযুক্ত করা হচ্ছে..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "উপস্থিত মিররের তালিকার জন্য %s-এ যোগাযোগ করতে ব্যর্থ হয়েছে..." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "আপনি একটি মিরর পছন্দ করুন যেখান থেকে প্যাকেজগুলি নেবেন" diff --git a/perl-install/install/share/po/br.po b/perl-install/install/share/po/br.po new file mode 100644 index 000000000..597d0c82d --- /dev/null +++ b/perl-install/install/share/po/br.po @@ -0,0 +1,1672 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Breton (http://www.transifex.com/MageiaLinux/mageia/language/" +"br/)\n" +"Language: br\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !" +"=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n" +"%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > " +"19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 " +"&& n % 1000000 == 0) ? 3 : 4);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Deuit ganomp !" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Evideoc'h !" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Ho choaz !" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Ostilhoù burevek" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Evit ho plijadur" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Evit ar vugale" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Evit ar familh !" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Evit an diorroerien " + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Trugarez !" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Bezit dieub !" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Hag ur media all hoc'h eus ?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rouedad (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rouedad (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rouedad (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Kefluniadur NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Roit anv ostiz ha renkell ho media NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Mank ar ra anv an ostiz" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Dao en eus anv ur renkell kregiñ gant ur « / »" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Anv ostiz ar marc'hañ NFS ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Renkell" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "A-gresk" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"N’em eus ket kavout ur roll pakadoù e-barzh ar melezour-mañ. Kit da wiriañ " +"al lec'hiadur-mañ zo mad." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Gwelloc'h e vefe deoc'h bevaat « %s »" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Amañ e c'hellit bevaat mediaoù ouzhpenn ma peus c'hoant" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Ar vediom-mañ a ginnig pakadoù bremanaet evit ar vediom « %s »" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "O klask ar pakadoù staliet ..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "O klask ar pakadoù da vremanaat ..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "O tilemel ar pakadoù a-raok bremanaat ..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Ar pakadoù a-heul zo war-nes bezañ distaliet evit bremanaat ho reizhiad : " +"%s\n" +"\n" +"\n" +"Ha fellout a ra deoc'h da vat lemel anezho ?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Fazi en ur lenn ar restr %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Adenvelet e oa ar bladenn/pladennoù-mañ :" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (a vez graet %s dioutañ diaraok)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rouedad" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Dibabit ur media, mar plij" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Ar restr zo endeo. Rasklañ anezhañ ?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Aotre nac'het" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "N'eo ket un anv NFS mat" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "N'eo ket mat ar media %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "N'hellan ket sevel skrammpakeroù a-raok parzhañ" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Skrammpakeroù a vo bet kavet goude staliañ e %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "O staliañ" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Kefluniadur" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Ret eo deoc'h furmadiñ %s ivez" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "O lañsañ ar rouedad" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "O tizenaouiñ ar rouedad" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Gortozit mar plij, o tigas ar restr" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "n'hell ket bet ouzhpennet ar mediom" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Oc'h eilañ ur bern pakad hag a vo bet implijet diwezhatoc'h" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Oc'h eilañ" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "a rankfec'h kaout" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "a-bouez" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "brav-tre" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "brav" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "marteze" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "O tegas titouroù ar pakadoù eus an titouroù XML ..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Deskrivadur ebet" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"N’em eus ket gallet staliañ un darn pakad goulennet gant %s :\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Ur fazi zo bet :" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Degouezhet ez eus ur fazi sac'hus : %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Na c'houlenn ket adarre" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d gra zo bet sac'het" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Sac'het eo bet staliañ ar pakadoù :" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Post labour" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Post labour burevek" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programmoù burev : skridtreterezhioù (LibreOffice Writer, Kword), logerioù " +"(LibreOffice Calc, Kspread), gwelerien PDF, ..." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Arsav c'hoarioù" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Arsav liesvedia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programmoù evit seniñ/aozañ tonioù ha videoù" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Arsav internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Urzhiataer rouedad (kliant)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Pratikoù evit meur a gomenad (da skouer ssh)" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Ostilhoù evit kefluniañ hoc'h urzhiataer dre aes" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Ostilhoù letrin" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Aozerien, shelloù, ostilhoù restr, termenelloù" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Diorren" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Teuliadur" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Servijer Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Strollant" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Servijer Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Moger tan/Henter" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Dreuzell an Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Posteloù/keleier" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Servijer posteloù Postfix, servijer keleier Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Levr-bloaz" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Servijer FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Servijer DNS ha NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Servijer rannañ restroù ha moullerez" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Servijer NFS, servijer Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Stlennvon" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Servijer stlennvon PostgreSQL ha MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Post" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Servijer postel Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Servijer stlennvon PostgreSQL pe MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Servijer rouedad" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Servijer NFS, servijer SMB, servijer proksi, servijer SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Endeo grafikel" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Post labour Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "An Endro Burev K gant hec’h ostilhoù" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Post burevek GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Post labour Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Post burevek MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Post labour Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "An endeo grafikel diwar GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Burev LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Burev Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Burev LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "An endeo grafikel bihan ha buan" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Burevioù c'hrafek all" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, hag all" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Mavegoù" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Servijer SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Servijer Webmin ar gefluniadur a-bell" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Ostilhoù ar rouedad/diwall" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Skoazellerien Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Skoazellerien evit kefluniañ ar servijer" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verañ naet.\n" +"Kendalc'hit war ho mar." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "O kregiñ gant al lankad `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Staliadur %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> etre elfennoù" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Goustad eo ar servijer Xorg da loc'hañ. Gortozit mar plij..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Diuzadenn ar media" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Staliañ burev Plasma %s" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Staliañ burev GNOME %s" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Staliadur diouzhoc'h" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Burev Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Burev GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Burev diouzhoc'h" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Setu ur rakwel eus burev « %s »." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klikit war ar skeudennoù evit sell eus ur skeudenn brasoc'h" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Diuzadenn strollad pakadoù" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Diuz pakadoù unan hag unan" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Andiuz an holl re" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Ment hollek : %d / %d Mo" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Stumm : " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Ment : " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d Ko\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Talvoudegezh : " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "N'hellit ket diuz/andiuz ar pakad-mañ" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "peogwir e vank %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "peogwir e vank %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "evit mirout %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"N'hellit ket dibab ar pakad-mañ peogwir n'eus ket a-walc'h a egor evit " +"staliañ anezhañ" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Ar pakadoù a-heul zo war-nes bezañ staliet" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Ar pakadoù a-heul zo war-nes bezañ lamet" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Hemañ zo ur pakad ret, n'hell ket bezañ andiuzet" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endeo" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "N'hellit ket andiuz ar pakad-mañ. Ret eo dezhañ bezañ bremanaet" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Diskouez ar pakadoù a zo dibabet emgefreek" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Staliañ" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Kargañ/Enrollañ an dibab" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "O bremanaat diuzadenn ar pakadoù" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Staliadur bihan" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Merañ ar pakadoù" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Dibabit ar pakadoù a vennit staliañ" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "O staliañ" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Munud ebet" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Amzer a chom :" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(o vrasjediñ ...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Diverradenn" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Kefluniañ" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "n'eo ket kefluniet" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Eilañ tout ar CDoù" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Ur fazi zo bet" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Dibabit reizhadur ho stokellaoueg mar plij" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Setu eo listenn leun ar stokellaoueg :" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Staliañ/Bremañaat" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Hag ur staliadur pe ur bremañadur eo ?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Staliadur" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Bremanaat %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Alc'hwez enrinegadur evit %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Nulañ ar staliadur ; adloc’hañ an urzhiataer" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Staliadur nevez" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "O kefluniañ CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Kemmit ho Cd-Rom !\n" +"\n" +"Lakait el lenner ar Cd-Rom warnañ an diketenn « %s » mar plij ha gwaskit Mat " +"eo da c'houde.\n" +"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar CD-Rom-se." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "O klask ar pakadoù hegerz ..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "N'eus ket egor dieub a-walac'h evit staliañ pe bremanaat (%dMo > %dMo)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Dibabit kargañ pe enrollañ choaz ar pakadoù mar plij.\n" +"Ar furmad zo hini ar restroù auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Kargañ" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Enrollañ" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "N'eo ket mat ar restr" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Dibab ar burev" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Amañ e c'hellit dibab ho seurt burev." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Brasoc'h eo ment dibabet evit egor dieub" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Seurt ar staliadur" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"N'eus ket strollad pakadoù dibabet ebet.\n" +"Dibabit ar staliañ vihanañ e fell deoc'h implij mar plij :" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Gant X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Staliañ ar pakadoù aliet" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Gant un teuliadur bihan (kuzuliet !)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Staliadur bihan gwir (n'eus urpmi ebet)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "O prientiñ ar bremanaat ..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "O prientiñ ar staliadur" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "O staliañ ar pakad %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Ur fazi zo bet en ur rummañ pakadoù :" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Kenderc'hel evelato ?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Adklask" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Tremen e-biou ar pakad-mañ" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Tremen e-biou pep pakad eus ar vediom « %s »" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Distro da ziuzadenn ar pakadoù hag ar media" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Ur fazi zo bet en ur staliañ ar pakad %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Kefluniadur goude staliañ" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Bremanaat" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Ar pakadoù a-heul zo war-nes bezañ staliet" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Adklask ?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Bet ez eus bet ur fazi en ur ouzhpennañ ar mediom" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Moaien zo dit da bellgargañ ar pakadoù bremanaet. Bremanaet e oa ar\n" +"pakadoù-mañ goude e oa echu an ingaladur. Gallout a ra kaout difazioù\n" +"surentez pe difazioù bogoù.\n" +"\n" +"Ret eo da gaout ur gevreadenn bev ouzh internet evit staliañ anezho.\n" +"\n" +"Mennout a rit staliañ anezho ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s war %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Periantel" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Kartenn gwelet" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Ketal kevregañ" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rouedad hag Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proksioù" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "kefluniet" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Live an surentez" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Moger tan" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "bevaatet" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "diweredekaet" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "N'eo ket kefluniet X. Ha fellout a ra deoc'h da vat ober an dra-mañ ?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "O prientiñ ar programm loc'hañ ..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Gortozit mar plij ; gellout a rafe bezañ hir ..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Lakait ur bladennig gwerc'h el lenner %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "O krouiñ ur bladennig staliañ emgefreek ..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Lankadoù 'zo n'int ket peurc'hraet.\n" +"\n" +"Mennout a rit kuitaat da vat bremañ ?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Brav" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Adlañsañ" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Yezh" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Troidigezh" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Aotre" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Logodenn" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Dinoiñ ar bladenn galet" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Renkad ar staliadur" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Stokellaoueg" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Diogelroez" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Parzhañ" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "O furmadiñ" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Choaz ar pakadoù" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Staliañ" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Arveriaded" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Karger loc'hañ" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Kefluniañ X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Diverradenn" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servijoù" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Bremanaat" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Kuitaat" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL ar melezour ?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Dao en deus an URL kregiñ gant ftp:// pe http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "O taremprediñ lec'hienn %s evit kaout roll ar melezourioù hegerz ..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Sac'het en ur zaremprediñ lec'hienn %s evit kaout roll ar melezourioù " +#~ "hegerz " + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ" diff --git a/perl-install/install/share/po/bs.po b/perl-install/install/share/po/bs.po new file mode 100644 index 000000000..baa779ef5 --- /dev/null +++ b/perl-install/install/share/po/bs.po @@ -0,0 +1,1690 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Vedran Ljubovic <vljubovic@smartnet.ba>, 2002-2006 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Bosnian (http://www.transifex.com/MageiaLinux/mageia/language/" +"bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Imate li neke dodatne medije?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Pronašao sam sljedeće medije koji će biti korišteni tokom instalacije: %s.\n" +"\n" +"\n" +"Imate li još neke dodatne medije koje želite podesiti?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Mreža (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Mreža (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Mreža (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Podešavanje NFS-a" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Molim unesite ime računara i direktorij vašeg NFS medija" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Ime računara sa NFS serverom?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Direktorij" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Ne mogu pronaći hdlist datoteku na ovom mirroru. Provjerite da li je " +"lokacija ispravna." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Tražim već instalirane pakete..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Pronalazim pakete za unaprjeđenje..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Uklanjam pakete prije unaprjeđenja..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Da bi se omogućilo unaprjeđenje vašeg sistema, biće uklonjeni sljedeći " +"paketi: %s\n" +"\n" +"\n" +"Želite li zaista deinstalirati ove pakete?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Greška u čitanju datoteke %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Sljedeći diskovi su preimenovani:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (ranije pod imenom %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Mreža" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Molim izaberite medij" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Datoteka već postoji. Želite li pisati preko nje?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Nemate dozvolu" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Neispravan NFS naziv" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Neispravan medij %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Ne mogu napraviti snimak ekrana prije particioniranja" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Snimanje ekrana će biti dostupno nakon što instalirate u %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalacija" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Podešavanje" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Morate takođe formatirati i %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Neke od komponenti vašeg računara zahtijevaju \"vlasničke\" drajvere za " +"rad.\n" +"Možete naći više podataka o njima na: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Pokrećem mrežu" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Zaustavljam mrežu" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopiram neke pakete na disk radi buduće upotrebe" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiranje u toku" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "obavezno" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "važno" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "vrlo fino" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "fino" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "možda" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Bez opisa" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Došlo je do fatalne greške: %s" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Radna stanica" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Uredska radna stanica" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Uredski programi: obrada teksta (LibreOffice Write, KWord), tablični " +"proračun (LibreOffice Calc, KSpread), PDF preglednici itd." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Stanica za igru" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Zabavni programi: arkadne igre, stolne igre, strategije itd." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedijalna stanica" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programi za pregled i editovanje zvuka i videa" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet stanica" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Skup alata za čitanje i slanje pošte i news-a (mutt, tin...) i pregledanje " +"Weba" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Mrežni računar (klijent)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klijenti za razne protokole uključujući ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Alati za lakše podešavanje računara" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Alati za konzolu" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editori, shellovi, alati za datoteke, terminali" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Programiranje" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C i C++ biblioteke, programi i include datoteke" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentacija" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Knjige i howto-i na temu Linuxa i slobodnog softvera" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Podrška za programe trećih lica" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Web server" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Mail/News" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix mail server, Inn news server" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Imenički server" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Serveri domenskih imena i mrežnih informacija" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Server za dijeljenje datoteka i štampača" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS server, Samba server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Baze podataka" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Server PostgreSQL ili MariaDB baze podataka" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Mail" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix mail server" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL ili MariaDB baza podataka" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Mrežni server" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS server, SMB server, Proxy server, ssh server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafičko okruženje" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, osnovno grafičko okruženje sa izborom pratećih alata" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME radna stanica" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Grafička okolina sa skupom korisnički orjentisanih programa i alata za radnu " +"površinu" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Ostale grafičke okoline" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Alati" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin server za podešavanje sistema" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Mrežni alati i nadzor" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Alati za nadzor, praćenje procesa, tcpdump, nmap..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia čarobnjaci" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Čarobnjaci (wizardi) za podešavanje serverâ" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Došlo je do greške, ali ne znam kako da postupim u vezi toga.\n" +"Nastavite na vlastiti rizik." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Neki bitni paketi nisu ispravno instalirani.\n" +"Ili je neispravan vaš CD-ROM uređaj ili vaš CD-ROM medij.\n" +"Možete provjerite medij na računaru sa instaliranim Mageiaom\n" +"koristeći naredbu \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Prelazim na korak '%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s instalacija %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> između elemenata" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Vašem sistemu ponestaje resursa. Možda imate neki problem sa instalacijom\n" +"%sa. Ako se ovo desi, možete pokušati tekstualnu instalaciju. Za ovo,\n" +"pritisnite 'F1' prilikom pokretanja instalacije, zatim unesite riječ 'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Izbor grupe paketa" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Izbor pojedinačnih paketa" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Ništa izabrano" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Ukupna veličina: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Verzija: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Veličina: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Značaj: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Ne možete izabrati/isključiti ovaj paket" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "zbog nedostajućeg %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "zbog nezadovoljenog %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "pokušavam promovirati %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "kako biste zadržali %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Ne možete izabrati ovaj paket jer nema dovoljno prostora za njega" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Sljedeći paketi će biti instalirani" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Sljedeći paketi će biti uklonjeni" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ovo je obavezan paket, ne može biti isključen" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Ne možete isključiti ovaj paket. On je već instaliran" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Ne možete isključiti ovaj paket. On mora biti unaprijeđen" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Automatski prikaži izabrane pakete" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalacija" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Učitajte ili snimite izbor paketa" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Ažuriram spisak paketa" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimalna instalacija" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Programi" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Izaberite pakete koje želite instalirati" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instaliram" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Sakrij detalje" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Ukratko" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Podesi" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nije podešeno" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Pronađeni su sljedeći instalacioni mediji.\n" +"Ako želite preskočiti neke od njih, možete ih isključiti sada." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Imate mogućnost da kopirate sadržaj CDova na hard disk prije instalacije.\n" +"Zatim će instalacija biti nastavljena sa hard diska, a paketi će ostati " +"dostupni nakon što sistem bude instaliran." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopiraj čitave CDove" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Došlo je do greške" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Molim izaberite raspored vaše tastature" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instaliraj/Unaprijedi" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Da li je ovo instalacija ili unaprjeđenje?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalacija" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Unaprijedi %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Ključ enkripcije za %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Promijenite vaš CD-ROM!\n" +"Molim ubacite CD označen sa \"%s\" u vaš CD-ROM uređaj i pritisnite \"U redu" +"\" kad ste spremni.\n" +"Ako ga nemate, pritisnite \"Odustani\" da preskočite instalaciju sa tog CD-" +"ROMa." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Tražim dostupne pakete..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Molim izaberite da li ćete učitati ili snimiti izbor paketa.\n" +"Format je isti kao i diskete koje generiše auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Učitaj" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Snimi" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Neispravna datoteka" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Izabrana veličina je veća od slobodnog prostora" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Vrsta instalacije" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Niste izabrali nijednu grupu paketa\n" +"Molim izaberite vrstu minimalne instalacije koju želite:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Sa grafikom" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Sa osnovnom dokumentacijom (preporučeno)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Stvarno minimalna instalacija (posebno bez urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Pripremam instalaciju" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instaliram paket %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Došlo je do greške pri raspoređivanju paketa:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Da nastavim?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Pokušaj ponovo" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Post-instalacijsko podešavanje" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Molim provjerite da je medij za ažuriranje u uređaju %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Ažuriranje" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Sljedeći paketi će biti instalirani" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Neuspjeh u dodavanju medija" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Sada imate mogućnost da dobavite sa Interneta nove verzije paketa koji\n" +"su izašli nakon što je distribucija objavljena. Među njima su sigurnosne " +"zakrpe\n" +"i ispravke bugova.\n" +"\n" +"Da biste izvršili download, potrebno je da podesite Internet konekciju.\n" +"\n" +"Da li želite instalirati ažurirane pakete ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s na %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Zvučna kartica" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafički interfejs" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Mreža i Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxy-ji" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "podešeno" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Sigurnosni nivo" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktiviran" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "isključen" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Niste podesili X. Sigurno želite uraditi ovo?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Na ovom sigurnosnom nivou, pristup datotekama na Windows particijama je " +"dozvoljen samo administratoru." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Ubacite praznu disketu u jedinicu %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Pravim auto instalacijsku disketu..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Neki koraci nisu dovršeni.\n" +"\n" +"Da li zaista želite izaći sada?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Čestitamo" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Restartuj" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Jezik" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licenca" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Miš" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Prepoznavanje hard diska" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Klasa instalacije" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastatura" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sigurnost" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Particioniranje" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatiram" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Izbor paketa" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instaliram" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Korisnici" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Podešavanje X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Ukratko" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servisi" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Ažuriranje" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Izlaz" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL mirrora?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL mora počinjati sa ftp:// ili http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Kontaktiram %s web stranicu da bih saznao listu dostupnih mirrora..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Nisam uspio kontaktirati %s web stranicu radi liste dostupnih mirrora" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi" diff --git a/perl-install/install/share/po/ca.po b/perl-install/install/share/po/ca.po new file mode 100644 index 000000000..28b6d4a83 --- /dev/null +++ b/perl-install/install/share/po/ca.po @@ -0,0 +1,1701 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Francesc Pinyol Margalef, 2012-2013 +# Davidmp <medipas@gmail.com>, 2015-2020,2023 +# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2015,2017-2018 +# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2015 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Davidmp <medipas@gmail.com>, 2015-2020,2023\n" +"Language-Team: Catalan (http://app.transifex.com/MageiaLinux/mageia/language/" +"ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Adheriu-vos-hi!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Feu-lo vostre!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "La vostra tria!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Eines d'oficina" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Oci de la llar" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Per als nens" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Per a la família!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Per als desenvolupadors!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Gràcies!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Sigueu lliures!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Teniu més mitjans suplementaris?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"S'han trobat els següents mitjans i es faran servir durant la instal·lació: " +"%s\n" +"\n" +"\n" +"Teniu algun mitjà d'instal·lació suplementari per a configurar?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Xarxa (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Xarxa (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Xarxa (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Configuració NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Introduïu el nom d'amfitrió i el directori del vostre mitjà NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Falta el nom d'amfitrió" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "El directori ha de començar amb «/»" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Nom d'amfitrió del muntatge NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Directori" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Addicional" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"No s'ha pogut trobar el llistat dels paquets en aquesta rèplica. Assegureu-" +"vos que la ubicació és correcta." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Algun maquinari de l'ordinador requereix microprogramari no lliure perquè " +"els controladors lliures funcionin." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Hauríeu d'habilitar «%s»" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" +"«%s» conté els diversos components dels sistemes i les seves aplicacions" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "«%s» conté programari no lliure.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"També conté microprogramari necessari per al funcionament d'alguns " +"dispositius (per exemple: algunes targetes gràfiques ATI/AMD, algunes " +"targetes de xarxa, algunes targetes RAID, etc.)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"«%s» conté programari que no es pot distribuir a tots els països per culpa " +"de les patents de programari." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "També conté programari de «%s» recompilat amb capacitats addicionals." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Aquí podeu habilitar més mitjans, si ho voleu." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Aquest mitjà proporciona actualitzacions de paquets per al mitjà «%s»" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "S'estan cercant els paquets ja instal·lats..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "S'estan cercant els paquets a actualitzar..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "S'estan suprimint els paquets abans de l'actualització..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Se suprimiran els paquets següents per poder actualitzar el sistema: %s\n" +"\n" +"\n" +"Realment voleu suprimir aquests paquets?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "S'ha produït un error en llegir el fitxer %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "El(s) següent(s) disc(s) ha(n) estat reanomenat(s):" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (abans anomenat %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Xarxa" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Escolliu un mitjà" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "El fitxer ja existeix. El voleu sobreescriure?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "S'ha denegat el permís" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Nom NFS incorrecte" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Mitjà incorrecte %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "No es poden fer captures de pantalla abans de fer les particions" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Les captures estaran disponibles després d'instal·lar a %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instal·lació" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configuració" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "També heu de formatar %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Part del maquinari del vostre ordinador necessita controladors\n" +"«registrats» per poder funcionar. Podeu trobar-ne informació a: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "S'està activant la xarxa" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "S'està desactivant la xarxa" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "S'està recuperant el fitxer" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "no s'ha pogut afegir el mitjà" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "S'estan copiant alguns paquets al disc per a un ús futur" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Còpia en curs" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "s'ha de tenir" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "important" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "molt bonic" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "bonic" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "potser" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "S'està obtenint informació del paquet des de les metadades XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"No s'ha trobat informació xml per al mitjà «%s»; només el resultat parcial " +"per al paquet %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Cap descripció" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Alguns paquets sol·licitats per %s no es poden instal·lar:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "S'ha produït un error:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "S'ha produït un error fatal: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "No tornar a preguntar" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "Han fallat %d transaccions d'instal·lació" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "La instal·lació de paquets ha fallat:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Estació de treball" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Estació de treball d'oficina" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programes d'ofimàtica: processadors de textos (LibreOffice Writer, Kword), " +"fulls de càlcul (LibreOffice Calc, Kspread), visualitzadors PDF, etc." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Estació de jocs" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programes d'entreteniment: acció, jocs de taula, estratègia, etc." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Estació multimèdia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programes de reproducció/edició de so i vídeo" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Estació d'Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Conjunt d'eines per llegir i enviar correu i notícies (mutt, tin, etc.) i " +"per navegar pel Web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Ordinador de xarxa (client)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clients per a diferents protocols, incloent-hi l'ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Eines per facilitar la configuració de l'ordinador" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Eines de consola" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editors, shells, eines de fitxer, terminals" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Desenvolupament" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Biblioteques de desenvolupament C i C++, programes i fitxers include" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentació" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Llibres i Com es fa... sobre el Linux i el programari lliure" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Base Estàndard de Linux (LSB). Suport a aplicacions de tercers" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Servidor Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Servidor Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Tallafoc/Encaminador" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Passarel·la a Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Correu/Notícies" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Servidor de correu Postfix, servidor de notícies Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Servidor de directori" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Servidor FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Servidor de noms de domini i d'informació de la xarxa (DNS/NIS)" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Servidor de compartició de fitxers i impressores" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Servidor NFS, servidor Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Base de dades" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Servidor de bases de dades PostgreSQL i MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache i Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Correu" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Servidor de correu Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Servidor de bases de dades PostgreSQL o MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Ordinador de xarxa (servidor)" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Servidor NFS, servidor SMB, servidor intermediari, servidor SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Entorn gràfic" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Estació de treball Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"L'entorn d'escriptori K (KDE), l'entorn gràfic bàsic que inclou diverses " +"eines" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Estació de treball GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Entorn gràfic amb un conjunt d'aplicacions i eines d'escriptori fàcil " +"d'utilitzar" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Estació de treball Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Entorn gràfic més lleuger amb un conjunt d'aplicacions i eines d'escriptori " +"fàcil d'utilitzar" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Estació de treball MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Estació de treball Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Entorn gràfic basat en GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Escriptori LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Un port QT de propera generació de l'entorn d'escriptori lleuger" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Escriptori Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Un entorn gràfic lleuger i ràpid amb un seguiment dedicat" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Escriptori LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Un entorn gràfic ràpid i lleuger" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Altres escriptoris gràfics" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, etc." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilitats" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Servidor SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Servidor remot de configuració de Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Utilitats/monitoratge de la xarxa" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Eines de monitoratge, comptatge de processos, tcpdump, nmap, etc." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Auxiliars de Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Auxiliars per configurar el servidor" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"S'ha produït un error, però no sé com gestionar-lo correctament.\n" +"Si continueu, és sota la vostra responsabilitat." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Alguns paquets importants no s'han instal·lat correctament.\n" +"La vostra unitat de CD-ROM, o bé el CD-ROM, són defectuosos.\n" +"Comproveu el CD-ROM en un ordinador instal·lat mitjançant «rpm -qpl media/" +"main/*.rpm»\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "S'està entrant en el pas '%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Instal·lació de %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> entre elements" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "El servidor Xorg triga a arrencar. Espereu..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"El vostre sistema està baix de recursos; podeu tenir algun problema en\n" +"instal·lar %s. Si això passa, podeu provar d'instal·lar-lo en\n" +"mode text. Per fer-ho, premeu 'F1' en arrencar des del CD-ROM i escriviu " +"'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Selecció de mitjans" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Instal·la %s l'escriptori Plasma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instal·la %s l'escriptori GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instal·lació personalitzada" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Escriptori Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Escriptori GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Escriptori personalitzat" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Aquesta és una vista prèvia de l'escriptori '%s'." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Feu clic a les imatges per a veure una vista prèvia més gran." + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Selecció de grups de paquets" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Selecció individual de paquets" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Desselecciona-ho tot" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Mida total: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versió: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Mida: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d kB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importància: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "No podeu seleccionar/desseleccionar aquest paquet" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "perquè falten %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "a causa de la insatisfacció %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "s'està intentant promoure %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "per mantenir %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"No podeu seleccionar aquest paquet perquè no queda prou espai per instal·lar-" +"lo" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Ara s'instal·laran els paquets següents" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Se suprimiran els paquets següents" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Aquest paquet és obligatori; no es pot desseleccionar" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "No podeu desseleccionar aquest paquet; ja està instal·lat" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Mostra automàticament els paquets seleccionats" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instal·la" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Carrega/Desa la selecció" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "S'està actualitzant la selecció de paquets" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Commuta entre la llista de paquets jeràrquica i la neta" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Instal·lació mínima" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Gestió de programari" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Escolliu els paquets que voleu instal·lar" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instal·lació" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Sense detalls" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Temps restant:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(s'està estimant...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paquet" +msgstr[1] "%d paquets" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Resum" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configura" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "sense configurar" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"S'han trobat els següents mitjans d'instal·lació.\n" +"Si en voleu ometre alguns, els podeu desseleccionar ara." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Teniu l'opció de copiar el contingut dels CD al disc dur abans de la " +"instal·lació.\n" +"Llavors es continuarà des del disc dur i els paquets continuaran disponibles " +"un cop el sistema estigui instal·lat." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copia els CD sencers" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "S'ha produït un error" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Seleccioneu la disposició del vostre teclat" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Aquesta és la llista completa de teclats disponibles:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instal·la/Actualitza" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Es tracta d'una instal·lació o d'una actualització?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instal·lació" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Actualitza %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Clau de xifratge per a %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Cancel·la la instal·lació, reinicia el sistema" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nova instal·lació" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Actualitza la instal·lació anterior (no recomanable)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"L'instal·lador ha detectat que el vostre Linux instal·lat no es pot " +"actualitzar a %s de forma segura.\n" +"\n" +"Es recomana una nova instal·lació que substitueixi l'anterior.\n" +"\n" +"Avís: hauríeu de fer una còpia de seguretat de les vostres dades personals " +"abans de triar «Nova instal·lació»." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Configuració de CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Canvieu el Cd-Rom!\n" +"Inseriu el CD-ROM etiquetat com a «%s» a la unitat i després\n" +"premeu D'acord.\n" +"Si no el teniu, premeu Cancel·la per no fer la instal·lació des d'aquest Cd-" +"Rom." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "S'estan cercant els paquets disponibles..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"El vostre sistema no té prou espai de disc lliure per a la instal·lació o " +"actualització (%d MB > %d MB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Trieu carregar o desar la selecció de paquets.\n" +"El format és el mateix que el dels fitxers generats per auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Carrega" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Desa" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Fitxer incorrecte" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Selecció de l'escriptori" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Podeu triar el vostre perfil d'escriptori d'estació de treball." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "La mida seleccionada és superior a la disponible" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipus d'instal·lació" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"No heu seleccionat cap grup de paquets.\n" +"Escolliu la instal·lació mínima que voleu:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Amb X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Instal·la els paquets recomanats" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Amb la documentació bàsica (recomanat!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Instal·lació realment mínima (especialment no urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "S'està preparant l'actualització..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "S'està preparant la instal·lació" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "S'està instal·lant el paquet %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "S'ha produït un error en ordenar els paquets:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Voleu continuar tanmateix?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Reintenta" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Omet aquest paquet" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Omet tots els paquets del mitjà «%s»" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Torna enrere cap a la selecció de mitjans i paquets" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "S'ha produït un error en la instal·lació del paquet %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configuració posterior a la instal·lació" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Assegureu-vos que el mitjà Actualitza Mòduls és a la unitat %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Actualitzacions" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Ara teniu l'oportunitat de configurar mitjans en línia." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Això us permet instal·lar actualitzacions de seguretat." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Per configurar aquests mitjans, us caldrà tenir una connexió a Internet " +"funcional.\n" +"\n" +"Voleu configurar el mitjà d'actualització?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Aquest descarregador no s'ha pogut instal·lar." + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Ho torno a intentar?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Fallada en afegir un mitjà" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Ara teniu l'oportunitat de baixar paquets actualitzats. Aquests paquets\n" +"han estat actualitzats després de la publicació de la distribució. Poden " +"contenir\n" +"actualitzacions de seguretat o correccions d'errors.\n" +"\n" +"Per baixar aquests paquets necessitareu tenir una connexió a Internet\n" +"operativa.\n" +"\n" +"Voleu instal·lar les actualitzacions?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s a %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Maquinari" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Targeta de so" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfície gràfica" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Xarxa i Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Servidors intermediaris" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "configurat" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nivell de seguretat" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Tallafoc" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "activat" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "inhabilitat" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "No heu configurat X. Segur que ho voleu així?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "S'està preparant el programa d'arrencada..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Tingueu paciència, això pot trigar una estona..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"En aquest nivell de seguretat, l'accés a les particions de Windows està " +"restringit a l'administrador." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Inseriu un disquet en blanc a la unitat %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "S'està creant el disquet d'instal·lació automàtica..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Alguns passos no s'han completat.\n" +"\n" +"Esteu segur que voleu sortir ara?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Felicitats" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Reinicia" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Llengua" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Localització" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Llicència" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Ratolí" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Detecció del disc dur" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Classe d'instal·lació" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Teclat" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Seguretat" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Particions" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatació" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Tria de paquets" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instal·lació" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Usuaris" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Carregador d'arrencada" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Configura les X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Resum" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Serveis" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Actualitzacions" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Surt" diff --git a/perl-install/install/share/po/cs.po b/perl-install/install/share/po/cs.po new file mode 100644 index 000000000..c61e02693 --- /dev/null +++ b/perl-install/install/share/po/cs.po @@ -0,0 +1,1698 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Appukonrad <appukonrad@gmail.com>, 2013 +# Appukonrad <appukonrad@gmail.com>, 2013-2014 +# Luděk Janča <joelp@email.cz>, 2016-2020,2022-2023 +# fri, 2013,2015-2017,2019-2020 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Luděk Janča <joelp@email.cz>, 2016-2020,2022-2023\n" +"Language-Team: Czech (http://app.transifex.com/MageiaLinux/mageia/language/" +"cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Připojte se k nám!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Učiňte systém svým!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Dle vašeho výběru!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Kancelářské nástroje" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Domácí zábava" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Pro děti" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Pro rodinu" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Pro vývojáře" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Děkujeme" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Svobodu!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Máte ještě nějaké další doplňující zdroje?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Byly nalezeny a při instalaci budou použity následující zdroje: %s.\n" +"\n" +"\n" +"Chcete nastavit ještě nějaké další doplňující instalační zdroje?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Síť (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Síť (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Síť (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Nastavení NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Zadejte, prosím, název počítače a adresář vašeho zařízení NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Chybí název počítače" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Adresář musí začínat znakem \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Název počítače připojení NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Adresář" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Dodatečný" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Nelze nalézt soubor hdlist na tomto zrcadle. Ujistěte se, že umístění je " +"správné." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Vydání Core" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Vydání Tainted" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Vydání Nonfree" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Některý hardware ve vašem počítači potřebuje nesvobodný firmware, aby " +"fungovaly svobodné ovladače." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Měli byste povolit \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" obsahuje různé kousky systému a jeho programů" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" obsahuje nesvobodný software.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Obsahuje také firmware potřebný pro funkci určitých zařízení (např.: některé " +"grafické karty ATI/AMD, některé síťové karty, některé karty RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" obsahuje software, který nemůže být distribuován ve všech zemích " +"kvůli softwarovým patentům." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Obsahuje také software z \"%s\", znovu sestavený s doplňujícími funkcemi." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Zde můžete, pokud chcete, povolit více zdrojů." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Tyto zdroje poskytují aktualizace balíčků pro \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Prohledávají se již nainstalované balíčky..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Vyhledávají se balíčky pro aktualizaci..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Odstraňují se balíčky před aktualizací..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Následující balíčky budou odebrány, aby bylo možné systém aktualizovat: %s\n" +"\n" +"\n" +"Opravdu chcete odebrat tyto balíčky?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Chyba při čtení souboru %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Následující disk(y) byly přejmenovány:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (předchozí název %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Síť" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Vyberte, prosím, zdroj" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Soubor již existuje. Přepsat?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Přístup odepřen" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Chybný název NFS" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Chybný zdroj %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Nelze provést sejmutí obrazovky před rozdělením disků" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Sejmuté obrazovky budou dostupné po instalaci v adresáři %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalace" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Nastavení" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Musíte také naformátovat %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Některý hardware potřebuje pro svoji práci \"proprietární\" ovladače.\n" +"Další informace o těchto ovladačích můžete nalézt na: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Spouští se síť" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Zastavuje se síť" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Prosím počkejte, získává se soubor" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "nelze přidat zdroj" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopírují se některé balíčky na disky pro budoucí použití" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Probíhá kopírování" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "musíte mít" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "důležité" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "nejméně důležité" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "nedůležité" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "může se hodit" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Získávají se informace o balíku z popisných dat XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Chybí XML informace pro zdroj \"%s\", pouze částečný výsledek pro balíček %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Žádný popis" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Některé z balíčků vyžádaných od %s nelze nainstalovat:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Nastala chyba:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Vyskytla se fatální chyba: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Více se již neptat" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d instalačních procesů selhalo" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Instalace balíčků selhala:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Pracovní stanice" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kancelářská stanice" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programy pro kancelář: textové procesory (LibreOffice Writer, Kword), " +"tabulkové procesory (LibreOffice Calc, Kspread), prohlížeče PDF a další" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Hry" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Zábavné programy: deskové hry, strategie, atd." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimediální stanice" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programy pro přehrávání/upravování zvuku a obrazu" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internetová stanice" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Soubor nástrojů pro čtení a posílaní elektronické pošty a příspěvků do " +"diskusních skupin (mutt, tin..) a pro prohlížení Webu" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Síťový počítač (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klienti pro různé verze protokolu ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Nástroje pro snadnou konfiguraci počítače" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konzolové nástroje" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editory, shelly, souborové nástroje, terminály" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Vývoj" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Knihovny pro vývoj v C a C++, programy a hlavičkové soubory" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentace" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Knihy a praktické rady, jak na to, o Linuxu a Svobodném Software" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Standardní Báze Linuxu (LSB): Podpora aplikací jiných dodavatelů" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Webový server" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Server Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router (směrovač)" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internetová brána" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Pošta/Diskusní skupiny" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Poštovní server Postfix, server diskusních skupin Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Server adresářových služeb" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Server FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Server pro domény a síťové informace" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Server pro sdílení souborů a tiskáren" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Server NFS, server Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Databáze" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Databázové servery PostgreSQL a MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache a Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Pošta" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Poštovní server Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Databázové servery PostgreSQL nebo MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Síťový server" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS server, SMB server, Proxy server, SSH server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafické prostředí" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Pracovní stanice Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, základní grafické prostředí se sbírkou doprovodných " +"nástrojů" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Pracovní stanice GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Grafické prostředí s uživatelsky přívětivou sadou aplikací a nástrojů" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Pracovní stanice Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Jednoduché grafické prostředí s uživatelsky přívětivou sadou aplikací a " +"nástrojů" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Pracovní stanice MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Pracovní stanice Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Grafické prostředí založené na GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Prostředí LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Příští generace Qt lehkého prostředí pracovní plochy" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Pracovní prostředí Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" +"Lehké a rychlé grafické prostředí s uživatelsky přívětivou sadou aplikací a " +"nástrojů" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Prostředí LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Lehké a rychlé grafické prostředí" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Další grafická prostředí" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm a další" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Užitečné nástroje" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Server SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Server pro vzdálené nastavení Webminu" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Síťové nástroje/Sledování" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Nástroje pro sledování, evidenci procesů, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Průvodci nastavením distribuce Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Průvodci nastavením serverů" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Stala se chyba, ale neví se, jak ji správně vykládat.\n" +"Pokračujte na vlastní nebezpečí." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Některé důležité balíčky nebyly správně nainstalovány.\n" +"Je možné, že je poškozen CD disk nebo CD-ROM mechanika.\n" +"Zkontrolujete to použitím příkazu \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Začíná se krok '%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s instalace %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> mezi prvky" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Server Xorg se spouští delší dobu. Prosím počkejte..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Váš systém nemusí mít dostatečné vybavení pro bezproblémovou instalaci %s. V " +"případě potíží zvolte instalaci v textovém režimu. Pro její spuštění " +"stiskněte při nabíhání systému z CD klávesu 'F1' a následně napište 'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Výběr zdrojů" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Instalovat %s pracovní plochu Plasma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instalovat %s prostředí GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Vlastní instalace" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Pracovní plocha Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Prostředí GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Vlastní prostředí" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Zde se nachází náhled pracovního prostředí %s." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klepněte na obrázky, chcete-li vidět větší náhled" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Výběr skupiny balíčků" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Výběr jednotlivých balíčků" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Zrušit celý výběr" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Celková velikost: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Verze: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Velikost: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Důležitost: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Nemůžete vybrat/nevybrat tento balíček" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "protože chybí %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "díky nesplněné závislosti %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "pokus o postoupení %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "aby bylo zachováno %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Nemůžete vybrat tento balíček, protože pro jeho instalaci není dost místa" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Budou instalovány tyto balíčky" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Budou odebrány tyto balíčky" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Toto je povinný balíček, nemůže být odstraněn" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Nemůžete odznačit tento balíček, je už nainstalovaný" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Tento balíček musí být aktualizován, nemůžete ho odznačit" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Ukázat automaticky vybrané balíčky" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalovat" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Načíst/Uložit výběr" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Aktualizuje se výběr balíčků" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Přepnout mezi stromovým a plochým seznamem balíčků" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Nejmenší instalace" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Správa softwaru" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Vyberte si balíčky, které chcete nainstalovat" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalace" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Bez podrobností" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Zbývající čas:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(odhaduje se...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d balíček" +msgstr[1] "%d balíčky" +msgstr[2] "%d balíčků" +msgstr[3] "%d balíčků" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Souhrn" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Nastavit" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nenastaveno" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Byla nalezeny následující instalační zdroje.\n" +"Pokud chcete některé z nich vynechat, můžete je nyní odznačit." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Máte možnost před instalací zkopírovat obsah CD na pevný disk.\n" +"Instalace pak bude pokračovat z pevného disku a balíčky zůstanou dostupné i " +"poté, co je systém plně nainstalován." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopírovat celá CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Stala se chyba" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Vyberte si rozložení vaší klávesnice" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Zde je úplný seznam dostupných klávesnic:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalace/Aktualizace" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Jedná se o instalaci nebo aktualizaci?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalace" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Aktualizace %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Šifrovací klíč pro %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Zrušit instalaci, restartovat systém" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nová instalace" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Aktualizace předchozí instalace (nedoporučuje se)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Instalátor zjistil, že nainstalovaný systém Mageia Linux nemůže \n" +"být bezpečně povýšen na %s.\n" +"\n" +"Proto doporučujeme provést novou instalaci a nahradit tak zcela \n" +"instalaci původní.\n" +"\n" +"Varování: měli byste zálohovat veškerá data před tím, než \n" +"spustíte \"Novou instalaci.\"" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Nastavení CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Vyměňte prosím CD!\n" +"Prosím vložte CD označené \"%s\" do mechaniky a stiskněte Ok.\n" +"Pokud toto CD nemáte, stiskněte Zrušit a toto CD nebude nainstalováno." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Hledají se dostupné balíčky..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Váš systém nemá dostatek volného místa pro instalaci nebo aktualizaci (%dMB " +"> %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Vyberte si, zda chcete uložit nebo načíst výběr balíčků.\n" +"Formát je stejný jako u souborů generovaných pomocí auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Načíst" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Uložit" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Chybný soubor" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Výběr pracovního prostředí" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Můžete vybrat profil vašeho pracovního prostředí." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Velikost vybraných balíčků je větší než místo na disku" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Typ instalace" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Nevybrali jste žádnou skupinu balíčků.\n" +"Vyberte si, prosím, alespoň nejmenší instalaci:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X prostředí" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Instalovat doporučené balíčky" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Základní dokumentace (doporučeno!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Opravdu nejmenší instalace (speciálně bez urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Připravuje se povýšení..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Připravuje se instalace" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instaluje se balíček %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Stala se chyba při řazení balíčků:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Přesto pokračovat?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Zkusit znovu" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Vynechat tento balíček" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Vynechat všechny balíčky ze zdroje \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Vrátit se zpět k výběru zdrojů a balíčků" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Při instalaci balíčku %s nastala chyba." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Probíhá nastavování po instalaci" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Ujistěte se, prosím, že se médium s aktualizovanými moduly nachází v " +"jednotce %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Aktualizace" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Nyní máte příležitost nastavit internetová média." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Toto dovolí instalaci bezpečnostních aktualizací." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"K nastavení těchto médií budete potřebovat pracující internetové\n" +"spojení.\n" +"\n" +"Chcete nastavit aktualizační média?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Tento stahovač se nepodařilo nainstalovat" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Opakovat?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Nepodařilo se přidat médium" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Nyní máte možnost stáhnout aktualizované balíčky. Tyto balíčky byly\n" +"uvolněny až po vydání distribuce. Mohou obsahovat bezpečnostní\n" +"aktualizace nebo opravy chyb.\n" +"\n" +"Chcete-li získat tyto balíčky, musíte mít k dispozici funkční připojení\n" +"k internetu.\n" +"\n" +"Chcete nainstalovat aktualizace?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s na %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Zvuková karta" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafické rozhraní" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Síť a internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxy" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "nastaveno" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Úroveň zabezpečení" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "zapnuto" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "vypnuto" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"Nemáte nastaveno prostředí X. Chcete jej skutečně ponechat nenastavené?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Přípravuje se spouštěcí program..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Prosím o strpení, může to chvíli trvat…" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"V této úrovní zabezpečení je přístup k souborům na oddíle s Windows omezen " +"pouze na uživatele administrátor." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Vložte prázdnou disketu do %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Vytváří se disketa pro automatickou instalaci..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Některé kroky nebyly dokončeny.\n" +"\n" +"Chcete opravdu nyní skončit?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Blahopřejeme" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Restartovat" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Jazyk" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalizace" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licence" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Myš" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Zjištění pevných disků" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Třída instalace" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Klávesnice" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Bezpečnost" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Rozdělení disku" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formátování" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Výběr balíčků" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalace" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Uživatelé" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Zaváděcí program" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Nastavení X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Souhrn" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Služby" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Aktualizace" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Konec" diff --git a/perl-install/install/share/po/cy.po b/perl-install/install/share/po/cy.po new file mode 100644 index 000000000..2c8bdb693 --- /dev/null +++ b/perl-install/install/share/po/cy.po @@ -0,0 +1,1722 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# ciaran, 2015-2016 +# Rhoslyn Prys, 2009 +# Rhoslyn Prys <post@meddal.com>, 2007 +# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>, 2003-2005 +# Rhoslyn Prys, 2009 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Welsh (http://www.transifex.com/MageiaLinux/mageia/language/" +"cy/)\n" +"Language: cy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " +"11) ? 2 : 3;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Ymunwch â ni!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Eich dewis chi!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Offer i'r swyddfa" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Adloniant" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "I blant" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "I'r teulu!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "I ddatblygwyr!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Diolch!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Byddwch yn rhydd!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Oes gennych unrhyw gyfrwng atodol arall?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Canfuwyd y cyfryngau canlynol a chânt eu defnyddio gyda'r gosodiad nesaf: " +"%s \n" +"\n" +"\n" +"A oes gennych gyfrwng gosod ychwanegol i'w ffurfweddu?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rhwydwaith (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rhwydwaith (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rhwydwaith (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Gosodiad NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Rhowch enw'r gwesteiwr a chyfeiriadur eich cyfrwng NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Enw gwesteiwr ar goll" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Rhaid i gyfeiriadur gychwyn gyda \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Enw gwesteiwr arosod NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Cyfeiriadur" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Atodol" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Methu canfod ffeil rhestr pecynnau ar y drych. Sicrhewch fod y lleoliad yn " +"gywir." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Rhifyn craidd" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Rhifyn cymysg" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Rhifyn cyfyng" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Mae ar galedwedd eich peiriant angen cadarnwedd gyfyng er mwyn i'r gyrwyr " +"meddalwedd rhydd weithio." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Dylech alluogi \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "Mae \"%s\" yn cynnwys darnau amrywiol o'r system a'i rhaglenni" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "Mae \"%s\" yn cynnwys meddalwedd gyfyng.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Mae hefyd yn cynnwys cadarnwedd sydd ei hangen i rai dyfeisiau weithio (e." +"e.: rhai cardiau graffeg ATI/AMD, rhai cardiau rhwydwaith, rhai cardiau " +"RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"Mae \"%s\" yn cynnwys meddalwedd na ellir ei dosbarthu ym mhob gwlad o " +"ganlyniad i batentau ar feddalwedd." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Mae hefyd yn cynnwys meddalwedd o'r adeiladiad \"%s\" gyda galluoedd " +"ychwanegol. " + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Yma gallwch alluogi rhagor o gyfryngau os oes angen." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Mae'r cyfrwng hwn yn darparu diweddariadau pecynnau i'r cyfrwng \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Wrthi'n edrych ar becynnau a osodwyd eisoes..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Wrthi'n canfod pecynnau i'w huwchraddio..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Wrthi'n tynnu pecynnau cyn diweddaru..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Tynnir y pecynnau canlynol i ganiatáu diweddaru eich system: %s\n" +"\n" +"\n" +"Hoffech chi dynnu'r pecynnau hyn?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Gwall darllen ffeil %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Ailenwyd disg(iau) canlynol:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (ei enw blaenorol oedd %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rhwydwaith" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Dewiswch gyfrwng" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Mae'r ffeil yn bodoli eisoes. Ysgrifennu drosti?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Dim caniatâd." + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Enw NFS gwael" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Cyfrwng %s gwael" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Meth creu sgrinluniau cyn rhannu" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Bydd sgrinluniau ar gael ar ôl gosod yn %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Gosod" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Ffurfweddu" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Rhaid fformatio %s hefyd" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Mae peth caledwedd ar eich cyfrifiadur angen gyrwyr ``priodol'' i weithio.\n" +"Mae rhywfaint o wybodaeth i'w gael amdanynt yn %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Wrthi'n cychwyn y rhwydwaith" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Wrthi'n cau'r rhwydwaith" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Arhoswch, wrthi'n estyn ffeil" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "methu ychwanegu cyfrwng" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Wrthi'n copïo rhai pecynnau ar ddisg ar gyfer defnydd yn y dyfodol" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Wrthi'n copïo..." + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "rhaid cael" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "pwysig" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "hyfryd iawn" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "hyfryd" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "efallai" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Wrthi'n estyn gwybodaeth am becyn o fetadata XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Dim gwybodaeth xml ar gyfer y cyfrwng \"%s\", dim ond canlyniad rhannol ar " +"gyfer pecyn %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Dim disgrifiad" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Nid yw'n bosib gosod rhai pecynnau gofynnwyd gan %s:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Cododd gwall:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Cododd gwall terfynol:%s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Peidio â gofyn eto" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "Methodd trafod gosod %d" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Methodd gosod pecynnau:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Gweithfan" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Gweithfan wyddfa" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Rhaglenni swyddfa: prosesydd geiriau (LibreOffice Writer, Kword), taenlenni " +"(LibreOffice Calc, Kspread), ddarllenydd pdf, ac ati" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Man chwarae" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Rhaglenni difyrrwch: arcêd, gemau bwrdd, strategaeth, ac ati" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Man amlgyfrwng" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Rhaglenni chwarae/golygu sain a fideo" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Man rhyngrwyd" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Casgliad o offer i ddarllen ac anfon e-byst a newyddion (mutt, tin..) ac i " +"bori'r we" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Cyfrifiadur rhwydwaith (cleient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Cleientiaid ar gyfer protocolau amrywiol gan gynnwys ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Offer i ffurfweddu'ch cyfrifiadur yn haws" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Offer y consol" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Golygyddion, cregyn, offer ffeilio, terfynellau" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Datblygu" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Llyfrgelloedd datblygu C a C++, rhaglenni a ffeiliau cynnwys" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dogfennaeth" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Llyfrau a chanllawiau ar gyfer Linux a meddalwedd rydd" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Cefnogaeth i raglenni trydydd parti" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Gweinydd gwe" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Cylchwedd" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Gweinydd Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Mur gwarchod/llwybrydd" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Porth i'r rhyngrwyd" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "E-bost/newyddion" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Gweinydd e-bost Postfix, gweinydd newyddion Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Gweinydd cyfeiriaduron" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Gweinydd FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Gweinydd enw parth a gwybodaeth rhwydwaith" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Gweinydd rhannu ffeiliau ac argraffyddion" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Gweinydd NSF, gweinydd Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Cronfa Ddata" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Gweinydd CronfaDdata PostgreSQL a MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Gwe/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "E-bost" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Gweinydd e-bost Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Gweinydd cronfa data PostgreSQL neu MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Gweinydd cyfrifiadur rhwydwaith" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Gweinydd NFS, gweinydd SMB, gweinydd dirprwyol, gweinydd ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Amgylchedd graffig" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Gweithfan Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"KDE - amgylchedd bwrdd gwaith K, yr amgylchedd graffigol sylfaenol a chanddo " +"gasgliad o offer" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gweithfan Gnome" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Amgylchedd graffigol a chanddo gasgliad o raglenni ac offer bwrdd gwaith " +"hawdd eu defnyddio." + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Amgylchedd graffigol ysgafn a chanddo gasgliad o raglenni ac offer bwrdd " +"gwaith hawdd eu defnyddio" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Gweithfan MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Gweithfan Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Amgylchedd graffigol sy'n seiliedig ar GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Bwrdd gwaith LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Porth QT y genhedlaeth nesaf o'r amgylchedd bwrdd gwaith ysgafn" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" +"Amgylchedd graffigol ysgafn a chyflym a chanddo grŵp o ddefnyddwyr ymroddedig" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Bwrdd Gwaith LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Amgylchedd graffigol ysgafn a chyflym" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Byrddau Gwaith Graffigol Eraill" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, ac ati" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Gwasanaethau" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Gweinydd SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Gweinydd ffurfweddu pell Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Gwasanaethau/monitro rhwydwaith" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Offer monitro, cyfrifo prosesau, tcpdunp, nmap..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Dewiniaid Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Dewiniaid ffurfweddu gweinyddion" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n" +"Mae'n beryglus i barhau." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Methodd rhai pecynnau pwysig a chael eu gosod yn gywir.\n" +"Un ai mae eich disg CD-ROM neu eich CD-ROM yn wallus.\n" +"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl " +"media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Cychwyn cam '%s\"\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Gosod %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> rhwng elfennau" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Mae gweinydd Xorg yn araf ei gychwyn. Arhoswch..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Mae eich system yn brin o adnoddau. Efallai bod gennych broblem wrth osod\n" +"%s. Os yw hynny'n digwydd, defnyddiwch y gosod testun yn lle\n" +"hynny. I wneud hynny pwyswch 'F1' wrth gychwyn ar CD-ROM, ac yna teipio " +"'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Dewis cyfrwng" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Gosod bwrdd gwaith %s Plasma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Gosod bwrdd gwaith %s GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Gosodiad addasu" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Bwrdd gwaith Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Bwrdd gwaith GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Bwrdd gwaith addasedig" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Dyma ragolwg o fwrdd gwaith '%s'." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Cliciwch ar y delweddau i weld y rhagolwg yn fwy" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Dewis grŵp o becynnau" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Dewis pecynnau unigol" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Dad-ddewis popeth" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Maint cyfan: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Fersiwn:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Maint:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Pwysigrwydd: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "oherwydd %s coll" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "oherwydd %s annigonol" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "ceisio hyrwyddo %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "er mwyn cadw %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ôl i'w osod" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Gosodir y pecynnau canlynol" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Tynnir y pecynnau canlynol" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Pecyn hanfodol yw hwn, does dim modd ei ddad-ddewis" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Dangoswch y pecynnau dewis awtomatig" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Gosod" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Llwytho/cadw'r dewis" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Diweddaru'r dewis o becynnau" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Gosodiad lleiaf" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Rheoli meddalwedd" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Dewiswch y pecynnau yr hoffech chi eu gosod" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Gosod" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Dim manylion" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Amser ar ôl:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(amcangyfrif...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pecyn" +msgstr[1] "%d becyn" +msgstr[2] "%d o becynnau" +msgstr[3] "%d o becynnau" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Crynodeb" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Ffurfweddu" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "heb ffurfweddu" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Canfuwyd y cyfryngau gosod canlynol.\n" +"Os hoffech hepgor rhai ohonynt, dad-ddewiswch nhw nawr." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Gallwch gopïo cynnwys y CD i'r disg caled cyn gosod Mageia Linux.\n" +"Bydd yna'n parhau o'r disg caled a bydd y pecynnau ar gael unwaith i'r " +"system gael ei gosod yn gyflawn." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copïo'r CDs cyfan" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Cododd gwall" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Dewiswch gynllun eich bysellfwrdd" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Dyma restr lawn o'r bysellfyrddau sydd ar gael:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Gosod/diweddaru" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Gosod neu ddiweddaru?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Gosod" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Diweddaru %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Allwedd amgryptio ar gyfer %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Atal y gosod, ailgychwyn y system" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Gosodiad newydd" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Diweddaru'r gosodiad blaenorol (argymell i beidio)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Mae'r gosodwr wedi canfod na ellir uwchraddio\n" +"eich system Linux i %s yn ddiogel.\n" +"\n" +"Argymhellir disodli eich system gyda gosodiad newydd.\n" +"\n" +"Rhybudd : dylech gadw copi wrth gefn o'ch holl ddata personol cyn dewis\n" +"\"Gosodiad newydd\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Newidiwch eich CD-ROM\n" +"Rhowch y CD-ROM \"%s\" yn eich gyrrwr a chlicio Iawn ar ôl gorffen\n" +"Os nad yw gennych, cliciwch Diddymu i beidio a gosod o'r CD-ROM." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Casglu'r pecynnau sydd ar gael..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Nid oes gan eich system ddigon o le ar gyfer gosod neu ddiweddaru (%dMB > " +"%dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Dewiswch lwytho neu gadw pecyn dewiswyd.\n" +"Mae'r fformat yr un â ffeiliau cynhyrchwyd drwy auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Llwytho" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Cadw" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Ffeil wael" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Dewis bwrdd gwaith" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Dewiswch broffil bwrdd gwaith eich gweithfan." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Mae'r maint a ddewiswyd yn fwy na'r lle ar gael" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Math o osodiad" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Nid ydych wedi dewis grwpiau o becynnau.\n" +"Dewiswch y gosod lleiaf rydych ei eisiau" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Gydag X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Gosod pecynnau a argymhellir" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Gyda dogfennau elfennol (argymell!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Gosod bach iawn (yn arbennig dim urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Wrthi'n paratoi i uwchraddio..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Wrthi'n paratoi i osod" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Wrthi'n gosod y pecyn %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Bu gwall trefnu pecynnau:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Mynd yn eich blaen beth bynnag?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Ceisio eto" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Hepgor y pecyn" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Hepgor pob pecyn o'r cyfrwng \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Dychwelyd i ddewis cyfryngau a phecynnau" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Cododd gwall wrth osod pecyn: %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Ffurfweddu ar ôl gosod" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Sicrhewch fod y cyfrwng diweddaru modiwlau yn y gyrrwr %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Diweddaru" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Cewch osod cyfryngau ar lein." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Mae hyn yn caniatáu gosod diweddariadau diogelwch." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"I osod y cyfryngau hynny, rhaid i chi cael \n" +"cysylltiad i'r \n" +"we.\n" +"\n" +"Hoffech chi osod y cyfryngau diweddaru?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Gosodir y pecynnau canlynol" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Ceisio eto?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Methu ychwanegu cyfrwng" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu\n" +"ryddhau ers i'r dosbarthiad fod ar gael. Efallai bod gwallau a materion " +"diogelwch wedi eu cywiro\n" +"\n" +"I lwytho'r pecynnau i lawr, bydd angen cyswllt gweithredol\n" +"â'r Rhyngrwyd.\n" +"\n" +"Ydych chi am osod y diweddariadau?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s ar %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Caledwedd" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Cerdyn sain" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Rhyngwyneb graffigol" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rhwydwaith a'r rhyngrwyd" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Dirprwyon" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "ffurfweddwyd" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Lefel diogelwch" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Mur gwarchod" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "bywiogwyd" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "analluogwyd" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Nid ydych wedi ffurfweddu X. Ydych chi'n siŵr eich bod am wneud hyn?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Wrthi'n paratoi'r rhaglen cychwyn..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Amynedd, gall hyn gymryd amser..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Ar y lefel diogelwch yma, cyfyngir mynediad at ffeiliau yn y rhaniad Windows " +"i'r gweinyddwr." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Rhowch ddisg meddal yng ngyrrwr %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Creu disg meddal awto gosod..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Nid yw rhai camau wedi eu cwblhau.\n" +"\n" +"Ydych chi wir eisiau gadael yn awr?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Llongyfarchiadau" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Ailgychwyn" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Iaith" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lleoleiddio" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Trwydded" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Llygoden" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Canfod disg caled" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Dosbarth gosod" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Bysellfwrdd" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Diogelwch" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Creu rhaniadau" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Fformatio" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Dewis pecynnau" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Gosod" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Defnyddwyr" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Cychwynnwr" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Ffurfweddu X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Crynodeb" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Gwasanaethau" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Diweddaru" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Gadael" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL y drych?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Rhaid i'r URL gychwyn gyda ftp:// neu http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Wrthi'n cysylltu â gwefan %s i estyn y rhestr o ddrychau..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "Methwyd cysylltu â gwefan %s i estyn y rhestr o ddrychau" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Dewiswch ddrych i estyn y pecynnau wrtho" diff --git a/perl-install/install/share/po/da.po b/perl-install/install/share/po/da.po new file mode 100644 index 000000000..81487c644 --- /dev/null +++ b/perl-install/install/share/po/da.po @@ -0,0 +1,1725 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Keld Simonsen <keld@dkuug.dk>, 2000-2003, 2004-2005,2007-2009 +# Keld Simonsen <keld@rap.dk>, 2005-2006,2010 +# scootergrisen, 2017-2018 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: scootergrisen\n" +"Language-Team: Danish (http://www.transifex.com/MageiaLinux/mageia/language/" +"da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Vær med!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Gør den din!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Dit valg!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Kontorværktøjer" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Hjemmeunderholdning" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Til børn" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Til familjen!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Til udviklere!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Tak!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Vær fri!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Har du andre supplerende medier?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Følgende medier er fundet og vil blive brugt ved installeringen: %s.\n" +"\n" +"\n" +"Har du et supplerende installationsmedie, der skal konfigureres?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Netværk (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Netværk (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Netværk (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-opsætning" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Indtast værtsnavn og katalog for dit NFS-medie" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Værtsmaskinenavn mangler" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Katalog skal begynde med \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Værtsnavn på NFS-monteringen?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Katalog" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Supplerende" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Kan ikke finde en pakkelistefil på dette spejl. Kontrollér at placeringen er " +"korrekt." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core-udgivelse" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted-udgivelse" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree-udgivelse" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Noget hardware på din maskine behøver nogle ikke-frie firmwares for at de " +"frie softwaredrivere skal kunne virke." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Du bør aktivere \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" indeholder de forskellige dele af systemet og dets programmer" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" indeholder ikke-fri software.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Det indeholder også firmware som er nødvendige for at bestemte enheder kan " +"fungere (eksempelvis: nogle ATI-/AMD-grafikkort, nogle netværkskort, nogle " +"RAID-kort, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" indeholder software som ikke kan distribueres i alle lande pga. " +"softwarepatenter." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Det indeholder software fra \"%s\"-genbygning med yderligere formåenheder." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Her kan du aktivere flere medier hvis du vil." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Dette medie leverer pakkeopdateringer til mediet \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Leder efter pakker der allerede er installeret..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Leder efter pakker som skal opgraderes..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Fjerner pakker før opgradering..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Følgende pakker vil blive fjernet for at kunne opdatere systemet: %s\n" +"\n" +"\n" +"Ønsker du virkelig at fjerne disse pakker?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Fejl ved læsning af filen %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Følgende diske blev omdøbt:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (tidligere kaldet %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Netværk" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Vælg et medie" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Fil findes allerede. Skal den overskrives?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Adgang nægtet" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Dårligt NFS-navn" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Dårligt medie %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Kan ikke lave øjebliksbilleder før partitionering" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Øjebliksbilleder vil være tilgængelige efter installation i %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installation" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfiguration" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Du skal også formatere %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Noget hardware på din maskine skal bruge ''proprietære'' drivere for at " +"virke.\n" +"Du kan finde information om dem hos: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Bringer netværket op" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Lukker netværket ned" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Vent venligst, henter fil" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "kan ikke tilføje medie" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopierer nogle pakker til disk til fremtidig brug" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiering udføres" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "nødvendigt" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "vigtigt" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "meget rart" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "rart" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "måske" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Henter pakkeinformation fra XML-metadata..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "Ingen xml-info for mediet \"%s\", kun delvist resultat for pakken %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Ingen beskrivelse" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Visse pakker forespurgt af %s kan ikke installeres:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Der opstod en fejl:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "En fatal fejl skete: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Spørg ikke igen" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d installationstransaktioner mislykkedes" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Installation af pakker mislykkedes:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Arbejdsmaskine" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kontor-arbejdsmaskine" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Kontor-programmer: Tekstbehandling (LibreOffice tekstbehandler, Kword), " +"regneark (LibreOffice Regneark, Kspread ), PDF-visere, osv." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Spillemaskine" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Underholdnings-programmer: arkade, bræt, strategi, osv." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimediecenter" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programmer til afspilning og redigering af lyd og video" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet-computer" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Værktøjssæt til at læse samt sende post og nyheder (mutt, tin..), og til at " +"browse på nettet" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Netværksmaskine (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klienter for forskellige protokoller inklusive ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Værktøjer til at lette indstillingen af din maskine" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsolværktøjer" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Redigeringsværktøjer, skaller, filværktøjer, terminaler" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Udvikling" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Biblioteker, programmer og include-filer til udvikling i C og C++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentation" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Bøger og vejledninger om Linux og fri software" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Understøttelse for tredjeparts-programmer" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Webserver" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab-server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Brandmur/ruter" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet-adgangspunkt" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Post og nyheder" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix-postserver, Inn-nyhedsserver" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Katalogserver" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Server for domænenavne (DNS) og netværksinformation (NIS)" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Fil- og Printerdelings-server" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS-server, Samba-server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Database" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL- og MariaDB-databaseserver" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache og Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Post" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix-postserver" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL- eller MariaDB-databaseserver" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Netværksmaskine-server" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-server, SMB-server, proxy-server, SSH-server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafisk miljø" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma-arbejdsstation" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K-skrivemiljøet, det grundlæggende grafiske miljø, med en vifte af " +"supplerende værktøjer" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME-arbejdsmaskine" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Et grafisk miljø med brugervenlig samling af programmer og værktøjer" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce-arbejdsstation" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Et lettere grafisk miljø med brugervenlige sæt af programmer og " +"skrivebordsværktøjer" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE-arbejdsstation" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon-arbejdsstation" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Et grafisk miljø baseret på GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt-skrivebord" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "En næstegenerations-Qt-port af letvægtsskrivebordsmiljøet" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment-skrivebord" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Et letvægts- og hurtigt grafisk miljø med dedikerede følgere" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE-skrivebord" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Et letvægts- og hurtigt grafisk miljø" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Andre grafiske miljøer" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, osv." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Nytteprogrammer" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin ekstern konfigurationsserver" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Nytteprogrammer og overvågning af netværk" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Overvågningsværktøjer, proceskontering, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Konfigurationsprogrammer for Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Hjæpeprogrammer til at konfigurere server" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Der opstod en fejl, men jeg ved ikke hvordan den kan håndteres på en\n" +"pæn måde.\n" +"Fortsæt på eget ansvar." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Nogle vigtige pakker blev ikke installeret rigtigt.\n" +"Enten er dit cdrom-drev eller din cdrom fejlbehæftet.\n" +"Tjek cdrom'en på en færdiginstalleret maskine ved brug af \"rpm -qpl media/" +"main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Går til trin `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Installation %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> mellem elementer" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg-server er langsom at starte. Vent venligst..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Dit system har kun få resurser. Du kan få problemer med at installere\n" +"%s. Hvis dette sker, kan du prøve en tekst-baseret installation i stedet.\n" +"Dette gøres ved at trykke 'F1' ved opstart fra CD-ROM'en, og så skrive " +"'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Valg af pakkemedie" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Installer %s Plasma-skrivebord" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Installér %ss GNOME-skrivebord" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Tilpasset installation" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma-skrivebord" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME-skrivebord" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Tilpasset skrivebord" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Her er et smugkig på '%s'-skrivebordet." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klik på billeder for at se et større smugkig" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Valg af pakkegrupper" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Individuelt pakkevalg" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Fravalgte alt" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Total størrelse: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Version: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Størrelse: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Vigtighed: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Du kan ikke vælge/fravælge denne pakke" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "grundet manglende %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "grundet uopfyldt %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "prøver at forfremme %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "for at beholde %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Du kan ikke vælge denne pakke, da der ikke er nok plads tilbage til at " +"installere den" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Følgende pakker vil blive installeret" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Følgende pakker vil blive afinstalleret" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Dette er en nødvendig pakke, den kan ikke vælges fra" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Du kan ikke fravælge denne pakke. Den er allerede installeret" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Du kan ikke fravælge denne pakke. Den skal opgraderes" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Vis automatisk valgte pakker" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installér" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Indlæs eller gem det markerede" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Opdaterer pakkevalg" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimal installation" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "" +"Administration\n" +"af programmer" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Vælg pakker som skal installeres" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Installerer" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Ingen detaljer" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Resterende tid:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(beregner...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pakke" +msgstr[1] "%d pakker" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Oversigt" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfigurér" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "ikke konfigureret" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Følgende installationsmedier er fundet.\n" +"Hvis du ønsker at springe nogen af dem over, kan du fravælge dem nu." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Du har mulighed for at kopiere indholdet af cd'erne over på disken før " +"installation.\n" +"Installationen vil så fortsætte fra disken og pakkerne vil forblive " +"tilgængelige, når systemet er fuldt installeret." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopiér hele cd'er" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Der opstod en fejl" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Vælg dit tastaturlayout" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Her er den komplette liste over tilgængelige tastaturer:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installér/Opgradér" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Er dette en nyinstallation eller en opgradering?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installation" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Opgradér %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Krypteringsnøgle for %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Afbryd installation, genstart system" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Ny installation" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Opgradér tidligere installation (ikke anbefalet)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Installationsprogrammet har registreret at dit installerede Linux-system " +"ikke\n" +"på en sikker måde kunne opgraderes til %s.\n" +"\n" +"Det anbefales at bruge en ny installation som erstatter din forrige " +"installation.\n" +"\n" +"Advarsel : du bør sikkerhedskopiere alle dine personlige data inden du " +"vælger \"Ny installation\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Konfigurerer CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Skift din cdrom!\n" +"Indsæt cdrom'en med navnet \"%s\" i dit cdrom-drev, og tryk på Ok når det " +"gjort.\n" +"Hvis du ikke har den, så tryk på Annullér for at undgå installation fra " +"denne cd." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Leder efter tilgængelige pakker..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Dit system har ikke nok plads tilbage til installation eller opgradering " +"(%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Vælg indlæsning eller gemning af pakkevalg.\n" +"Formatet er det samme som for auto_install-genererede filer." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Indlæs" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Gem" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Dårlig fil" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Valg af skrivebord" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Du kan vælge profil for din arbejdsmaskines skrivebord." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Valgt størrelse er større end tilgængelig plads" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Installationstype" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Du har ikke valgt nogen gruppe af pakker.\n" +"Vælg den minimale installation du ønsker:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Med X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Installer anbefalede pakker" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Med basal dokumentation (anbefalet!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Virkelig minimal installation (specielt ingen urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Forbereder opgradering..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Forbereder installationen" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Installerer pakke %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Der opstod en fejl ved sorteringen af pakkerne:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Fortsæt alligevel?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Prøv igen" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Overspring denne pakke" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Overspring alle pakker fra medie '%s'" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Gå tilbage til valg af medie og pakker" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Der opstod en fejl ved installeringen af pakke %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Konfiguration efter installation" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Forsikr dig venligst om at mediet med opdateringsmodulerne er i drev %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Opdateringer" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Du har nu mulighed for at opsætte onlinemedier." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Dette giver mulighed for at installere sikkerhedsopdateringer." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"For at opsætte de medier, skal du har en\n" +"internetforbindelse som virker.\n" +"\n" +"Vil du opsætte opdateringsmediet?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Følgende pakker vil blive installeret" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Forsøg igen?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Fejl ved tilføjelse af medie" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Du har nu mulighed for at hente opdaterede pakker som er blevet opdateret\n" +"efter distributionen blev gjort tilgængelig.\n" +"\n" +"Du vil kunne få sikkerhedsrettelser eller fejlrettelser, men du skal have " +"en\n" +"internetforbindelse for at fortsætte.\n" +"\n" +"Ønsker du at installere opdateringerne?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s på %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Udstyr" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Lydkort" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafisk grænseflade" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Netværk og internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxyer" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "konfigureret" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Sikkerhedsniveau" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Brandmur" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktiveret" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "deaktiveret" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"Du har ikke konfigureret X. Er du sikker på, at du virkelig ønsker dette?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Forbereder indledende opstartsprogram..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Vær tålmodig, dette kan tage et stykke tid..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"I dette er sikkerhedsniveau er adgang til Windows-partitionen forbeholdt " +"administratoren." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Indsæt en tom diskette i drev %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Laver autoinstallations-diskette..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Visse dele af installationen er ikke færdige.\n" +"\n" +"Er du sikker på, at du vil afslutte nu?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Tillykke" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Genstart" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Sprog" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Tilpasning til sprog" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licens" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mus" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Harddisk-bestemmelse" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Installations-klasse" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastatur" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sikkerhed" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Opdeling af disk" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formaterer" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Vælger pakker" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installerer" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Brugere" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Opstartsindlæser" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Konfigurér X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Oversigt" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Tjenester" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Opdateringer" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Afslut" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL på spejlet?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL skal starte med ftp:// eller http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Kontakter %s' websted for at hente listen over tilgængelige spejle..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Kunne ikke kontakte %s' websted for at hente listen over tilgængelige " +#~ "spejle" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Vælg det spejl hvorfra pakkerne skal hentes" diff --git a/perl-install/install/share/po/de.po b/perl-install/install/share/po/de.po new file mode 100644 index 000000000..e740e5b46 --- /dev/null +++ b/perl-install/install/share/po/de.po @@ -0,0 +1,1715 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Ettore Atalan <atalanttore@googlemail.com>, 2014,2018 +# Klaus Christian Harke <k.c.harke@gmx.net>, 2020 +# psyca, 2014-2018,2020,2022 +# Marc Lattemann, 2013 +# Marc Lattemann, 2013 +# Oliver Burger <obgr_seneca@mageia.org>, 2013 +# psyca, 2014 +# user7 <wassipaul@gmx.at>, 2013 +# user7 <wassipaul@gmx.at>, 2013 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: psyca, 2014-2018,2020,2022\n" +"Language-Team: German (http://app.transifex.com/MageiaLinux/mageia/language/" +"de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Treten Sie bei!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Passen Sie es Ihren Wünschen an!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Sie haben die Wahl!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Arbeitsplatz Werkzeuge" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Home Entertainment" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Für Kinder" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Für die Familie!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Für Entwickler" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Danke!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Sei Frei!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Haben Sie weitere zusätzliche Medien?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Folgende Medien wurden gefunden und werden während der Installation " +"verwendet: %s\n" +"\n" +"\n" +"Haben Sie noch weitere Installationsmedien zu konfigurieren?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Netzwerk (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Netzwerk (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Netzwerk (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-Einrichtung" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" +"Bitte geben Sie den Rechnernamen und das Verzeichnis ihres NFS-Mediums ein" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Hostname fehlt" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Verzeichnis muss mit \"/\" beginnen" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Rechnername der NFS-Einbindung?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Verzeichnis" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Ergänzend" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "Kann keine Paketliste auf diesem Spiegel-Server finden." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core-Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted-Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree-Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Ihre Maschine beinhaltet Hardware, die nicht-freie Firmware-Dateien " +"benötigt, damit die freien Treiber funktionieren." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Sie sollten „%s“ aktivieren" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" +"„%s“ enthält die verschiedenen Bestandteile des Systems und seiner " +"Anwendungen" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "„%s“ enthält nicht-freie Software.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Es enthält auch Firmware-Dateien, die für einige Geräte benötigt werden, um " +"funktionieren zu können (z.B. einige AMD/ATI-Grafikkarten, einige " +"Netzwerkkarten, einige RAID-Karten, ...)." + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"„%s“ enthält Software, die aufgrund von Software-Patenten nicht in jedem " +"Land verbreitet werden darf." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Es enthält auch Software aus „%s“, die mit zusätzlichen Fähigkeiten neu " +"gebaut wurde." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Sie können hier weitere Medien aktivieren, wenn Sie das wünschen." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Dieses Medium enthält Paket-Aktualisierungen für das Medium „%s“" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Bereits installierte Pakete werden gesucht ..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Zu aktualisierende Pakete werden gesucht ..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Pakete vor der Aktualisierung entfernen ..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Folgende Pakete werden entfernt, um das Aktualisieren Ihres Rechners zu " +"ermöglichen: %s\n" +"\n" +"\n" +"Wollen Sie diese Pakete wirklich entfernen?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Fehler beim Lesen der Datei %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Die folgenden Datenträger wurden umbenannt:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (vorher als %s bezeichnet)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Netzwerk" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Bitte wählen Sie ein Medium" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Die Datei existiert bereits. Überschreiben?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Erlaubnis verweigert" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Fehlerhafter NFS-Name" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Fehlerhaftes Medium %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Vor der Partitionierung können keine Screenshots erstellt werden" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Die Screenshots sind nach der Installation unter „%s“ verfügbar" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installation" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfiguration" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Sie müssen auch %s formatieren." + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Einige Hardware-Komponenten Ihres Rechners benötigen „proprietäre“\n" +"Treiber. Weitere Infos hierzu finden Sie unter: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Netzwerkverbindung herstellen" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Netzwerkverbindung trennen" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Bitte warten, Datei wird empfangen" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "Es ist nicht möglich, das Medium hinzuzufügen" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Pakete auf die Festplatte speichern für die spätere Verwendung" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Dateien werden kopiert" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "unbedingt notwendig" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "wichtig" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "sehr angenehm" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "angenehm" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "eventuell" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Paket-Informationen aus den XML-Metadaten beziehen ..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Keine XML-Informationen für das Medium „%s“ vorhanden, es können nur " +"Teilergebnisse für das Paket %s angegeben werden" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Keine Beschreibung" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Einige der ausgewählten Programme von %s können nicht installiert werden:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Ein Fehler ist aufgetreten:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Fataler Fehler aufgetreten: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Nicht erneut fragen" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d Installationstransaktionen schlugen fehl" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Installieren der Pakete ist fehlgeschlagen:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Arbeitsplatzrechner" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Büro-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Office-Programme: Textverarbeitung (LibreOffice Writer, KWord), " +"Tabellenkalkulation (LibreOffice Calc, KSpread), PDF-Betrachter, usw." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Spiele-Station" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Spiele: Arkade-, Brett-, Strategiespiele, usw." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedia-Station" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programme, um Audio und Video abzuspielen und zu bearbeiten" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet-Station" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Programme um E-Mails und News zu lesen und zu versenden (pine, mutt, tin..) " +"und um im Internet zu surfen" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Netzwerk-Computer (Client)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clients für verschiedene Protokolle, u.a. SSH" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Werkzeuge, die die Konfiguration Ihres Computers erleichtern" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsolen-Werkzeuge" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editoren, Shells, Dateiwerkzeuge, Konsolen" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Entwicklung" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C- und C++-Entwicklungsbibliotheken, Programme und Include-Dateien" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentation" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Bücher und HOWTOs zu GNU/Linux und Freier Software" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux-Standard-Base. Drittanbieterunterstützung" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Webserver" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab-Server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet-Gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "E-Mail/News" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix-Mail-Server, Inn-News-Server" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Verzeichnisdienst" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-Server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Domänennamen- und Netzwerk-Informations-Server" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Datei- und Druckerserver" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS-Server, Samba-Server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Datenbank" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL- und MariaDB-Datenbankserver" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "E-Mail" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix-Mail-Server" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL- oder MariaDB-Datenbankserver" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Netzwerkrechner-Server" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-Server, SMB-Server, Proxy-Server, SSH-Server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafische Umgebung" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Das K Desktop Environment, die grundlegende grafische Umgebung mit einer " +"Sammlung zugehöriger Programme" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Eine grafische Umgebung mit benutzerfreundlichen Anwendungen und Werkzeugen" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce-Arbeitsplatz " + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Eine schlankere grafische Umgebung mit benutzerfreundlichen Anwendungen und " +"Werkzeugen" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Eine auf GNOME basierende grafische Umbgebung" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt-Desktop" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" +"Qt-Portierung der leichtgewichtigen Desktop-Umgebung der nächsten Generation" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment Desktop" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" +"Eine schlanke und schnelle grafische Umgebung mit benutzerfreundlichen " +"Anwendungen und Werkzeugen" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE-Desktop" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Eine leichtgewichtige und schnelle grafische Umgebung" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Andere grafische Oberflächen" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, usw." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Werkzeuge" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-Server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin-Fernkonfigurationsserver" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Netzwerkwerkzeuge/-überwachung" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Überwachungswerkzeuge, Prozessverwaltung, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia-Assistenten" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Assistenten zur Servereinrichtung" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit umgehen soll. " +"Sie können fortfahren, jedoch auf eigenes Risiko!" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Einige wichtige Pakete wurden nicht richtig installiert. \n" +"Entweder ist Ihr CD-ROM-Laufwerk oder Ihre CD-ROM defekt. \n" +"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n" +"media/main/*.rpm“\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Beginn von Schritt „%s“\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Installation %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> zwischen den Elementen" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Der Xorg-Server braucht lange zum Starten. Bitte warten Sie ..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Ihr System hat nur geringe Ressourcen. Sie werden eventuell Probleme haben, " +"%s zu installieren.\n" +"Wenn dies auftritt, können Sie versuchen, Mageia mit einer textbasierten " +"Benutzerschnittstelle zu installieren. Drücken Sie dafür „F1“, wenn Sie von " +"der CD-Rom installieren, dann geben Sie „text“ ein." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Auswahl der Installationsmedien" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Den %s-Plasma-Desktop installieren" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Den %s-GNOME-Desktop installieren" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Benutzerdefinierte Installation" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma-Desktop" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME-Desktop" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Benutzerdefinierter Desktop" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Hier sehen Sie eine Vorschau des „%s“-Desktops" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klicken Sie auf die Bilder, um größere Vorschauen zu erhalten" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Auswahl der Paketgruppen" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Individuelle Paketauswahl" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Auswahl aufheben" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Gesamtgröße: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Version: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Größe: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d kB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Wichtigkeit: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Sie können dieses Paket nicht auswählen/abwählen." + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "da %s fehlt" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "da %s unerfüllt ist" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "Versuche %s voranzutreiben" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "um %s beizubehalten" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Sie können dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz " +"haben." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Die folgenden Pakete werden installiert" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Die folgenden Pakete werden entfernt" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Dieses Paket ist existenziell, sie können es nicht abwählen!" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" +"Sie können dieses Paket nicht aus der Auswahl entfernen. \n" +"Es ist bereits installiert!" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" +"Sie können dieses Paket nicht aus der Auswahl entfernen. \n" +"Es muss aktualisiert werden!" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Automatisch markierte Pakete anzeigen" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installation" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Auswahl laden/speichern" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Erneuere Paket Auswahl" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Zwischen hierarchischer und flacher Paketliste wechseln" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimal-Installation" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Software verwalten" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Zu installierende Pakete auswählen" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Installation" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Keine Details" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Verbleibende Zeit " + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(schätze...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d Paket" +msgstr[1] "%d Pakete" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Zusammenfassung" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfigurieren" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "Nicht eingerichtet" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Die folgenden Installationsmedien wurden gefunden.\n" +"Wählen Sie die Medien ab, die Sie überspringen wollen." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Sie haben die Möglichkeit, den Inhalt der CDs vor der Installation auf " +"Festplatte zu kopieren. Die Installation wird dann von Festplatte " +"fortgeführt und die Softwarepakete bleiben verfügbar, nachdem das System " +"fertig installiert ist." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopiere die CDs" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Ein Fehler ist aufgetreten" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Bitte wählen Sie Ihr Tastaturlayout" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Komplette Liste aller verfügbarer Tastaturlayouts" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installation/Aktualisierung" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installation" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Aktualisiere %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Schlüssel für %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Installation abbrechen, das System neustarten" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Neuinstallation" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Bestehende Installation aktualisieren (nicht empfohlen)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Das Installationsprogramm hat festgestellt, dass Ihr Linux System nicht\n" +"sicher zu %s aktualisiert werden kann.\n" +"\n" +"Eine Neuinstallation, die Ihre bisherige ersetzt, wird empfohlen.\n" +"\n" +"Warnung: Sie sollten all Ihre persönlichen Daten sichern, bevor Sie \"Neu\n" +" Installation\" wählen." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Konfiguriere CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Bitte wechseln Sie die CD!\n" +"Bitte legen Sie die CD-ROM „%s“ in Ihr Laufwerk. Drücken Sie dann auf „OK“.\n" +"Falls Sie sie nicht vorliegen haben, drücken Sie auf „Abbrechen“." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Suche nach verfügbaren Paketen ..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Das System hat für die Installation oder das Update nicht genug freien " +"Speicher (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Bitte wählen Sie, ob die Paketauswahl geladen oder\n" +"gespeichert werden soll. Es handelt sich um das gleiche\n" +"Format, wie die unter „auto_install“ erzeugten Disketten." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Laden" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Speichern" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Datei fehlerhaft" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Auswahl der Desktop-Umgebung" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Sie haben die Wahl zwischen verschiedenen Desktopprofilen." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Gewünschte Größe übersteigt den verfügbaren Platz" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Installationstyp" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Sie haben keine Paketgruppe ausgewählt.\n" +"Bitte wählen Sie die minimale Installation, die Sie wünschen." + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Mit X (grafischem Server)" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Empfohlene Pakete installieren" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Mit minimaler Dokumentation (Empfohlen)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Extrem minimale Installation (ohne „urpmi“)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Die Aktualisierung wird vorbereitet ..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Installation wird vorbereitet" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Paket %s wird installiert" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Wollen Sie trotzdem fortfahren?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Wiederholen" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Dieses Paket überspringen" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Alle Pakete vom Medium \"%s\" werden übersprungen" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Zurück zu den Medien und zur Paketauswahl" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Bei der Installation des Paketes %s trat ein Fehler auf." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Bereite weitere Konfiguration vor ..." + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Bitte stellen Sie sicher, dass sich das Update-Modul-Medium im Laufwerk %s " +"befindet" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Aktualisierungen" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Sie haben nun die Möglichkeit, Onlinemedien einzurichten." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Dies erlaubt Ihnen Sicherheitsaktualisierungen zu installieren." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Um diese Medien einzurichten benötigen Sie eine funktionierende\n" +"Internetverbindung.\n" +"\n" +"Möchen Sie die Onlinemedien einrichten?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Dieser Downloader konnte nicht installiert werden" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Nochmals versuchen?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Fehler beim Hinzufügen des Mediums" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Sie haben nun die Möglichkeit Pakete zu installieren, die seit Erscheinen\n" +"der Distribution aktualisiert wurden. Diese können " +"Sicherheitsaktualisierungen und Fehlerkorrekturen beinhalten.\n" +"\n" +"Allerdings benötigen Sie dafür eine funktionierende Internetverbindung.\n" +"\n" +"Möchten Sie die Aktualisierungen vornehmen?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s auf %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Soundkarte" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafikumgebung" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Netzwerk & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxys" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "konfiguriert" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Sicherheitsebene" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktiviert" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "deaktiviert" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Sie haben X nicht konfiguriert. Sind Sie sicher?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Initiale Systemstartprogramme vorbereiten ..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Ein wenig Geduld, dies kann einige Zeit dauern ..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"In dieser Sicherheitsebene ist der Zugriff auf Dateien der Windows-Partition " +"nur dem Administrator erlaubt" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Legen Sie eine leere Diskette in das Laufwerk %s ein." + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Erstelle eine Auto-Installationsdiskette" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Einige Schritte sind noch nicht komplett.\n" +"\n" +"Wollen Sie DrakX wirklich beenden?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Herzlichen Glückwunsch!" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Neustart" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Sprache auswählen" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalisierung" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lizenz" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Maus" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Festplatten suchen" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Installationsgruppe" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastatur" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sicherheit" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partitionierung" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatierung" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Pakete auswählen" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installation" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Benutzer" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X konfigurieren" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Zusammenfassung" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Dienste" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Aktualisierungen" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Verlassen" diff --git a/perl-install/install/share/po/de_AT.po b/perl-install/install/share/po/de_AT.po new file mode 100644 index 000000000..eae8db34e --- /dev/null +++ b/perl-install/install/share/po/de_AT.po @@ -0,0 +1,1706 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: German (Austria) (http://www.transifex.com/MageiaLinux/mageia/" +"language/de_AT/)\n" +"Language: de_AT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Treten Sie bei!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Passen Sie es Ihren Wünschen an!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Sie haben die Wahl!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Arbeitsplatz Werkzeuge" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Home Entertainment" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Für Kinder" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Für die Familie!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Für Entwickler" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Danke!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Sei Frei!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Haben Sie weitere zusätzliche Medien?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Folgende Medien wurden gefunden und werden während der Installation " +"verwendet: %s\n" +"\n" +"\n" +"Haben Sie noch weitere Installationsmedien zu konfigurieren?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Netzwerk (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Netzwerk (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Netzwerk (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-Einrichtung" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" +"Bitte geben Sie den Rechnernamen und das Verzeichnis ihres NFS-Mediums ein" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Hostname fehlt" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Verzeichnis muss mit \"/\" beginnen" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Rechnername der NFS-Einbindung?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Verzeichnis" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Ergänzend" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "Kann keine Paketliste auf diesem Spiegel-Server finden." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core-Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted-Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree-Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Ihre Maschine beinhaltet Hardware, die nicht-freie Firmware-Dateien " +"benötigt, damit die freien Treiber funktionieren." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Sie sollten „%s“ aktivieren" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" +"„%s“ enthält die verschiedenen Bestandteile des Systems und seiner " +"Anwendungen" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "„%s“ enthält nicht-freie Software.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Es enthält auch Firmware-Dateien, die für einige Geräte benötigt werden, um " +"funktionieren zu können (z.B. einige AMD/ATI-Grafikkarten, einige " +"Netzwerkkarten, einige RAID-Karten,...)." + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"„%s“ enthält Software, die aufgrund von Software-Patenten nicht in jedem " +"Land verbreitet werden darf." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Es enthält auch Software aus „%s“, die mit zusätzlichen Fähigkeiten neu " +"gebaut wurde." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Sie können hier weitere Medien aktivieren, wenn Sie das wünschen." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Dieses Medium enthält Paket-Aktualisierungen für das Medium „%s“" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Bereits installierte Pakete werden gesucht ..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Zu aktualisierende Pakete werden gesucht..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Pakete vor der Aktualisierung entfernen..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Folgende Pakete werden entfernt, um das Aktualisieren Ihres Rechners zu " +"ermöglichen: %s\n" +"\n" +"\n" +"Wollen Sie diese Pakete wirklich entfernen?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Fehler beim Lesen der Datei %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Die folgenden Datenträger wurden umbenannt:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (vorher als %s bezeichnet)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Netzwerk" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Bitte wählen Sie ein Medium" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Die Datei existiert bereits. Überschreiben?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Erlaubnis verweigert" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Fehlerhafter NFS-Name" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Fehlerhaftes Medium %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Vor der Partitionierung können keine Screenshots erstellt werden" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Die Screenshots sind nach der Installation unter „%s“ verfügbar" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installation" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfiguration" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Sie müssen auch %s formatieren." + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Einige Hardware-Komponenten Ihres Rechners benötigen „proprietäre“\n" +"Treiber. Weitere Infos hierzu finden Sie unter: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Netzwerkverbindung herstellen" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Netzwerkverbindung trennen" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Bitte warten, Datei wird empfangen" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "Es ist nicht möglich, das Medium hinzuzufügen" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Pakete auf die Festplatte speichern für die spätere Verwendung" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Dateien werden kopiert" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "unbedingt notwendig" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "wichtig" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "sehr angenehm" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "angenehm" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "eventuell" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Paket-Informationen aus den XML-Metadaten beziehen..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Keine XML-Informationen für das Medium „%s“ vorhanden, es können nur " +"Teilergebnisse für das Paket %s angegeben werden" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Keine Beschreibung" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Einige der ausgewählten Programme von %s können nicht installiert werden:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Ein Fehler ist aufgetreten:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Es ist ein fataler Fehler aufgetreten: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Nicht erneut fragen" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d Installationstransaktionen fehlgeschlagen" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Installieren der Pakete ist fehlgeschlagen:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Arbeitsplatzrechner" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Büro-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Office-Programme: Textverarbeitung (LibreOffice Writer, KWord), " +"Tabellenkalkulation (LibreOffice Calc, KSpread), PDF-Betrachter, usw." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Spiele-Station" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Spiele: Arkade-, Brett-, Strategiespiele, usw." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedia-Station" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programme, um Audio und Video abzuspielen und zu bearbeiten" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet-Station" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Programme um E-Mails und News zu lesen und zu versenden (pine, mutt, tin..) " +"und um im Internet zu surfen" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Netzwerk-Computer (Client)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clients für verschiedene Protokolle, u.a. SSH" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Werkzeuge, die die Konfiguration Ihres Computers erleichtern" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsolen-Werkzeuge" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editoren, Shells, Dateiwerkzeuge, Konsolen" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Entwicklung" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C- und C++-Entwicklungsbibliotheken, Programme und Include-Dateien" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentation" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Bücher und HOWTOs zu GNU/Linux und Freier Software" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux-Standard-Base. Drittanbieterunterstützung" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Webserver" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab-Server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet-Gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "E-Mail/News" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix-Mail-Server, Inn-News-Server" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Verzeichnisdienst" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-Server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Domänennamen- und Netzwerk-Informations-Server" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Datei- und Druckerserver" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS-Server, Samba-Server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Datenbank" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL- und MariaDB-Datenbankserver" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "E-Mail" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix-Mail-Server" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL- oder MariaDB-Datenbankserver" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Netzwerkrechner-Server" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-Server, SMB-Server, Proxy-Server, SSH-Server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafische Umgebung" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Das K Desktop Environment, die grundlegende grafische Umgebung mit einer " +"Sammlung zugehöriger Programme" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Eine grafische Umgebung mit benutzerfreundlichen Anwendungen und Werkzeugen" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce-Arbeitsplatz " + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Eine schlankere grafische Umgebung mit benutzerfreundlichen Anwendungen und " +"Werkzeugen" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon-Arbeitsplatz" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Eine auf GNOME basierende grafische Umbgebung" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt-Desktop" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" +"Qt-Portierung der leichtgewichtigen Desktop-Umgebung der nächsten Generation" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment Desktop" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" +"Eine schlanke und schnelle grafische Umgebung mit benutzerfreundlichen " +"Anwendungen und Werkzeugen" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE-Desktop" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Eine leichtgewichtige und schnelle grafische Umgebung" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Andere grafische Oberflächen" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, usw." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Dienstprogramme" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-Server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin-Fernkonfigurationsserver" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Netzwerkwerkzeuge/-überwachung" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Überwachungswerkzeuge, Prozessverwaltung, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia-Assistenten" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Assistenten zur Servereinrichtung" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit umgehen soll. " +"Sie können fortfahren, jedoch auf eigenes Risiko!" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Einige wichtige Pakete wurden nicht richtig installiert. \n" +"Entweder ist Ihr CD-ROM-Laufwerk oder Ihre CD-ROM defekt. \n" +"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n" +"media/main/*.rpm“\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Beginn von Schritt „%s“\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Installation %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> zwischen den Elementen" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Der Xorg-Server braucht lange zum Starten. Bitte warten Sie..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Ihr System hat nur geringe Ressourcen. Sie werden eventuell Probleme haben, " +"%s zu installieren.\n" +"Wenn dies auftritt, können Sie versuchen, Mageia mit einer textbasierten " +"Benutzerschnittstelle zu installieren. Drücken Sie dafür „F1“, wenn Sie von " +"der CD-Rom installieren, dann geben Sie „text“ ein." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Auswahl der Installationsmedien" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Den %s-Plasma-Desktop installieren" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Den %s-GNOME-Desktop installieren" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Benutzerdefinierte Installation" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma-Desktop" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME-Desktop" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Benutzerdefinierter Desktop" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Hier sehen Sie eine Vorschau des „%s“-Desktops" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klicken Sie auf die Bilder, um größere Vorschauen zu erhalten" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Auswahl der Paketgruppen" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Individuelle Paketauswahl" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Auswahl aufheben" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Gesamtgröße: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Version:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Größe:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d kB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Wichtigkeit:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Sie können dieses Paket nicht auswählen/abwählen." + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "wegen fehlendem %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "wegen nicht erfüllter Abhängigkeit von %s " + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "Es wird versucht, %s voranzubringen" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "um %s zu behalten" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Sie können dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz " +"haben." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Die folgenden Pakete werden installiert" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Die folgenden Pakete werden entfernt" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Dieses Paket ist existenziell, sie können es nicht abwählen!" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" +"Sie können dieses Paket nicht aus der Auswahl entfernen. \n" +"Es ist bereits installiert!" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" +"Sie können dieses Paket nicht aus der Auswahl entfernen. \n" +"Es muss aktualisiert werden!" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Automatisch markierte Pakete anzeigen" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installieren" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Auswahl laden/speichern" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Erneuere Paket Auswahl" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Zwischen hierarchischer und flacher Paketliste wechseln" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimal-Installation" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Software-Verwaltung" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Zu installierende Pakete auswählen" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Wird installiert" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Keine Details" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Verbleibende Zeit " + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(Schätzen...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Zusammenfassung" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Einrichten" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "Nicht eingerichtet" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Die folgenden Installationsmedien wurden gefunden.\n" +"Wählen Sie die Medien ab, die Sie überspringen wollen." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Sie haben die Möglichkeit, den Inhalt der CDs vor der Installation auf " +"Festplatte zu kopieren. Die Installation wird dann von Festplatte " +"fortgeführt und die Softwarepakete bleiben verfügbar, nachdem das System " +"fertig installiert ist." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopiere die CDs" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Ein Fehler ist aufgetreten" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Bitte wählen Sie Ihr Tastaturlayout" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Komplette Liste aller verfügbarer Tastaturlayouts" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installation/Aktualisierung" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installation" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Aktualisiere %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Schlüssel für %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Installation abbrechen, das System neustarten" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Neuinstallation" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Bestehende Installation aktualisieren (nicht empfohlen)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Das Installationsprogramm hat festgestellt, dass Ihr Linux System nicht\n" +"sicher zu %s aktualisiert werden kann.\n" +"\n" +"Eine Neuinstallation, die Ihre bisherige ersetzt, wird empfohlen.\n" +"\n" +"Warnung: Sie sollten all Ihre persönlichen Daten sichern, bevor Sie \"Neu\n" +" Installation\" wählen." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Konfiguriere CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Bitte wechseln Sie die CD!\n" +"Bitte legen Sie die CD-ROM „%s“ in Ihr Laufwerk. Drücken Sie dann auf „OK“.\n" +"Falls Sie sie nicht vorliegen haben, drücken Sie auf „Abbrechen“." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Suche nach verfügbaren Paketen ..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Das System hat für die Installation oder das Update nicht genug freien " +"Speicher (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Bitte wählen Sie, ob die Paketauswahl geladen oder\n" +"gespeichert werden soll. Es handelt sich um das gleiche\n" +"Format, wie die unter „auto_install“ erzeugten Disketten." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Laden" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Speichern" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Datei fehlerhaft" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Desktop-Auswahl" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Sie haben die Wahl zwischen verschiedenen Desktopprofilen." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Gewünschte Größe übersteigt den verfügbaren Platz" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Installationstyp" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Sie haben keine Paketgruppe ausgewählt.\n" +"Bitte wählen Sie die minimale Installation, die Sie wünschen." + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Mit X (grafischem Server)" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Empfohlene Pakete installieren" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Mit minimaler Dokumentation (Empfohlen)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Extrem minimale Installation (ohne „urpmi“)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Die Aktualisierung wird vorbereitet ..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Installation wird vorbereitet" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Paket %s wird installiert" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Wollen Sie trotzdem fortfahren?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Wiederholen" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Dieses Paket überspringen" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Alle Pakete vom Medium \"%s\" werden übersprungen" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Zurück zu den Medien und zur Paketauswahl" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Bei der Installation des Paketes %s trat ein Fehler auf." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Bereite weitere Konfiguration vor ..." + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Bitte stellen Sie sicher, dass sich das Update-Modul-Medium im Laufwerk %s " +"befindet" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Aktualisierungen" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Sie haben nun die Möglichkeit, Onlinemedien einzurichten." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Dies erlaubt Ihnen, Sicherheitsaktualisierungen zu installieren." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Um diese Medien einzurichten benötigen Sie eine funktionierende\n" +"Internetverbindung.\n" +"\n" +"Möchten Sie die Onlinemedien einrichten?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Dieser Downloader konnte nicht installiert werden" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Nochmals versuchen?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Fehler beim Hinzufügen des Mediums" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Sie haben nun die Möglichkeit, Pakete zu installieren, die seit Erscheinen\n" +"der Distribution aktualisiert wurden. Diese können " +"Sicherheitsaktualisierungen und Fehlerkorrekturen beinhalten.\n" +"\n" +"Allerdings benötigen Sie dafür eine funktionierende Internetverbindung.\n" +"\n" +"Möchten Sie die Aktualisierungen vornehmen?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s auf %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Soundkarte" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafikumgebung" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Netzwerk & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxys" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "konfiguriert" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Sicherheitsebene" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktiviert" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "deaktiviert" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Sie haben X nicht konfiguriert. Sind Sie sicher?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Initiale Systemstartprogramme vorbereiten..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Ein wenig Geduld, dies kann einige Zeit dauern..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"In dieser Sicherheitsebene ist der Zugriff auf Dateien der Windows-Partition " +"nur dem Administrator erlaubt" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Legen Sie eine leere Diskette in das Laufwerk %s ein." + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Erstelle eine Auto-Installationsdiskette" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Einige Schritte sind noch nicht komplett.\n" +"\n" +"Wollen Sie DrakX wirklich beenden?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Herzlichen Glückwunsch!" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Neustart" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Sprache auswählen" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalisierung" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lizenz" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Maus" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Festplatten suchen" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Installationsgruppe" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastatur" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sicherheit" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partitionierung" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatierung" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Pakete auswählen" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installation" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Benutzer" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X konfigurieren" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Zusammenfassung" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Dienste" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Aktualisierungen" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Verlassen" diff --git a/perl-install/install/share/po/el.po b/perl-install/install/share/po/el.po new file mode 100644 index 000000000..576a2a026 --- /dev/null +++ b/perl-install/install/share/po/el.po @@ -0,0 +1,1714 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dimitrios Glentadakis <dglent@free.fr>, 2022 +# Dimitrios Glentadakis <dglent@gmail.com>, 2009-2016 +# Dimitrios Glentadakis <dglent@gmail.com>, 2009-2016, 2018,2020 +# nikos papadopoulos <231036448@freemail.gr>, 2008 +# Thanos Kyritsis <djart@hellug.gr>, 2001 +# Theofilos Chamalis <theofxam@gmail.com>, 2015 +# Νίκος Νύκταρης (Nick Niktaris) <niktarin@yahoo.com>, 2003 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Dimitrios Glentadakis <dglent@free.fr>, 2022\n" +"Language-Team: Greek (http://app.transifex.com/MageiaLinux/mageia/language/" +"el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Ελάτε μαζί μας!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Κάντε τη δική σας!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Η επιλογή σας!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Εργαλεία γραφείου" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Οικιακή ψυχαγωγία" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Για τα παιδιά" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Για την οικογένεια!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Για προγραμματιστές!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Ευχαριστούμε!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Ελευθερωθείτε!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Έχετε άλλα πρόσθετα μέσα ενημέρωσης;" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Βρέθηκαν τα ακόλουθα μέσα και θα χρησιμοποιηθούν κατά την εγκατάσταση: %s.\n" +"\n" +"\n" +"Έχετε κάποιο συμπληρωματικό μέσο εγκατάστασης για ρύθμιση;" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Δίκτυο (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Δίκτυο (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Δίκτυο (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Ρύθμιση NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Παρακαλώ εισάγετε το όνομα υπολογιστή και τη διαδρομή του μέσου NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Λείπει το όνομα υπολογιστή" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Ο κατάλογος πρέπει να αρχίζει με «/»" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Το όνομα υπολογιστή της προσάρτησης NFS;" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Κατάλογος" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Συμπληρωματικά" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Δεν βρέθηκε το αρχείο με την λίστα των πακέτων σε αυτόν τον καθρεπτισμό. " +"Σιγουρευτείτε ότι η τοποθεσία είναι σωστή." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Στο μηχάνημά σας υπάρχει υλικό που απαιτεί μη ελεύθερο firmware ώστε να " +"λειτουργούν οι οδηγοί ανοιχτού κώδικα. " + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Θα πρέπει να ενεργοποιήσετε το «%s»" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" +"Το «%s» περιέχει τα διάφορα τμήματα του συστήματος και τις εφαρμογές του" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "Το «%s» περιέχει μη ελεύθερο λογισμικό.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Επίσης, περιέχει firmware που απαιτούνται για την λειτουργία ορισμένων " +"συσκευών (πχ: μερικές κάρτες γραφικών ATI/AMD, μερικές κάρτες δικτύου, " +"μερικές κάρτες RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"Το «%s» περιέχει λογισμικό που δεν μπορεί να διανεμηθεί σε όλες τις χώρες " +"λόγω περιορισμού των διπλωμάτων ευρεσιτεχνίας." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Επίσης, περιέχει λογισμικό από το «%s» επαναδημιουργημένο με επιπλέον " +"χαρακτηριστικά." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" +"Αν το επιθυμείτε, εδώ μπορείτε να ενεργοποιήσετε περισσότερες πηγές " +"λογισμικού." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Αυτό το μέσο παρέχει ενημερώσεις πακέτων για το μέσο «%s»" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Αναζήτηση στα ήδη εγκατεστημένα πακέτα..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Αναζήτηση πακέτων προς αναβάθμιση..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Αφαίρεση των πακέτων, πριν την αναβάθμιση..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Τα παρακάτω πακέτα θα αφαιρεθούν για να αναβαθμιστεί το σύστημά σας: %s\n" +"\n" +"\n" +"Θέλετε πραγματικά να αφαιρέστε αυτά τα πακέτα;\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Σφάλμα κατά την ανάγνωση του αρχείου %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Έγινε μετονομασία των παρακάτω δίσκων:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (η προηγούμενη ονομασία ήταν %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Δίκτυο" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Παρακαλώ επιλέξτε ένα μέσο" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Το αρχείο υπάρχει ήδη. Να αντικατασταθεί;" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Άρνηση αδείας" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Μη έγκυρο όνομα NFS" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Μη έγκυρο μέσο %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Αδύνατη η λήψη στιγμιοτύπων πριν από την δημιουργία κατατμήσεων" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Τα στιγμιότυπα θα είναι διαθέσιμα μετά την εγκατάσταση στο %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Εγκατάσταση" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Ρύθμιση" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Πρέπει επίσης να μορφοποιήσετε το %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Ένα μέρος του υλικού σας χρειάζεται «ιδιόκτητους» οδηγούς για να " +"λειτουργήσει.\n" +"Μπορείτε να βρείτε σχετικές πληροφορίες στο: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Εκκίνηση της διεπαφής δικτύου" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Διακοπή της διεπαφής δικτύου" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Παρακαλώ περιμένετε, γίνεται λήψη του αρχείου" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "αδυναμία προσθήκης του μέσου" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Αντιγραφή κάποιων πακέτων στο δίσκο για μελλοντική χρήση" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Αντιγραφή σε εξέλιξη" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "υποχρεωτικό" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "σημαντικό" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "πολύ χρήσιμο" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "χρήσιμο" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "ίσως" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Λήψη των πληροφοριών του πακέτου από τα μεταδεδομένα XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Δεν βρέθηκαν πληροφορίες xml για το μέσο «%s», μόνον εν μέρει αποτελέσματα " +"για το πακέτο %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Χωρίς περιγραφή" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Κάποια πακέτα που ζητήθηκαν από το %s, δεν μπορούν να εγκατασταθούν:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Παρουσιάστηκε ένα σφάλμα :" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Παρουσιάστηκε ένα κρίσιμο σφάλμα: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Να μην ξαναγίνει η ερώτηση" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d συναλλαγές εγκατάστασης απέτυχαν" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Η εγκατάσταση των πακέτων απέτυχε :" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Σταθμός εργασίας" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Σταθμός εργασίας γραφείου" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Εργαλεία γραφείου: επεξεργαστές κειμένου (LibreOffice Writer, Kword), " +"λογιστικών φύλλων (LibreOffice Calc, Kspread), προβολείς pdf, κλπ" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Παιχνίδια" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" +"Προγράμματα διασκέδασης: ηλεκτρονικά παιχνίδια, επιτραπέζια, στρατηγικής, κλπ" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Πολυμέσα" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Προγράμματα αναπαραγωγής και επεξεργασίας βίντεο και ήχου" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Διαδίκτυο" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Εργαλεία για αποστολή και λήψη αλληλογραφίας και ειδήσεων (mutt, tin...) και " +"για περιήγηση στο διαδίκτυο" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Υπολογιστής δικτύου (πελάτης)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Πελάτες για διαφορετικά πρωτόκολλα συμπεριλαμβανομένου του ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Εργαλεία για διευκόλυνση της ρύθμισης του υπολογιστή σας" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Εργαλεία τερματικού" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Επεξεργαστές, κελύφη, εργαλεία αρχείων, τερματικά" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Ανάπτυξη" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Βιβλιοθήκες ανάπτυξης C και C++, προγράμματα και αρχεία ενσωμάτωσης" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Τεκμηρίωση" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Βιβλία και οδηγίες για το Linux και το ελεύθερο λογισμικό" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "«Linux Standard Base». Υποστήριξη εφαρμογών τρίτων" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Εξυπηρετητής ιστού" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Λογισμικό συνεργασίας" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Εξυπηρετητής Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Τείχος προστασίας/Δρομολογητής" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Πύλη διαδικτύου" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Αλληλογραφία/Ειδήσεις" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix εξυπηρετητής ταχυδρομείου, εξυπηρετητής ειδήσεων Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Εξυπηρετητής καταλόγων" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Εξυπηρετητής FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Εξυπηρετητής ονομάτων τομέα και πληροφοριών δικτύου" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Εξυπηρετητής κοινής χρήσης αρχείων και εκτυπωτών" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Εξυπηρετητής NFS, εξυπηρετητής Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Βάση δεδομένων" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Εξυπηρετητής βάσης δεδομένων PostgreSQL και MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Ιστός/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Αλληλογραφία" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Εξυπηρετητής αλληλογραφίας Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Εξυπηρετητής βάσης δεδομένων PostgreSQL ή MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Εξυπηρετητής υπολογιστών δικτύου" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" +"Εξυπηρετητής NFS, εξυπηρετητής SMB, εξυπηρετητής Proxy, εξυπηρετητής ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Γραφικό περιβάλλον" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Σταθμός εργασίας Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Το βασικό περιβάλλον εργασίας KDE με μια συλλογή συνοδευτικών εργαλείων" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Σταθμός Εργασίας Gnome" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Ένα γραφικό περιβάλλον με φιλικά εργαλεία και εφαρμογές" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Σταθμός εργασίας Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "Ένα ελαφρύ γραφικό περιβάλλον με φιλικά εργαλεία και εφαρμογές" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Σταθμός Εργασίας MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Σταθμός εργασίας Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Γραφικό περιβάλλον βασισμένο στο GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Περιβάλλον εργασίας LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Μια νέας γενιάς μεταφορά σε Qt του ελαφριού γραφικού περιβάλλοντος" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Επιφάνεια εργασίας Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Ένα ελαφρύ & γρήγορο γραφικό περιβάλλον με αφοσιωμένους οπαδούς " + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Περιβάλλον εργασίας LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Ένα ελαφρύ και γρήγορο γραφικό περιβάλλον" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Άλλα γραφικά περιβάλλοντα" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, κλπ" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Εργαλεία" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Εξυπηρετητής SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin εξυπηρετητής απομακρυσμένης ρύθμισης" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Εργαλεία δικτύου/εποπτεία δικτύου" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Εργαλεία εποπτείας, απολογισμός διεργασιών, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Οδηγοί Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Οδηγοί για τη ρύθμιση του εξυπηρετητή" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Παρουσιάστηκε ένα σφάλμα, αλλά δεν ξέρω πώς να το χειριστώ.\n" +"Συνεχίστε με δική σας ευθύνη." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Μερικά σημαντικά πακέτα δεν εγκαταστάθηκαν σωστά.\n" +"Ο οδηγός CD ή το CD είναι ελαττωματικό.\n" +"Ελέγξτε το CD σε ένα εγκατεστημένο σύστημα χρησιμοποιώντας \" rpm -qpl media/" +"main/*.rpm \"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Εκκίνηση του βήματος «%s»\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Εγκατάσταση της %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> Αλλαγή πεδίου" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" +"Ο εξυπηρετητής Xorg χρειάζεται χρόνο για να ξεκινήσει. Παρακαλώ περιμένετε..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Το σύστημά σας διαθέτει περιορισμένους πόρους. Ίσως συναντήσετε προβλήματα\n" +"κατά την εγκατάσταση της %s. Αν συμβεί αυτό, μπορείτε να προσπαθήσετε\n" +"την εγκατάσταση σε λειτουργία κειμένου. Για να το πραγματοποιήσετε, πατήστε " +"«F1»\n" +"κατά την εκκίνηση του CD-ROM και εισάγετε «text»." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Επιλογή μέσων" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Εγκατάσταση του περιβάλλοντος Plasma της %s" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Εγκατάσταση του περιβάλλοντος GNOME της %s" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Προσαρμοσμένη εγκατάσταση" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Επιφάνειας εργασίας Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Περιβάλλον εργασίας GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Προσαρμοσμένο περιβάλλον εργασίας" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Αυτή είναι μια προεπισκόπηση του περιβάλλοντος εργασίας «%s»." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Κάντε κλικ στις εικόνες, για να δείτε μια μεγαλύτερη προεπισκόπηση" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Επιλογή ομάδων πακέτων" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Επιλογή μεμονωμένων πακέτων" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Αποεπιλογή όλων" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Συνολικό μέγεθος: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Έκδοση: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Μέγεθος: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Σπουδαιότητα: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Δεν είναι δυνατή η επιλογή/αποεπιλογή του συγκεκριμένου πακέτου" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "λόγω έλλειψης του %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "λόγω μη ικανοποίησης του %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "προσπάθεια προώθησης του %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "για να κρατηθεί το %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Δεν μπορείτε να επιλέξετε αυτό το πακέτο διότι δεν υπάρχει αρκετός ελεύθερος " +"χώρος για να το εγκαταστήσετε." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Θα εγκατασταθούν τα παρακάτω πακέτα" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Θα αφαιρεθούν τα παρακάτω πακέτα " + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Αυτό το πακέτο είναι απαραίτητο, δεν μπορεί να αποεπιλεγεί" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Δεν μπορείτε να αποεπιλέξετε αυτό το πακέτο. Είναι ήδη εγκατεστημένο" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Δεν μπορείτε να αποεπιλέξετε αυτό το πακέτο. Πρέπει να αναβαθμιστεί" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Εμφάνιση των επιλεγμένων πακέτων αυτόματα" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Εγκατάσταση" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Φόρτωση/αποθήκευση της επιλογής" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Ενημέρωση της επιλογής των πακέτων" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Εναλλαγή μεταξύ ιεραρχικού και επίπεδου κατάστιχου πακέτων" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Ελάχιστη εγκατάσταση" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Διαχείριση λογισμικού" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Επιλέξτε τα πακέτα που θέλετε να εγκαταστήσετε" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Εγκατάσταση" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Χωρίς λεπτομέρειες" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Εναπομένων χρόνος:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(εκτίμηση...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d πακέτο" +msgstr[1] "%d πακέτα" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Σύνοψη" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Ρύθμιση" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "δεν ρυθμίστηκε" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Βρέθηκαν τα ακόλουθα μέσα εγκατάστασης.\n" +"Αν θέλετε να παραλείψετε κάποια από αυτά, μπορείτε να τα αποεπιλέξετε τώρα." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Έχετε την δυνατότητα να αντιγράψετε το περιεχόμενο των CD στο σκληρό δίσκο " +"πριν την εγκατάσταση.\n" +"Αυτή θα συνεχιστεί από τον σκληρό δίσκο και τα πακέτα θα παραμείνουν " +"διαθέσιμα και μετά το τέλος της." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Αντιγραφή ολόκληρων των CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Παρουσιάστηκε ένα σφάλμα " + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Παρακαλώ επιλέξτε τη διάταξη του πληκτρολογίου σας" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Αυτή είναι η πλήρης λίστα με τα διαθέσιμα πληκτρολόγια:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Εγκατάσταση/αναβάθμιση" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Επιθυμείτε να κάνετε μια εγκατάσταση ή αναβάθμιση;" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Εγκατάσταση" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Αναβάθμιση της %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Κλειδί κρυπτογράφησης για το %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Ακύρωση της εγκατάστασης, επανεκκίνηση του συστήματος" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Νέα εγκατάσταση" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Αναβάθμιση της προηγούμενης εγκατάστασης (δεν συστήνεται)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Ο εγκαταστάτης εντόπισε ότι το εγκατεστημένο σας σύστημα Mageia Linux δεν " +"μπορεί\n" +"να αναβαθμιστεί με ασφάλεια σε %s.\n" +"\n" +"Συνιστάται να αντικαταστήσετε την εγκατάστασή σας με μια νέα.\n" +"\n" +"Προσοχή: θα πρέπει να πάρετε αντίγραφα ασφαλείας όλων των προσωπικών σας " +"δεδομένων πριν επιλέξετε\n" +"«Νέα εγκατάσταση»." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Διαμόρφωση του CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Αλλάξτε το Cd-Rom!\n" +"Παρακαλώ εισαγάγετε το Cd-Rom με όνομα «%s» στον οδηγό σας και πατήστε " +"«Εντάξει».\n" +"Εάν δεν το έχετε, πατήστε «Ακύρωση» για αποφυγή της εγκατάστασης από αυτό το " +"Cd-Rom." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Αναζήτηση για διαθέσιμα πακέτα..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Το σύστημά σας δεν έχει αρκετό ελεύθερο χώρο για την εγκατάσταση ή την " +"αναβάθμιση (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Παρακαλώ, επέλεξε τη φόρτωση ή την αποθήκευση της λίστας με τα επιλεγμένα " +"πακέτα.\n" +"Η μορφή είναι η ίδια με αυτή της αυτόματης εγκατάστασης (auto_install)." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Φόρτωση" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Αποθήκευση" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Μη έγκυρο αρχείο" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Επιλογή περιβάλλοντος εργασίας" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" +"Μπορείτε να επιλέξετε το προφίλ για το περιβάλλον εργασίας του υπολογιστή " +"σας." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Το επιλεγμένο μέγεθος είναι μεγαλύτερο από το διαθέσιμο χώρο" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Τύπος εγκατάστασης" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Δεν έχετε επιλέξει κάποια ομάδα πακέτων.\n" +"Παρακαλώ επιλέξτε την ελάχιστη εγκατάσταση που επιθυμείτε:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Με Χ" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Εγκατάσταση των προτεινόμενων πακέτων" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Με την βασική τεκμηρίωση (συνιστάται!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Πραγματικά ελάχιστη εγκατάσταση (ειδικά χωρίς urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Προετοιμασία της αναβάθμισης..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Προετοιμασία της εγκατάστασης" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Εγκατάσταση του πακέτου %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Παρουσιάστηκε σφάλμα κατά την ταξινόμηση των πακέτων:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Να συνεχίσω;" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Προσπάθεια ξανά" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Παράλειψη αυτού του πακέτου" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Παράλειψη όλων των πακέτων από το μέσο «%s»" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Επιστροφή στην επιλογή μέσων και πακέτων" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Παρουσιάστηκε σφάλμα κατά την εγκατάσταση του πακέτου %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Ρυθμίσεις μετά την εγκατάσταση" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Παρακαλώ σιγουρευτείτε ότι το μέσο ενημέρωσης των αρθρωμάτων (modules) είναι " +"μέσα στον οδηγό %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Ενημερώσεις" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" +"Σε αυτό το βήμα σας δίδεται η δυνατότητα να προσθέσετε μέσα από το διαδίκτυο." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Αυτό επιτρέπει την εγκατάσταση των ενημερώσεων ασφαλείας." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Για την προσθήκη αυτών των μέσων, απαιτείται μια ενεργή σύνδεση\n" +"στο διαδίκτυο.\n" +"\n" +"Επιθυμείτε την προσθήκη των μέσων ενημέρωσης;" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Αδύνατη η εγκατάσταση του προγράμματος λήψης" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Προσπάθεια ξανά;" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Αποτυχία κατά την προσθήκη του μέσου" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Τώρα έχετε την ευκαιρία να κάνετε λήψη ενημερωμένων πακέτων.\n" +"Αυτά τα πακέτα έχουν ενημερωθεί μετά την έκδοση της διανομής. Μπορεί να\n" +"περιέχουν διορθώσεις σφαλμάτων ή ενημερώσεις ασφαλείας.\n" +"\n" +"Για να κάνετε λήψη αυτών των πακέτων πρέπει να έχετε ενεργοποιημένη\n" +"τη σύνδεση με το διαδίκτυο.\n" +"\n" +"Θέλετε να εγκαταστήσετε τις ενημερώσεις ;" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s σε %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Υλικό" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Κάρτα ήχου" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Γραφικό περιβάλλον" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Δίκτυο & Διαδίκτυο" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Διαμεσολαβητές" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "ρυθμισμένο" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Επίπεδο ασφαλείας" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Τείχος προστασίας" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "ενεργοποιημένο" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "απενεργοποιημένο" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Δεν έχετε ρυθμίσει τον Χ. Είστε σίγουρος/η ότι θέλετε πραγματικά αυτό;" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Προετοιμασία του αρχικού προγράμματος εκκίνησης..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Παρακαλώ περιμένετε, η διαδικασία μπορεί να διαρκέσει μερικά λεπτά ..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Σε αυτό το επίπεδο ασφαλείας, μόνο ο διαχειριστής έχει πρόσβαση στα αρχεία " +"στην κατάτμηση των Windows." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Εισάγετε μια άδεια δισκέτα στον οδηγό %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Μερικά βήματα δεν ολοκληρώθηκαν.\n" +"\n" +"Θέλετε σίγουρα να εγκαταλείψετε τώρα;" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Συγχαρητήρια" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Επανεκκίνηση" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Γλώσσα" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Τοπικότητα" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Άδεια χρήσης" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Ποντίκι" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Ανίχνευση σκληρών δίσκων" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Κλάση εγκατάστασης" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Πληκτρολόγιο" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Ασφάλεια" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Διαμερισμός" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Μορφοποίηση " + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Επιλογή πακέτων" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Εγκατάσταση" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Χρήστες" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Εκκίνηση" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Ρύθμιση του Χ" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Σύνοψη" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Υπηρεσίες" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Ενημερώσεις" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Έξοδος" diff --git a/perl-install/install/share/po/eo.po b/perl-install/install/share/po/eo.po new file mode 100644 index 000000000..3ce0f3461 --- /dev/null +++ b/perl-install/install/share/po/eo.po @@ -0,0 +1,1699 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000 +# Vilhelmo Lutermano <vlutermano@free.fr>, 2007 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Esperanto (http://www.transifex.com/MageiaLinux/mageia/" +"language/eo/)\n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Ĉu vi havas plian kroman datenportilon?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"La sekva datenportilo estas trovita kaj estas uzota dum instalado: %s.\n" +"\n" +"\n" +"Ĉu vi havas kroman instalan datenportilon por konfiguri? " + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Reto (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Reto (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Reto (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-agordo" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Bonvole enigu la nomon kaj dosierujon de via NSF-datenportilo" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Nomo mankas" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Dosierujo devas komenci per \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Nomo de la NFS surmeto?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Dosierujo" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Kroma" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Mi ne trovas pakaĵlistan dosieron sur tiu spegulo. Certiĝu ke la adreso " +"estas ĝusta." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Rigardante jam instalitajn pakaĵojn..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Trovadas pakaĵojn por promocii" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Mi forigas pakaĵojn antaŭ ol ĝisdatigi..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Sekvaj pakaĵoj estos forigitaj por ebligi ĝisdatigon de via sistemo: %s\n" +"\n" +"\n" +"Ĉu vi vere deziras forigi tiujn pakaĵojn?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "La sekva(j) disko(j) estas alinomitaj:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (antaŭe nomitaj kiel %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Reto" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Bonvole elektu datenportilon" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Dosiero jam ekzistas. Ĉu surskribi ĝin?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permeso rifuzita" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Malĝusta NFS-nomo" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Malbona datenportilo %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Mi ne povas fari ekranfotojn antaŭ ol subdiskigi" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Ekranfotoj haveblos post instalado en %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalado" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfigurado" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Vi devas ankaŭ formati %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Iuj aparatoj sur via komputilo bezonas \"proprietajn\" pelilojn por " +"funkcii.\n" +"Vi povas trovi iun informon pri ili ĉe: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Startado de la reto" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Haltas de la reto" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Mi kopias kelkajn pakaĵojn sur diskoj por estonta uzo" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Mi estas kopianta" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "havenda" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "grava(j)" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "tre agrabla(j)" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "agrabla(j)" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "elbe" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Nenia xml-informo por aŭdvidaĵo \"%s\", nur parta rezulto por pakaĵo %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nenia priskribo" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Kelkaj pakaĵoj bezonataj de %s ne instaleblas:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Eraro okazis:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Okazis fatala eraro: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d instal-transakcioj malsukcesis" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Laborstacio" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Oficeja laborstacio" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Oficejaj programoj: tekstiloj (LibreOffice Writer, Verkilo [Kword]), " +"tabelkalkuliloj (LibreOffice Calc, Kspread), PDF-vidigiloj, ktp." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Ludstacio" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Amuz-programoj: arcade, tabuloj [boards], strategio, ktp." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Plurmediaj stacio" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programoj por ludi/prilabori son- kaj video-programojn" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Interreta stacio" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Agordiloj por legi kaj sendi retpoŝt-mesaĝojn kaj novaĵojn (mutt, tin...) " +"kaj por krozi tra la ttt" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Reta computilo (kliento)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klientoj por diversaj protokoloj inklude de ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Iloj por faciligi la konfiguradon de via komputilo" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsoliloj" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Redaktiloj, ŝeloj, dosieriloj, terminaloj" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Programado" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C kaj C++ programadaj bibliotekoj, programoj kaj ĉapdosieroj" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentaro" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Libroj kaj Kielfari pri Linukso kaj libera programaro" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Subteno por triaflankaj aplikaĵoj" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Interret-servilo" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Grupa programaro" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Servilo" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Fajroŝirmilo/enkursigilo" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Interreta kluzo" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Poŝto/Novaĵoj" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix poŝta servilo, Inn novaĵaj servilo" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Dosierujo-servilo" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP Servilo" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Domajn-noma kaj ret-informa servilo" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Dosier- kaj printil-kundivida servilo" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS servilo, Samba servilo" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Datumbazoj" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Datenbaz-serviloj PostgreSQL kaj MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "TTT/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Poŝto" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix poŝta servilo" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Datenbaz-servilo PostgreSQL aŭ MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Reta computilo (servilo)" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-servilo, SMB-servilo, prokur-servilo, ssh-servilo" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafika medio" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "La tabula medio K, la baza grafika medio kun kolekto da akompanaj iloj" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gnoma Laborstacio" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Grafika medio kun uzfacila aplikaĵaro kaj tabul-iloj" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Aliaj grafikaj labortabuloj" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Iloj" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH servilo" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Servilo de fora konfigurado Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Retaj utilaĵoj/monitorado" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Monitoriloj, proces-kalkuliloj, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Sorĉiloj de Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Sorĉiloj por konfiguri servilon" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Eraro okazis, sed mi ne scias kiel trakti ĝin bone.\n" +"Daŭri je via propra risko." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Iuj gravaj pakaĵoj ne estis taŭge instalata.\n" +"Aŭ via KDROM drajvo aŭ via KDROM disko estas difektita.\n" +"Kontrolu la KDROM sur instalata komputilo per\n" +"\"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Eniras paŝon `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Instalado %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> inter elementoj" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Via sistemo havas malmulte da risurcoj. Eble vi havos problemojn pri\n" +"instali %s. Se tio okazos, vi povos anstataŭ provi tekstan\n" +"instaladon. Por ĉi tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n" +"tajpu `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instalo de la labortablo %s GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Persona instalado" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Elektado de Pakaĵaj Grupoj" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Elektado de individuaj pakaĵoj" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Tuta grandeco: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versio: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Grandeco: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Graveco: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Vi ne povas elektu/malelektu ĉi tiun pakaĵon" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "pro mankanta %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "pro neplenumita %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "mi provas disponigi %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "por konservi %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Vi ne povas elekti ĉi tiun pakaĵon ĉar ne estas sufiĉe da spaco por instali\n" +"ĝin." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "La sekvaj pakaĵoj estos instalataj" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "La sekvaj pakaĵoj estos malinstalataj" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ĉi tiu estas deviga pakaĵo, vi ne povas malelekti ĝin" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Vi ne povas malelekti ĉi tiun pakaĵon. Ĝi estas jam instalita." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Vi ne povas malelekti ĉi tiun pakaĵon. Ĝi devus esti promociata." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Montru aŭtomate elektitajn pakaĵojn" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalu" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Ŝargi/Konservi selekton" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Ĝisdatigo de pakaĵ-elekto" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimuma instalado" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Programar-mastrumilo" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Elektu la pakaĵojn kiuj vi deziras instali" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalanta" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Neniaj detaloj" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pakaĵo" +msgstr[1] "%d pakaĵoj" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Resumo" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfiguru" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "ne konfigurita" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"La sekva instal-datenportilo(j) estas trovita(j).\n" +"Se vi deziras transsalti kelkajn de ili, vi povas tiujn nun malselekti." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Vi havas la opcion kopii la enhavojn de la KD-oj sur la fiksdiskon antaŭ la " +"instalado.\n" +"Tiam la instalado daŭrigas el la fiksdisko kaj la pakaĵoj restos atingeblaj " +"post kiam la sistemo estos plene instalita." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopii kompletajn KD-ojn" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Eraro okazis" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Bonvole elektu vian klavar-aranĝon" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalado/Ĝisdatigo" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Ĉu tiu ĉi estas instalado aŭ ĝisdatigo?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalado" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Ĝisdatigu %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Ĉifroŝlosilo por %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Ŝanĝu vian KDROM!\n" +"\n" +"Bonvole, enŝovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes" +"\"\n" +"kiam vi finos.\n" +"Se vi ne havas ĝin, klaku \"Nuligu\" por eviti la instaladon de ĉi tiu KDROM." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Serĉas haveblajn pakaĵojn" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Via sistemo ne havas sufiĉe da spaco libera por instalado aŭ ĝisdatigo (%dMB " +"> %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Bonvole elektu ŝargi aŭ konservi pakaĵ-elekton.\n" +" La formato estas la sama kiel dosieroj generitaj per auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Ŝargu" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Konservu" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Malbona dosiero" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Grafika medio" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Elektita grandeco estas pli ampleksa ol disponebla spaco" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Instaltipo" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Vi ne elektis pakaĵgrupon.\n" +"Bonvole elektu la minimuman instaladon kiun vi deziras:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Kun X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Kun baza dokumentaĵo (rekomendita!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Vere minimuma instalado (precipe ne urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Preparas instaladon" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instalanta pakaĵo %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Estis eraro ordigi pakaĵojn:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Ĉu vi deziras daŭri tamen?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Reprovu" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Transsalti tiun pakaĵon" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Transsalti ĉiujn pakaĵojn de la datenportilo \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Reiru al la datenportilo kaj pakaĵ-selekto" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Estis eraro dum instalado de pakaĵo %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Post-instala konfigurado" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Bonvole certiĝu ke la datenportilo por ĝisdatigaj moduloj troviĝas en la " +"aparato %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Ĝisdatigoj" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "La sekvaj pakaĵoj estos instalataj" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Paneo ĉe aldono de portilo" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Vi havas nun la eblecon deŝuti ĝisdatigitajn pakaĵojn. Tiuj pakaĵoj\n" +"estas ĝisdatigitaj post eldonado de tiu ĉi eldono. Ili povas\n" +"enteni sekureco- aŭ eraro-riparojn.\n" +"\n" +"Por deŝuti tiujn pakaĵojn, vi bezonas funkciantan Interret-\n" +"konekton.\n" +"\n" +"Ĉu vi deziras instali tiujn ĝisdatigojn?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s sur %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Aparataro" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Sonkarto" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafika interfaco" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Reto kaj Interreto" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Prokuraj Serviloj" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "konfigurita" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "sekurnivelo" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Fajromuro (Firewall)" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktiva" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "malebligita" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Vi ne konfiguris X-on. Ĉu vi certas vere voli tion?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Sur tiu ĉi sekurec-nivelo, la aliro al dosieroj en la Vindozaj subdiskoj " +"estas limigitaj al la mastrumanto." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Enŝovu malplenan disketon en drajvo %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Kreas aŭtoinstalan disketon" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Kelkaj paŝoj ne finiĝis.\n" +"\n" +"Ĉu vi vere volas ĉesi nun?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Gratulojn" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Restarto" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Elektu vian lingvon" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokaligo" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licenco" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Muso" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Detektado de fiksdisko(j)" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Instal-klaso" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Klavaro" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sekureco" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Subdiskigante" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Mi formatas" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Mi elektas pakaĵojn" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalanta" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Uzuloj" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Startŝargilo" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Konfiguru X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Resumo" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servoj" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Ĝisdatigoj" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Eliro" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL de la spegulo?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL devas komenci per ftp:// aŭ http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Mi kontaktas la %s Linuksan retpaĝon por havigi la liston de disponeblaj " +#~ "speguloj..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Mi malsukcesis kontakti la %s Linuksan retpaĝon por havigi la liston de " +#~ "disponeblaj speguloj..." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Elektu spegulon de kiu havigi la pakaĵojn" diff --git a/perl-install/install/share/po/es.po b/perl-install/install/share/po/es.po new file mode 100644 index 000000000..9df789aa3 --- /dev/null +++ b/perl-install/install/share/po/es.po @@ -0,0 +1,1752 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Miguel, 2013,2015-2016 +# Egoitz Rodriguez <egoitzro@gmail.com>, 2014-2015 +# José Alberto Valle Cid <j.alberto.vc@gmail.com>, 2019-2020,2022 +# Jose Manuel López <joselp@e.email>, 2020 +# Miguel, 2019 +# Miguel Ortega, 2013,2016 +# Miguel, 2016 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: José Alberto Valle Cid <j.alberto.vc@gmail.com>, " +"2019-2020,2022\n" +"Language-Team: Spanish (http://app.transifex.com/MageiaLinux/mageia/language/" +"es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? " +"1 : 2;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "¡Únasenos!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "¡Personalícela!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "¡Su elección!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Herramientas de oficina" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Entretenimiento de hogar" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Para niños" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "¡Para la familia!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "¡Para desarrolladores!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "¡Gracias!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "¡Sea libre!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "¿Tiene usted otros medios complementarios?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Se han encontrado los siguientes medios y serán utilizados durante la " +"instalación: %s.\n" +"\n" +"\n" +"¿Tiene otro medio de instalación complementario que configurar?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Red (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Red (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Red (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Configuración NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Por favor, introduzca el nombre de equipo y directorio de su medio NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Falta nombre de equipo" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "El directorio debe comenzar con \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "¿Cuál es el nombre de equipo del montaje NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Directorio" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Complementario" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"No se puede encontrar un archivo de lista de paquetes en este espejo. " +"Asegúrese de que la ubicación sea la correcta." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Hardware de su máquina necesita de firmware no libre para que los " +"controladores de software libre funcionen." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Debería habilitar \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" contiene varias piezas de los sistemas y sus aplicaciones" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" contiene software no libre.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"También contiene firmware necesario para ciertos dispositivos puedan operar " +"(ej: algunas tarjetas gráficas ATI/AMD, algunas tarjetas de red, algunas " +"tarjetas RAID, etc)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" contiene software que no puede ser distribuido en todos los países " +"debido a patentes de software." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"También contiene software de \"%s\" reconstruido con capacidades adicionales." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Aquí puede habilitar mas medios si así lo desea." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Este medio provee actualizaciones de paquetes para el medio \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Buscando paquetes ya instalados..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Encontrando los paquetes a actualizar..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Eliminación de los paquetes antes de la actualización..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Los siguientes paquetes serán removidos para permitir la actualización de su " +"sistema: %s\n" +"\n" +"\n" +"¿Está seguro de que quiere eliminar estos paquetes?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Error al leer el archivo %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "El o los siguientes discos fueron renombrados:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (antes conocido como %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Red" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Por favor, elija un medio" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "El archivo ya existe. ¿Sobrescribirlo?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permiso denegado" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Nombre NFS erróneo" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Medio erróneo %s " + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "No se puede hacer capturas de pantalla antes de particionar" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" +"Las capturas de pantallas estarán disponibles después de la instalación en %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalación" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configuración" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "También debe formatear %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Algún hardware de su equipo necesita controladores ``propietarios\" para " +"trabajar.\n" +"Puede encontrar más información sobre ellos en: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Activando la red" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Desactivando la red" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Por favor espere, recuperando archivo" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "no se puede agregar medio" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Copiar algunos paquetes en disco para su uso futuro" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Copia en curso" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "debe tener" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "importante" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "muy agradable" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "agradable" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "tal vez" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Obteniendo información de paquete desde meta datos XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"No hay información xml para el medio \"%s\", sólo un resultado parcial para " +"el paquete %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Sin descripción" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Algunos paquetes requeridos por %s no se pueden instalar:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Se produjo un error:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Ocurrió un error fatal: %s" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "No preguntar de nuevo" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "Fallaron %d operaciones de instalación" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Falló la instalación de paquetes:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Estación de trabajo" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Estación de trabajo de oficina" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programas de oficina: procesadores de texto (LibreOffice Writer, Kword), " +"hojas de cálculo (LibreOffice Calc, Kspread), visores PDF, etc." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Estación de juegos" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programas de diversión: arcade, tableros, estrategia, etc." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Estación Multimedia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programas de reproducción y edición de sonido y video" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Estación de Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Conjunto de herramientas para leer y enviar correo y noticias (mutt, tin, " +"etc) y para navegar por la Web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Computador de red (cliente)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clientes para diferentes protocolos, incluyendo ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Herramientas para facilitar la configuración de su computador" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Herramientas de consola" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editores, consolas, herramientas de archivo, terminales" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Desarrollo" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Bibliotecas de C y C + +, programas y archivos de inclusión" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentación" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Libros y Howtos sobre Linux y Software Libre" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Base estándar de Linux. Soporte de aplicaciones de terceros" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Servidor Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Servidor Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Cortafuegos/Enrutador" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Puerta de enlace de Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Correo/Noticias" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Servidor de correo Postfix, Servidor de noticias Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Servidor de directorio" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Servidor FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Nombre de dominio y Servidor de Información de Red" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Servidor de compartición de archivos e impresoras" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Servidor NFS, servidor Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Bases de datos" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Servidor de bases de datos PostgreSQL y MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Correo" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Servidor de correo Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Servidor de bases de datos PostgreSQL o MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Servidor de computador de red" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "servidor NFS, servidor SMB, servidor proxy, servidor ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Entorno gráfico" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Estación de trabajo Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"El entorno de escritorio K, el entorno gráfico básico con una colección de " +"herramientas que lo acompañan" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Estación de trabajo GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Un entorno gráfico con un conjunto de aplicaciones y herramientas de " +"escritorio amigables con el usuario" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Estación de trabajo Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Un entorno gráfico ligero con un conjunto de aplicaciones y herramientas de " +"escritorio amigables con el usuario" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Estación de trabajo MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Estación de trabajo Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Un entorno gráfico basado en GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Escritorio LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" +"Un puerto QT de siguiente generación del entorno de escritorio lightweight" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Escritorio Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Un entorno gráfico rápido y liviando con un seguimiento dedicado" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Escritorio LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Un entorno gráfico ligero" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Otros escritorios gráficos" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, etc" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilidades" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Servidor SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Servidor de Configuración Remota Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Utilidades y monitoreo de red" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" +"Herramientas de supervisión, contabilidad de procesos, tcpdump, nmap, etc." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Asistentes de Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Asistentes para configurar el servidor" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Se produjo un error, pero no sé manejarlo adecuadamente .\n" +"Continúe bajo su propio riesgo." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Algunos paquetes importantes no se instalaron correctamente.\n" +"Puede ser que su unidad de CD-ROM o su disco CD-ROM está defectuoso.\n" +"Verifica el disco CD-ROM en un equipo instalado con \"rpm -qpl media/main/*." +"rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Entrando al paso `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Instalación %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> entre los elementos" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "El servidor Xorg demora en iniciar. Por favor espere..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"El sistema está bajo en recursos. Es posible que tenga algún problema " +"instalando\n" +"%s. Si eso ocurre, puede tratar de una instalación en modo texto. Para " +"ello,\n" +"presione 'F1' cuando arranque desde el CD-ROM, luego escriba `texto'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Selección de medios" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Instalar Escritorio Plasma %s" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instalar escritorio GNOME %s" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instalación personalizada" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Escritorio Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Escritorio GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Escritorio personalizado" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Aquí hay una vista previa del escritorio '%s'." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Haga clic en las imágenes para ver una vista previa más grande" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Selección de Grupo de paquetes" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Selección individual de paquetes" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Deseleccionar todas." + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Tamaño total: %d/%d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versión: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Tamaño: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importancia: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "No se puede seleccionar/des-seleccionar este paquete" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "debido a que falta %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "debido a que no se satisfizo %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "tratando de promover %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "para mantener %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"No se puede seleccionar el paquete ya que no hay suficiente espacio para " +"instalarlo" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Los siguientes paquetes se van a instalar" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Los siguientes paquetes se van a quitar" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Este es un paquete obligatorio, no puede ser des-seleccionado" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "No se puede des-seleccionar este paquete. Ya está instalado" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "No se puede des-seleccionar este paquete. Debe ser actualizado" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Mostrar los paquetes seleccionados automáticamente" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalar" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Cargar/Guardar selección" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Actualizando la selección de paquetes" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Alternar entre la lista de paquete jerárquica y plana" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Instalación mínima" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Administración de Software" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Seleccione los paquetes que desea instalar" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalando" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Sin detalles" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tiempo restante:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(Estimando...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paquete" +msgstr[1] "%d paquetes" +msgstr[2] "%d paquetes" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Resumen" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configurar" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "no configurado" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Se han encontrado los siguientes medios de instalación.\n" +"Si desea omitir algunos de ellos, puede desseleccionar algunos ahora." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Usted tiene la opción de copiar el contenido de los CDs a la unidad de disco " +"duro antes de la instalación.\n" +"Se continuará desde la unidad de disco duro y los paquetes estarán " +"disponibles una vez que el sistema esté completamente instalado." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copiar todos los CDs" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Se produjo un error" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Por favor, elija la distribución del teclado" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Aquí está la lista completa de los teclados disponibles:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalar/Actualizar" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "¿Es esta una instalación o una actualización?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" +"_: Este es un sustantivo:\n" +"Instalación" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Actualizar %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Llave de cifrado para %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Cancele la instalación, reinicie el sistema" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nueva instalación" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Actualizar instalación previa (no recomendado)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Instalador ha detectado que su sistema Linux instalado no\n" +"puede ser actualizado de manera segura a %s.\n" +"\n" +"Se recomienda una instalación nueva que sustituya a la anterior.\n" +"\n" +"Advertencia: debe hacer un respaldo de todos sus datos personales\n" +"antes de elegir \"Nueva instalación\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Configurando CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"¡Cambiar su CD-ROM!\n" +"Por favor inserte el CD-ROM etiquetado \"%s\" en la unidad y pulse Aceptar " +"cuando haya terminado.\n" +"Si no lo tiene, pulse Cancelar para evitar la instalación desde este CD-Rom." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Buscando paquetes disponibles ..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Su sistema no dispone de espacio suficiente para la instalación o " +"actualización (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Por favor, elija cargar o guardar la selección de paquetes.\n" +"El formato es el mismo que los archivos generados por auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Cargar" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Guardar" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Archivo incorrecto" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Selección de escritorio" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Usted puede elegir su perfil de escritorio de estación de trabajo." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "El tamaño seleccionado es más grande que el espacio disponible" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipo de instalación" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"No ha seleccionado ningún grupo de paquetes.\n" +"Por favor, elija la instalación mínima que desee:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Con X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Instalar paquetes recomendados" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Con la documentación básica (¡recomendado!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Instalación realmente mínima (especialmente sin urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Preparando actualización..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Preparando la instalación" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instalando el paquete %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Se ha producido un error al ordenar los paquetes:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "¿Continuar de todos modos?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Reintentar" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Saltar este paquete" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Omitir todos los paquetes del medio \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Vuelve a la selección de medios y paquetes" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Se ha producido un error al instalar el paquete %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configuración post-instalación" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Por favor, asegúrese de que el medio de Módulos de Actualización está en la " +"unidad %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Actualizaciones" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Ahora tiene la oportunidad de configurar los repositorios en internet." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Esto permite instalar actualizaciones de seguridad." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Para configurar estos repositorios, necesitará una conexión a internet que " +"funcione.\n" +"\n" +"¿Desea configurar los repositorios de actualizaciones?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "No se puede instalar el gestor de descargas" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "¿Reintentar?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Fallo al añadir soporte" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Ahora tiene la oportunidad de descargar paquetes actualizados. Estos " +"paquetes\n" +"se han actualizado después de la distribución fue lanzada. Pueden contener\n" +"correcciones de seguridad o de errores.\n" +"\n" +"Para descargar estos paquetes, se necesita tener una conexión a Internet " +"activa.\n" +"\n" +"¿Desea instalar las actualizaciones?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s en %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Tarjeta de sonido" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfaz gráfica" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Redes e Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Servidores proxy" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "configurado" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nivel de seguridad" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Cortafuegos" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "activado" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "deshabilitado" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "No se ha configurado X. ¿Está seguro de que desea esto?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Preparando el programa de instalación inicial..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Sea paciente, esto puede tardar un tiempo..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"En este nivel de seguridad, el acceso a los archivos en la partición de " +"Windows está restringido al administrador." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Inserte un disquete en blanco en la unidad %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Creando disquete de instalación automática..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Algunas pasos no se han completado.\n" +"\n" +"¿Está seguro que desea salir ahora?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Felicitaciones" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Reiniciar" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" +"_: Keep these entry short\n" +"Idioma" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Localización" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" +"_: Keep these entry short\n" +"Licencia" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "" +"_: Keep these entry short\n" +"Ratón" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" +"_: Keep these entry short\n" +"Detección de disco duro" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" +"_: Keep these entry short\n" +"Clase de instalación" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "" +"_: Keep these entry short\n" +"Teclado" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "" +"_: Keep these entry short\n" +"Seguridad" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" +"_: Keep these entry short\n" +"Particionamiento" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" +"_: Keep these entry short\n" +"Formateo" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" +"_: Keep these entry short\n" +"Selección de paquetes" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" +"_: Keep these entry short\n" +"Instalación" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "" +"_: Keep these entry short\n" +"Usuarios" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" +"_: Keep these entry short\n" +"Cargador de arranque" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" +"_: Keep these entry short\n" +"Configurar X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" +"_: Keep these entry short\n" +"Resumen" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "" +"_: Keep these entry short\n" +"Servicios" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" +"_: Keep these entry short\n" +"Actualizaciones" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" +"_: Keep these entry short\n" +"Salida" diff --git a/perl-install/install/share/po/et.po b/perl-install/install/share/po/et.po new file mode 100644 index 000000000..89849da85 --- /dev/null +++ b/perl-install/install/share/po/et.po @@ -0,0 +1,1706 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Marek Laane <qiilaq69@gmail.com>, 2015 +# Marek Laane <qiilaq69@gmail.com>, 2015-2016 +# Marek Laane <qiilaq69@gmail.com>, 2018-2020 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2020-06-18 11:13+0000\n" +"Last-Translator: Marek Laane <qiilaq69@gmail.com>\n" +"Language-Team: Estonian (http://www.transifex.com/MageiaLinux/mageia/" +"language/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Ühinege meiega!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Võtke see omaks!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Teie valik!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Kontoritöö vahendid" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Kodune meelelahutus" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Lastele" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Perele!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Arendajatele!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Täname Teid!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Tundke end vabalt!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Kas Teil on veel paigaldusandmekandjaid?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Leiti järgmised andmekandjad, mida kasutatakse paigaldamisel: %s.\n" +"\n" +"\n" +"Kas Teil on veel paigaldusandmekandjaid?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Võrk (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Võrk (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Võrk (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-i seadistamine" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Palun andke NFS-andmekandja masinanimi ja kataloog" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Masinanimi puudub" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Kataloogi alguses peab olema \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS-i andmekandja masinanimi?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Kataloog" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Täiendav" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Tarkvara nimekirja sisaldava faili leidmine sellelt peeglilt nurjus. " +"Kontrollige palun asukohta." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Tuumiktarkvara (core)" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Piirangutega tarkvara (tainted)" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Mittevaba tarkvara (non-free)" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Osa Teie masina riistvarast vajab mittevaba püsivara, et vaba tarkvara " +"draiverid saaksid korralikult töötada." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Teil tuleks lubada \"%s\" kasutamine" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" sisaldab mitmesugust süsteemile vajalikku tarkvara ja rakendusi" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" sisaldab, nagu nimigi ütleb, mittevaba tarkvara.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Samuti sisaldab see püsivara, mida vajavad oma töös mõningad seadmed (nt. " +"mõned ATI/AMD graafikakaardid, mõned võrgukaardid, mõned RAID-i kaardid jne.)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" sisaldab tarkvara, mida ei ole tarkvarapatentide tõttu võimalik " +"kõigis riikides vabalt levitada." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "Samuti sisaldab see lisaomaduste huvides ümber ehitatud \"%s\"." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Siin saab soovi korral lubada rohkemate andmekandjate kasutamist." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "See andmekandja sisaldab \"%s\" uuendusi" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Juba paigaldatud pakettide tuvastamine..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Uuendatavate pakettide otsimine..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Pakettide eemaldamine enne uuendamist..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Süsteemi uuendamiseks tuleb eemaldada järgmised paketid: %s\n" +"\n" +"\n" +"Kas tõesti eemaldada need paketid?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Viga faili %s lugemisel" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Järgmistele ketastele anti uus nimi:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (varem oli %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Võrk" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Palun valige andmekandja" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Fail on juba olemas. Kas kirjutada see üle?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Ligipääs keelatud" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Vigane NFS-i nimi" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Vigane andmekandja %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Ekraanipilte ei saa teha enne partitsioneerimist" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Ekraanipildid asuvad pärast paigaldamist asukohas %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Paigaldamine" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Seadistamine" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Vormindada tuleb ka %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Osa Teie riistvarast nõuab tarnijapoolseid draivereid.\n" +"Infot nende kohta saate: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Võrgu aktiveerimine" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Võrgu seiskamine" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Palun oodake, tõmmatakse faili" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "andmekandja lisamine nurjus" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Mõningate tarkvarapakettide kopeerimine kettale edasiseks kasutamiseks" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Käib kopeerimine..." + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "vajalik" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "tähtis" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "väga kena" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "kena" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "võib olla" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Paketi teabe hankimine XML-metaandmetest..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Andmekandjal \"%s\" puudub XML-info, paketil %s on ainult osaline tulemus" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Kirjeldus puudub" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Mõningaid pakette, mida nõuab %s, ei saa paigaldada:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Tekkis viga:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Tekkis saatuslik viga: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Rohkem ei küsita" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d paigaldamistehingut nurjus" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Pakettide paigaldamine nurjus:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Tööjaam" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kontori-tööjaam" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Kontoritöö programmid: tekstitöötlus (LibreOffice Writer, KWord), " +"tabelitöötlus (LibreOffice Calc, KSpread), PDF-failide näitajad jne" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Mänguvahend" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Meelelahutus: põnevus-, laua-, strateegiamängud jne" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimeedia-tööjaam" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Heli ja video mängimine ja redigeerimine" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Interneti-tööjaam" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Valik rakendusi e-posti ja uudiste lugemiseks (mutt, tin...) ning veebi " +"lehitsemiseks" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Võrguarvuti (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Mitme protokolli, sealhulgas ssh kliendid" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Tööriistad süsteemi lihtsamaks haldamiseks" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsoolitööriistad" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Redaktorid, shellid, terminalid, failihaldus" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Arendus" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C ja C++ arendusteegid, rakendused ja päisefailid" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentatsioon" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Raamatud ja HOWTO-d Linuxi ja vabavara kohta" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Kolmandate tootjate rakenduste toetus" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Veebiserver" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Grupitöö" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolabi server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Tulemüür/marsruuter" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "E-post/Uudistegrupid" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfixi e-posti server, Inn uudisteserver" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Kataloogiserver" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Nimeserver ja võrguteabeserver" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Faili- ja printserver" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS-server, Samba-server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Andmebaasid" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL- ja MariaDB-andmebaasiserver" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Veeb/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache ja Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "E-post" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfixi e-posti server" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL- või MariaDB-andmebaasiserver" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Võrguserver" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-, SMB-, SSH-server, puhverserver (proxy)" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Graafiline keskkond" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma tööjaam" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "K töölaua keskkond: graafiline töökeskkond ja palju rakendusi" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME tööjaam" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Graafiline töökeskkond koos kasutajasõbralike rakendustega" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce tööjaam" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Kergemat sorti graafiline töökeskkond koos kasutajasõbralike rakendustega" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE tööjaam" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamoni tööjaam" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "GNOME-l põhinev graafiline keskkond" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt töölaud" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Kergemat sorti graafilise töökeskkonna uue põlvkonna Qt-versioon" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenmenti töölaud" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Kergemat sorti kiire graafiline töökeskkond andunud kasutajaskonnaga" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE töölaud" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Kergemat sorti kiire graafiline töökeskkond" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Muud graafilised töölauad" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm jt" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utiliidid" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin võrguseadistusserver" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Võrguutiliidid ja võrgu jälgimine" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Jälgimistööriistad, protsesside jälgimine, tcpdump, nmap..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia nõustajad" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Serverite seadistamise nõustajad" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Tekkis tõrge, mida programm ei suuda ise klaarida.\n" +"Jätkake omal vastutusel." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Mõned tähtsad paketid ei saanud korralikult paika.\n" +"Teie CD-seade või CD on ilmselt vigane.\n" +"Paketifaile CD-l saate kontrollida käsuga \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Järgmine samm: %s\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s paigaldamine: %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> liigub elementide vahel" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorgi server käivitub aeglaselt. Palun oodake..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Teie süsteemil napib ressursse ja %s paigaldamine ei pruugi õnnestuda.\n" +"Kui nii juhtub, proovige palun tekstipõhist paigaldamist.\n" +"Selleks vajutage CD-lt laadimisel F1 ja sisestage \"text\"." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Andmekandjate valik" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "%s Plasma töölaua paigaldamine" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "%s GNOME töölaua paigaldamine" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Kohandatud paigaldamine" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma töölaud" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME töölaud" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Kohandatud töölaud" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Siin näeb '%s' töölaua eelvaatlust." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Suurema eelvaatluse nägemiseks klõpsake piltidel." + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Paketigruppide valik" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Valik paketthaaval" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Tühista kõigi valimine" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Suurus kokku: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versioon: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Suurus: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Tähtsus: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Seda paketti ei saa valida/valimata jätta" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "puuduva %s tõttu" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "rahuldamata %s tõttu" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "püüdes välja pakkuda %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "säilitamaks %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Seda paketti ei saa valida, sest paigaldamiseks napib kettaruumi" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Paigaldamiseks on valitud järgmised paketid" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Eemaldamiseks on valitud järgmised paketid" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "See pakett on kohustuslik" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "See pakett on juba paigaldatud" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Automaatselt valitud pakettide näitamine" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Paigalda" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Valiku laadimine/salvestamine" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Paketivaliku uuendamine" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Hierarhilise ja ühetasandilise paketiloendi vahel lülitamine" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimaalne paigaldus" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Tarkvarahaldur" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Valige paketid, mida soovite paigaldada" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Paigaldamine" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Üksikasjadeta" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Aega jäänud:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(arvutatakse...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pakett" +msgstr[1] "%d paketti" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Kokkuvõte" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Seadista" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "seadistamata" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Leiti järgmised paigaldusandmekandjad.\n" +"Kui Te ei soovi mõnda neist kasutada, eemaldage need valikust." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Teil on võimalik kopeerida CD-de sisu enne paigaldamist kõvakettale.\n" +"Seejärel jätkatakse paigaldamist kõvakettalt ning kogu tarkvara on seal " +"kättesaadav ka pärast süsteemi paigaldamist." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopeeri kõik CD-d" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Tekkis viga" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Palun valige klaviatuuriasetus" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "See on saadaolevate klaviatuuriasetuste täielik nimekiri:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Paigaldamine/Uuendamine" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Kas see on paigaldamine või uuendamine?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Paigaldamine" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s uuendamine" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s krüptovõti" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Paigaldamisest loobumine, süsteemi taaskäivitamine" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Uus paigaldus" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Varasema paigalduse uuendamine (ei ole soovitatav)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Paigaldusprogramm leidis, et Teie olemasolevat Mageia Linuxi süsteemi\n" +"ei saa turvaliselt uuendada versioonile %s.\n" +"\n" +"Soovitatav on valida uus paigaldus, mis asendab senise.\n" +"\n" +"Hoiatus: Te peaksite varundama kõik oma isiklikud andmed,\n" +"enne kui valite võimaluse \"Uus paigaldus\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "CD/DVD seadistamine" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Vahetage CD!\n" +"\n" +"Palun sisestage CD nimega \"%s\" CD-seadmesse ja klõpsake nupule \"Olgu\".\n" +"Kui Teil sellist ei ole, klõpsake nupule \"Loobu\"." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Saadaolevate pakettide otsimine..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Teie süsteemis ei jagu ruumi paigaldamiseks ega uuendamiseks (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Valige palun paketivaliku laadimine või salvestamine.\n" +"Vorming on sama, mis automaatpaigaldusega loodud failide puhul." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Laadi" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Salvesta" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Vigane fail" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Töölaua valik" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Siin saab valida oma arvuti töölauaprofiili." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Valiku suurus ületab saadaolevat kettaruumi" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Paigaldamise tüüp" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Te ei valinud ühtegi paketigruppi.\n" +"Palun valige meelepärane minimaalne paigaldus:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X'iga" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Soovitatavate pakettide paigaldamine" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Baasdokumentatsiooniga (soovitatav!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Tõeliselt minimaalne (isegi urpmi-t ei ole)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Uuendamiseks valmistumine..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Paigaldamiseks valmistumine" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Paketi %s paigaldamine" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Pakettide tellimisel tekkis viga:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Kas ikkagi jätkata?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Proovi uuesti" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Jäta pakett vahele" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Jäta kõik andmekandja \"%s\" paketid vahele" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Tagasi andmekandja ja paketivaliku juurde" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Paketi %s paigaldamisel tekkis viga." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Paigaldamisjärgne seadistamine" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Palun kontrollige, et uuenduste andmekandja on seadmes %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Uuendused" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Nüüd on Teil võimalus määrata võrguandmekandjad." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "See lubab paigaldada turbeuuendusi." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Nende andmekandjate määramiseks peab töötama\n" +"internetiühendus.\n" +"\n" +"Kas soovite määrata uuendamisandmekandjad?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Paigaldamiseks on valitud järgmised paketid" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Kas proovida uuesti?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Andmekandja lisamine nurjus" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Teil on nüüd võimalus alla laadida uuendatud pakette. Need on välja lastud\n" +"pärast Mageia distributsiooni ilmumist ja võivad sisaldada vigade\n" +"parandusi või turbeuuendusi.\n" +"\n" +"Allalaadimiseks peab Teil olema töötav internetiühendus.\n" +"\n" +"Kas soovite uuendusi paigaldada?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s asukohas %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Riistvara" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Helikaart" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Graafiline kasutajaliides" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Kohtvõrk ja internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Puhverserverid" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "seadistatud" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Turbetase" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Tulemüür" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktiveeritud" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "keelatud" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Te ei ole seadistanud X'i. Kas Te tõesti ei taha seda teha?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Alglaadimisprogrammi ettevalmistamine..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Varuge kannatust, see võib võtta veidi aega..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Sellel turbetasemel pääseb Windowsi partitsioonil asuvatele failidele ligi " +"ainult administraator." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Pange palun tühi diskett seadmesse %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Kiirpaigaldusdisketi loomine..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Mõned sammud ei ole lõpule viidud.\n" +"\n" +"Kas soovite tõesti praegu lõpetada ja väljuda?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Õnnitleme!" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Taaskäivita" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Keel" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokaliseerimine" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Litsents" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Hiir" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Kõvaketta leidmine" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Paigaldamismeetod" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Klaviatuur" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Turvalisus" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Kõvaketta jagamine" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Vormindamine" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Pakettide valik" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Paigaldamine" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Kasutajad" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Alglaadur" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X'i seadistamine" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Kokkuvõte" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Teenused" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Uuendused" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Väljumine" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Peegli URL?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL-i alguses peab seisma ftp:// või http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Ühendumine %s veebileheküljega saadaolevate peeglite nimekirja " +#~ "hankimiseks..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Ühendumine %s veebileheküljega saadaolevate peeglite nimekirja " +#~ "hankimiseks nurjus" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Valige peegel, millelt lugeda pakettide nimekiri" diff --git a/perl-install/install/share/po/eu.po b/perl-install/install/share/po/eu.po new file mode 100644 index 000000000..46abe185a --- /dev/null +++ b/perl-install/install/share/po/eu.po @@ -0,0 +1,1716 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Egoitz Rodriguez <egoitzro@gmail.com>, 2014 +# Egoitz Rodriguez <egoitzro@gmail.com>, 2014 +# Egoitz Rodriguez <egoitzro@gmail.com>, 2014-2016 +# Hizkuntza Politikarako Sailburuordetza <hizpol@ej-gv.es>, 2004 +# Iñigo Salvador Azurmendi <xalba@euskalnet.net>, 2005-2009 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2020-06-18 00:30+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Basque (http://www.transifex.com/MageiaLinux/mageia/language/" +"eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Elkartu gurekin!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Zurea egin ezazu!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Zure aukera!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Bulegoko tresnak" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Etxe entretenimendua" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Umeentzat" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Familiarentzat!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Garatzaileentzat!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Eskerrik asko!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Libre izan!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Baduzu beste euskarri osagarririk?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Euskarri hauek aurkitu dira eta instalazio garaian erabiliko dira: %s. \n" +"\n" +"\n" +"Badaukazu konfiguratu beharreko gainerako instalazio euskarririk?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Sarea (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Sarea (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Sarea (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS ezarpena" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Mesedez sartu zure NFS euskarriaren ostalari izena eta direktorioa" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Ostalari izena falta da" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Direktorioa honekin \"/\" hasi behar da" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS muntaiaren ostalari izena?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Direktorioa" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Osagarria" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "Ezin aurkitu hdlist fitxategia ispilu honetan" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Zure makinako hardwareren batek firmwares ez libre batzuk behar ditu lan " +"egiteko software gidari libreen ordez." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "\"%s\" gaitu dezakezu" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "sistemak eta bere aplikazioak askotariko \"%s\" piezak dauzka" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "%s\"-k software ez librea dauka.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Nolabaiteko tresnek maneiatu behar izandako firmwareak dauzka (adib.: ATI/" +"AMD-etako grafikoko txartel batzuk, sare-txartel batzuk, RAID txartel " +"batzuk, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" herrialde bakoitzean software-patenteengatik banatu ezin duten " +"softwarea dauka." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "\"%s\"-ren softwarea er dauka, birsortzeko gaitasun osagarriekin." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Hemen hedabide gehiago gaitu dezakezu nahi baduzu." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Hedabide honek paketea \"%s\" hedabidetik eguneratzea ematen du" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Instalatutako paketeak bilatzen..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Bertsio berritzeko paketeak bilatzen..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Paketeak ezabatzen bertsioa berritu aurretik..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Ondorengo paketeak kenduko dira sistemaren bertsioa berritzeko: %s\n" +"\n" +"\n" +"Ziur zaude pakete hauek kendu nahi dituzula?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Errorea %s fitxategia irakurtzean" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Ondoko diskoa(k) berrizendatu egin d(ir)a:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (lehenago %s deitua)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Sarea" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Aukeratu euskarri bat mesedez" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Fitxategia badago lehendik ere. Gainidatzi?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Baimena ukatuta" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "NFS izen okerra" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "%s okerreko euskarria" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Ezin da pantaila-argazkirik egin partizioak egin aurretik" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" +"%s(e)n instalazioa egindakoan pantaila-argazkiak erabilgarri egongo dira" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalaketa" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfigurazioa" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "%s ere formateatu behar duzu" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Zure ordenagailuko hardware batzuek kontrolatzaile ``jabeduna'' behar dute.\n" +"Horiei buruzko informazioa hemen aurki dezakezu: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Sarea irekitzen" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Sarea ixten" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Itxoin mesedez, fitxategia eskuratzen" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "euskarria ezin erantsi" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Zenbait pakete diskoetan kopiatzen etorkizunean erabiltzeko" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiatzen ari da" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "ezinbestekoa" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "garrantzitsua" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "oso baliagarria" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "baliagarria" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "beharbada" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "XML meta-datuetatik paketeen informazioa eskuratzen ..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Ez dago \"%s\" euskarriarentzako xml info, soilik emaitza partziala %s " +"paketearentzako" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Azalpenik ez" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"%s-k eskatutako pakete batzuk ezin dira instalatu:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Akats bat gertatu da:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Akats larria gertatu da: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Ez galdetu beriro" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d instaketa eragiketek huts egin dute" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Paketeen instalaketak huts egin du:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Lanpostua" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Bulegoko lanpostua" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Bulego programak: testu-prozetzaileak (LibreOffice Writer, Kword), kalkulu-" +"orriak (LibreOffice Calc, Kspread), PDF ikustaileak, etab" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Jokoak" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" +"Denbora-pasako programak: makina-jokoak, taula-jokoak, estrategiakoak, etab." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Soinua eta bideoa jotzeko/editatzeko programak" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Posta eta berri-taldeetako mezuak (mutt, tin...) irakurtzeko eta bidaltzeko " +"eta Interneten nabigatzeko tresna-multzoa" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Sare-ordenagailua (bezeroa)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Hainbat protokolotako bezeroak, ssh-renak barne" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Zure ordenagailuaren konfigurazioa errazteko tresnak" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Kontsola-tresnak" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editoreak, shell-ak, fitxategi-tresnak, terminalak" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Garapena" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C eta C++ garapen-liburutegiak, programak eta fitxategiak" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentazioa" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Linux eta Software libreari buruzko liburuak eta azalpenak" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Beste batzuek egindako aplikazioen euskarria" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Web zerbitzaria" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Taldelanerako Aplikazioak" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Zerbitzaria" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Suebakia/Bideratzailea" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Interneteko atebidea" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Posta/Berriak" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix posta zerbitzaria, Inn berri zerbitzaria" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Direktorio Zerbitzara" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP Zerbitzaria" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Domeinu Izen eta Sare Informazio Zerbitzaria" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Fitxategi eta Inprimaketa Elkarbanatzeko Zerbitzaria" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS zerbitzaria, Samba zerbitzaria" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Datu-basea" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL eta MariaDB Datubase Zerbitzaria" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Posta" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix posta-zerbitzaria" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL edo MariaDB datu-baseen zerbitzaria" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Sare-zerbitzaria" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS zerbitzaria, SMB zerbitzaria, Proxy zerbitzaria, ssh zerbitzaria" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Ingurune grafikoa" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma Lanpostua" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, hainbat tresna dituen oinarrizko ingurune grafikoa" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME lanpostua" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Aplikazio-multzo eta mahaigaineko tresna lagungarri eta atseginak dituen " +"ingurune grafikoa" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Aplikazioen eta mahaigain-tresnen sorta erabilerrazarekiko ingurumen argitsu " +"grafiko bat" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE lanpostua" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon Lanpostua" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "GNOMEn oinarritutako ingurune grafikoa" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt Mahaigaina" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Mahaigaineko ingurune arinaren hurrengo belaunaldiko QT portua" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Ingurune grafiko arin eta azkarra bat eskainita" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE Idaztegia" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Ingurune grafiko arin bat" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Beste mahaigain grafiko batzuk" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Enlightenment, Fvwm, etab." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilitateak" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH zerbitzaria" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin Urruneko Konfigurazio Zerbitzaria" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Sare Utilitateak/Gainbegiraketa" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Gainbegiraketa tresnak, prozesuen kotabilitatea, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia Morroiak" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Zerbitzaria konfiguratzeko morroiak" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Errore bat gertatu da, baina ez dakit behar bezala maneiatzen.\n" +"Jarraitu zure ardurapean." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Pakete garrantzitsu batzuk ez dira behar bezala instalatu.\n" +"Zure CD-ROM unitateak edo CD-ROMak akatsak ditu.\n" +"Probatu CD-ROMa ordenagailu instalatu batean \"rpm -qpl media/main/*.rpm\" " +"erabiliz.\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "`%s'. urratsean sartzen\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s %s instalazioa" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> elementuz aldatzeko" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg zerbitzariaren hasiera motela da. Itxoin mesedez..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Sistemak baliabide gutxi ditu. Arazoak izan ditzakezu %s \n" +"instalatzeko. Horrela bada, testu-instalazioa egiten saia zaitezke. \n" +"Horretarako, sakatu `F1' CD-ROMetik abiaraztean, eta idatzi `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Euskarri hautaketa" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Instalatu %s Plasma Idaztegia" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instalatu %s GNOME Idaztegia" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instalaketa pertsonalizatua" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma Mahaigaina" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME Idaztegia" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Idaztegia pertsonalizatua" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Hemen duzu '%s' idaztegiaren aurrebista bat." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klikatu irudietan aurrebista haundiago ikusteko" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Pakete-taldearen hautapena" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Pakete indibidualen hautapena" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Desautatutako guztiak" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Guztizko tamaina: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Bertsioa: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Tamaina: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Garrantzia: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Ezin duzu pakete hau hautatu/desautatu" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s falta delako" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "%s bete gabe dagoelako" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s jaso nahian" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s gordetzeko" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Ezin duzu pakete hori hautatu: ez dago instalatzeko lekurik" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Ondorengo pakete hauek instalatuko dira" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Ondorengo pakete hauek kenduko dira" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Nahitaezko paketea da, ezin da desautatu" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Ezin duzu pakete hau desautatu. Dagoeneko instalatuta dago" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Ezin duzu pakete hau desautatu. Bertsio berritu egin behar da" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Erakutsi automatikoki hautatutako paketeak" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalatu" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Hautapena Zamatu/Gorde" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Pakete-hautapena eguneratzen" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Gutxieneko instalazioa" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Software kudeaketa" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Aukeratu instalatu nahi dituzun paketeak" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalatzen" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Xehetasunik gabe" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Geratzen den denbora:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(Kalkulatzen...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "pakete %d" +msgstr[1] "%d pakete" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Laburpena" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfiguratu" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "konfiguratu gabe" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Ondorengo instalazio euskarriak aurkitu dira.\n" +"Horietako batzuk erabiltzerik nahi ez baduzu, haututik kendu ditzakezu orain." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Instalazio aurretik CD-en edukia disko gogorrera kopiatzeko aukera daukazu.\n" +"Disko zurrunetik jarraituko du orduan eta paketeak eskuragarri egongo dira " +"sistema osorik instalatu ondoren." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopiatu CD osoak" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Errore bat izan da" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Aukeratu zure teklatu-diseinua" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Hemen duzu eskuragarri dauden teklatuen zerrenda osoa:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalaketa/Bertsio berritzea" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Instalaketa edo bertsio berritzea da hau?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalaketa" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s bertsio berritu" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s(r)en enkriptatze-gakoa" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Instalaketa galarazi, sistema berrabiatu" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Instalaketa berria" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Aurreko instalaketa bertsio berritu (ez da gomendatzen)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Instalatzaileak detektatu du instalatuta duzun Linux sistema ezin\n" +"dela era seguruan %s-ren bertsiora berritu.\n" +"\n" +"Zure aurreko sistema ordezkatuko duen instalazio berria gomendatzen da.\n" +"\n" +"Erne: zure datu pertsonalen babeskopia egin behar zenuke \"Instalaketa\n" +"Berria\" aukeratu aurretik." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "CD/DVD Konfiguratzen" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Aldatu zure CD-ROMa!\n" +"\n" +"Mesedez, sartu \"%s\" etiketa duen CD-ROMa zure unitatean, ondoren, sakatu " +"'Ados'.\n" +"Ez badaukazu, sakatu 'Utzi' CD-ROM horretatik instalazioa egin ez dezan." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Pakete erabilgarriak bilatzen..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Zure sistemak ez dauka instalatu edo bertsio berritzeko behar duen lekua (%d " +"MB > %d MB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Mesedez aukeratu pakete aukeraketa zamatu edo gorde.\n" +"Formatua instalazio automatikoarekin sortutako fitxategiaren berdina da." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Karga" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Gorde" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Okerreko fitxategia" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Idaztegi hautaketa" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Zure lanpostuaren idaztegi profila hautatu dezakezu." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Hautatutako tamaina handiagoa da leku erabilgarria baino" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Instalazio-mota" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Ez duzu talde edo paketerik hautatuta\n" +"Nahi duzun gutxieneko instalazioa hautatu behar duzu:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X-ekin" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Gomendaturiko paketeak instalatu" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Oinarrizko dokumentazioarekin (gomendatua)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Instalazio minimo-minimoa (batez ere, urpmi gabe)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Berritzea prestatzen ..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Instalazioa prestatzen" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s paketea instalatzen" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Errore bat izan da paketeak ordenatzean:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Jarraitu hala ere?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Berriro saiatu" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Pakete hau utzi" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "\"%s\" euskarriko pakete guztiak utzi" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Jo atzera euskarri eta pakete hautapenera" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Akatsa gertatu da %s paketea instalatzerakoan." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Instalazio-ondorengo konfigurazioa" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Mesedez egiaztatu Moduluak Eguneratzeko euskarria %s unitatean dagoela" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Eguneraketak" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Orain aukera duzu lerroko baliabideak konfiguratzeko." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Hau segurtasun eguneraketak instalatzeko ahalbidetzen du." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Baliabideak konfiguratzeko, Interneteko konexioa izan behar izango duzu.\n" +"\n" +"Konfiguratu nahi dituzu eguneratze baliabideak?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Ondorengo pakete hauek instalatuko dira" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Berriz saiatu?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Ezin izan da euskarria gehitu" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Pakete eguneratuak deskarga ditzakezu orain. Pakete hauek\n" +"eguneratu egin dira banaketa askatu ondoren. Beharbada\n" +"segurtasun edo akatsen konponketak izango dituzte.\n" +"\n" +"Pakete hauek deskargatzeko, Interneteko konexioa izan behar\n" +"duzu.\n" +"\n" +"Eguneratzeak instalatu nahi dituzu?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s - %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardwarea" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Soinu-txartela" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfaze grafikoa" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Sarea eta Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxy-ak" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "konfiguratuta" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Segurtasun-maila" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Suebakia" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktibatuta" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "desgaituta" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "X ez duzu konfiguratu. Ziur zaude hori dela egin nahi duzuna?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Programaren hasierako abioa prestatzen ..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Pazientzia izan, pixka baterako dauka..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Segurtasun-maila honetan, administratzaileak soilik du Windows partizioko " +"fitxategiak atzitzeko eskubidea." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Sartu diskete huts bat %s unitatean" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Auto-instalazioko disketea sortzen..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Urrats batzuk ez dira osatu.\n" +"\n" +"Ziur zaude orain irten nahi duzula?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Zorionak" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Berrabiarazi" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Hizkuntza" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Kokapena" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lizentzia" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Sagua" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Disko gogorren detekzioa" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Instalaketa mota" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Teklatua" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Segurtasuna" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partizioa egiten" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatua" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Paketeak aukeratzen" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalatzen" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Erabiltzaileak" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Abioko kargatzailea" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Konfiguratu X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Laburpena" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Zerbitzuak" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Eguneraketak" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Irten" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Ispiluaren URL?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL-ak ftp:// edo http:// aurretik izan behar du" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "%s web gunearekin konektatzen, ispilu erabilgarrien zerrenda lortzeko..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "%s web gunearekin eskuragarri dauden ispiluen zerrenda lortzeko " +#~ "harremanak huts egin du" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko" diff --git a/perl-install/install/share/po/fa.po b/perl-install/install/share/po/fa.po new file mode 100644 index 000000000..95a458a7d --- /dev/null +++ b/perl-install/install/share/po/fa.po @@ -0,0 +1,1657 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Abbas Izad <abbasizad@hotmail.com>, 2003-2005 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Persian (http://www.transifex.com/MageiaLinux/mageia/language/" +"fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "آیا رسانه مکمل دیگری دارید؟" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "شبکه (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "شبکه (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "شاخه" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "نمیتوان پرونده hdlist را بر این آینه پیدا کرد" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "بررسی بستههای از قبل نصب شده..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "یافتن بستههای برای ارتقاء..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"بستههای بدنبال آمده برای ارتقاء سیستم شما برداشته خواهند شد: %s\n" +"\n" +"\n" +"آیا واقعاً میخواهید این بستهها را بردارید؟\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "خطا در خواندن پروندهی %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "دیسک(های) بدنبال تغییر نام داده شدهاند:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (قبلا نامش %s بود(" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "شبکه" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "لطفاً رسانهای را انتخاب کنید" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "پرونده از قبل وجود دارد. بازنویسی شود؟" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "اجازه داده نشد" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "رسانه بد %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "نمیتوان قبل از قسمتبندی عکسصفحه گرفت" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "عکسصفحهها بعد از نصب در %s در دسترس خواهند بود" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "پیکربندی" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "باید %s را قالببندی کنید" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"بعضی از سختافزارهای بر روی رایانهی شما برای کار کردن احتیاج به راهاندازهای " +"اختصاصی دارند. یافتن اطلاعاتی درباره آنها در: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "بالا آوردن شبکه" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "پایین آوردن شبکه" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "کپی کردن در حال انجام است" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "باید داشت" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "مهم" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "خیلی خوب" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "خوب" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "شاید" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "یک خطای مهلک رخ داد: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "ایستگاهکار" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "ایستگاهکار دفتری" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"برنامه های دفتری: واژه پردازان (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "ایستگاه بازی" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "برنامههای سرگرمی: آرکید، تختهها، تاکتیکی، غیره" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "ایستگاه چندرسانهای" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "برنامههای ویرایش/پخش ویدیو و صوت" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "ایستگاه اینترنت" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "مجموعه ابزار خواندن و ارسال پست و اخبار (mutt, tin..) و برای مرور وب" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "رایانهی شبکه (کارگیر)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "کارگیرها برای پایاننامههای گوناگون از جمله ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "ابزارهای برای آسان کردن پیکربندی رایانهاتان" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "ابزارهای کنسول" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "ویرایشگرها، پوستهها، ابزار پرونده، پایانهها" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "برنامهسازی" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "کتابخانههای برنامهسازی C و C++، برنامهها و پروندههای شامل" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "نوشتار" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "کتابها و چگونگیها در لینوکس و نرمافزار آزاد" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "پایهی استاندارد لینوکس. حمایت برنامههای شخص سوم" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "کارگزار وب" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "آپاچ" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "گروه افزار" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "کارگزار Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "دیوارآتش/مسیریاب" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "دروازهی اینترنت" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "پست/اخبار" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "کارگزار پست Postfix، کارگزار اخبار Inn " + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "کارگزار شاخه" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "کارگزار FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "نام دامنه و کارگزار اطلاعات شبکه" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "کارگزاراشتراک چاپگر و پرونده" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "کارگزار NFS، کارگزار Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "بانک اطلاعات" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "کارگزار پایگاه دادهی PostgreSQL و MariaDB " + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "پست" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "کارگزار پست Postfix " + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "کارگزار بانک اطلاعاتی PostgreSQL یا MariaDB " + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "کارگزار شبکهی رایانه" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "کارگزار NFS , کارگزار SMB , کارگزار Proxy , کارگزار ssh " + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "محیط گرافیکی" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "محیط رومیزی K، محیط گرافیکی پایه با مجموعهای از ابزارهای ضمیمه" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "ایستگاهکار گنوم" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "محیط گرافیکی کاربر-دوستانه با مجموعهای از برنامهها و ابزارهای رومیزی" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "دیگر رومیزیهای گرافیکی" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "وسایل" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "کارگزار SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "کارگزار پیکربندی از راه دور Webmin " + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "پایشگری/وسایل شبکه" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "ابزار پایشگری، پروسه های حسابداری، tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "جادوگران نرم افزار ماندریبا" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "جادوگران برای پیکربندی کارگزار" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"خطائی رخ داد، اما نمیدانم چگونه آن را بخوبی اداره کنم.\n" +"با مسئولیت خودتان ادامه دهید." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"بعضی از بستههای مهم بدرستی نصب نشدند. \n" +"یا گردانندهی سیدی یا سیدیرم شما دارای اشکال میباشد.\n" +"این سیدی را بر یک رایانهی نصب شده با استفاده از \"rpm -qpl media/main/*.rpm" +"\" بررسی کنید\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "ورود به مرحلهی `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> بین عناصر" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "گزینش گروه بسته" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "انتخاب بستهی تکی" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "همه انتخاب نشدهاند" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "اندازهی کل: %d / %d مگابایت" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "نسخه: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "اندازه: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d کیلوبایت\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "اهمیت: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "نمیتوانید این بسته را انتخاب/غیر انتخاب کنید" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "بدلیل فقدان %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "بدلیل عدم ارضای %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "تلاش برای تبلیغ %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "بمنظور نگهداشتن %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"نمیتوانید این بسته را انتخاب کنید چرا که فضای کافی برای نصب آن باقی نمانده " +"است" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "بستههای بدنبال آمده نصب خواهند شد" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "بستههای بدنبال آمده برداشته خواهند شد" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "این بستهای ضروری است، نمیتواند که گزیده نشود." + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "نمیتوانید این بسته را انتخاب نکنید. آن از قبل نصب شده است " + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "نمیتوانید این بسته را انتخاب نکنید. این باید ارتقاء داده شود" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "نشان دادن خودکار بستههای انتخاب شده" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "نصب" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "بارگذاری/ذخیره انتخاب" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "بروزسازی مجموعه بسته" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "نصب حداقل" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "مدیریت نرمافزار" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "بستههایی را که میخواهید نصب کنید انتخاب کنید" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "نصب کردن" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "بدون جزئیات" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "بستههای %d" +msgstr[1] "بستههای %d" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "خلاصه" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "پیکربندی" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "پیکربندی نشده است" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"رسانه نصب بدنبال آمده یافت شد.\n" +"اگر میخواهید بعضی از آنها را نادیده بگیرید میتوانید آنها را اکنون نگزینید." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"شما میتوانید محتویات سیدیها را قبل از نصب بر روی دیسک سخت کپی کنید.\n" +"سپس آن از دیسک سخت ادامه یافته و بستهها وقتی که سیستم کاملا نصب گردید در " +"دسترس خواهند بود." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "کپی کردن تمام سیدیها" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "خطائی رخ داد" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "لطفاً طرح صفحهکلید خود را انتخاب کنید" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "نصب/ارتقاء" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "آیا این یک نصب است یا یک ارتقاء؟" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "نصب" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "ارتقاء دادن %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "کلید رمزی برای %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"سیدی-رم خود را عوض کنید! \n" +"لطفاً سیدی با برچسب \"%s\" را در دستگاهتان بگذارید و تأیید را بعد از انجام آن " +"فشار دهید. \n" +"اگر آن را ندارید، لغو را برای جلوگیری از نصب این سیدی-رم فشار دهید." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "جستجو برای بستههای موجود..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"لطفاً بارگذاری یا ذخیرهی مجموعه بسته را انتخاب کنید.\n" +"قالب همانند پروندههای تولید شدهی نصب-خودکار است." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "بارگذاری" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "ذخیره" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "پرونده بد" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "گنوم" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "اندازههای انتخاب شده بزرگتر از فضای موجود است" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "نوع نصب" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"هیچ گروه از بستهها را انتخاب نکردهاید.\n" +"لطفاً حداقل نصبی را که میخواهید انتخاب کنید:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "با X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "با نوشتارهای پایه (سفارش میشود!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "حقیقتاً حداقل نصب (مخصوصاً بدون urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "آماده کردن نصب" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "نصب کردن بستهی %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "خطائی در مرتب کردن بستهها رخ داد:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "ادامه به هر حال؟" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "پیکربندی بعد از نصب" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "بروزسازیها" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "بستههای بدنبال آمده نصب خواهند شد" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "ناموفق بودن هنگام اضافه کردن رسانه" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"اکنون میتوانید بستههای بروزسازی شده را بارگیری کنید. این بستهها \n" +"بعد از پخش انتشار بروزسازی شدهاند. آنها ممکن است دارای تعمیرات اشکال\n" +"یا امنیت باشند.\n" +"\n" +"برای بارگیری این بستهها، احتیاج به یک اتصال اینترنتی دارید.\n" +"\n" +"آیا میخواهید بروزسازیها را نصب کنید؟" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s بر %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "سختافزار" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "کارت صوتی" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "واسط گرافیکی" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "شبکه و اینترنت" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "پراکسیها" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "پیکربندی شده" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "سطح امنیتی" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "دیوارآتش" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "فعال شده" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "از کار افتاده" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "شما ایکس را پیکربندی نکردهاید. آیا واقعاً مطمئنید که این را میخواهید؟" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"در این سطح امنیتی، دستیابی به پروندههای قسمتبندی ویندوز محدود به مدیر است." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "یک دیسکچهی خالی را در گردانندهی %s داخل کنید" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "ایجاد کردن دیسکچهی نصب خودکار..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"بعضی از مراحل تکمیل نشده است.\n" +"\n" +"واقعاً میخواهید اکنون ترک کنید؟" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "تبریک میگوئیم!" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "آغازگری مجدد" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "زبان" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "مجوز" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "موشی" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "شناسایی گردانندهی دیسک" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "صفحهکلید" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "امنیت" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "قسمتبندی" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "نصب کردن" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "کاربران" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "بارگذار آغازگر" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "پیکربندی ایکس" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "خلاصه" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "سرویسها" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "بروزسازیها" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "خروج" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "نشانی اینترنتی آینه؟" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "انتخاب آینهای برای گرفتن بستهها" diff --git a/perl-install/install/share/po/fi.po b/perl-install/install/share/po/fi.po new file mode 100644 index 000000000..329ee65df --- /dev/null +++ b/perl-install/install/share/po/fi.po @@ -0,0 +1,1704 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Anssi Hannula <anssi@mandriva.org>, 2007-2008 +# Esa Linna <denzo@mbnet.fi>, 2004 +# Jani Välimaa <wally@mageia.org>, 2011 +# wally <wally@mandriva.org>, 2009 +# Kimmo Kujansuu <mrkujansuu@gmail.com>, 2023 +# Matias Griese <mahagr@utu.fi>, 2001 +# Taisto Kuikka <69319@batman.jypoly.fi>, 2003-2004 +# Thomas Backlund <tmb@mandrake.org>, 2002-2005 +# Thomas Backlund <tmb@mandriva.org>, 2006,2008 +# wally <wally@mandriva.org>, 2009 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Kimmo Kujansuu <mrkujansuu@gmail.com>, 2023\n" +"Language-Team: Finnish (http://app.transifex.com/MageiaLinux/mageia/language/" +"fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Liity meihin!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Tee siitä omasi!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Sinun valintasi!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Tiedostotyökalut" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Kodin viihde" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Lapsille" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Perheelle!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Kehittäjäille!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Kiitos sinulle!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Ole vapaa!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Onko käytettävissä muita asennuksen lisälevyjä?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Löydettiin seuraavat asennuksen aikana käytettävät mediat: %s.\n" +"\n" +"\n" +"Onko käytettävissä muita asennusmedioita?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Verkko (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Verkko (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Verkko (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-asetukset" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Syötä NFS-palvelimen nimi ja hakemistopolku" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Palvelimen osoite puuttuu" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Hakemistopolun täytyy alkaa \"/\"-merkillä" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS-palvelimen nimi?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Hakemisto" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Lisämedia" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Peilipalvelimelta ei löydy tiedostolistausta. Varmista tiedostopolun " +"oikeellisuus." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Jotkin tietokoneen laitteet tarvitsevat joitain nonfree laiteohjaimia, jotta " +"vapaan ohjelmiston ajurit toimisivat." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Sinun pitäisi lisätä \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" sisältää järjestelmien eri osat ja sen sovellukset" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" sisältää nonfree ohjelmistoa.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Sisältää myös tiettyjen laitteiden toimintaan tarvittavat ajurit (esim.: ATI/" +"AMD-näytönohjaimet, jotkin verkkokortit, jotkin RAID-kortit, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" sisältää ohjelmistoa, joita ei voida levittää kaikissa maissa " +"patenttien vuoksi." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "Sisältää myös ohjelmiston \"%s\" rakentamiseksi lisäominaisuuksilla." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Täällä voit ottaa käyttöön lisää medioita, jos haluat." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Tämä media tarjoaa pakettien päivityksiä medialle \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Etsitään asennettuja paketteja..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Etsitään paketteja päivitettäväksi..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Poistetaan paketteja ennen päivitystä..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Seuraavat paketit on poistettava, jotta järjestelmä voidaan päivittää:\n" +"%s\n" +"\n" +"Poistetaanko paketit?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Virhe luettaessa tiedostoa %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Seuraavat levyt nimettiin uudelleen:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (ennen: %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Verkko" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Valitse media" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Tiedosto jo olemassa. Korvaa?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Ei oikeuksia" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Virheellinen NFS-nimi" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Virheellinen media %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Kuvakaappauksia ei voida ottaa ennen osiointia" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Kuvakaappaukset löytyvät asennuksen jälkeen hakemistosta %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Asennus" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Asetukset" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Myös %s tulee alustaa" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Jokin osa laitteistosta tarvitsee laitteistovalmistajan ajurit toimiakseen.\n" +"Lisätietoa edellä mainituista: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Käynnistetään verkkoa" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Ajetaan verkkoa alas" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Odota hetki, haetaan tiedostoa" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "median lisääminen epäonnistui" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopioidaan paketteja kovalevylle myöhempään käyttöä varten" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopioidaan" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "pakollinen" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "tärkeä" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "erittäin hyvä" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "hyvä" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "ehkä" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Haetaan pakettien tietoja XML-metatiedoista..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Medialla \"%s\" ei ole XML-tietoja, vain osittainen hakutulos paketille %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Ei kuvausta" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Joitakin paketin %s vaatimia paketteja ei voida asentaa:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Virhe:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Tapahtui ohittamaton virhe: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Älä kysy uudelleen" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d asennustapahtumaa epäonnistui" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Pakettien asennus epäonnistui:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Työasema" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Toimistotyöasema" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Toimisto-ohjelmistot: tekstinkäsittely (LibreOffice Writer, Kword), " +"taulukkolaskenta (LibreOffice calc, Kspread), PDF-lukijat jne" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Peliasema" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Viihdeohjelmat: tasohyppely, korttipelit, strategia jne" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimediatyöasema" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Äänen ja videon toisto- ja editointiohjelmat" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet-työasema" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Valikoima työkaluja sähköpostin ja uutisryhmien lukemiseen (mutt, tin...), " +"sekä Internetin selailuun" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Verkkopääte (asiakas)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Asiakasohjelmat eri protokollille (SSH jne.)" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Työkalut, jotka helpottavat tietokoneen asetusten muokkaamista" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Komentorivityökalut" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editorit, komentotulkit, tiedostotyökalut, päätteet" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Kehitysympäristö" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" +"Ohjelmat, include-tiedostot ja kehityskirjastot ohjelmointikielille C ja C++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentaatio" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Kirjoja ja ohjeita Linuxista ja vapaan lähdekoodin ohjelmista" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" +"Linux Standard Base (LSB)\n" +" - Tuki kolmannen osapuolen ohjelmistoille" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "WWW-palvelin" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab-palvelin" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Palomuuri / Reititin" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internetin yhdyskäytävä" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Sähköposti / Uutiset" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix-sähköpostipalvelin, Inn-uutispalvelin" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Hakemisto-palvelin" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-palvelin" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS / NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS- ja NIS-palvelin" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Tiedosto- ja tulostuspalvelin" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS-palvelin, Samba-palvelin" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Tietokanta" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL- ja MariaDB-tietokantapalvelin" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "WWW / FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache WWW-palvelin ja Pro-ftpd FTP-palvelin" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Sähköposti" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix-sähköpostipalvelin" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL- tai MariaDB-tietokantapalvelin" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Verkkotietokone (palvelin)" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-, SMB-, SSH- ja välityspalvelin" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Graafinen ympäristö" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma-työasema" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K-työpöytäympäristö. Graafinen perusympäristö ja sen mukana tulevat työkalut" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME-työasema" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Graafinen ympäristö käyttäjäystävällisillä sovelluksilla ja työkaluilla." + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce-työasema" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Kevyempi graafinen ympäristö käyttäjäystävällisillä sovelluksilla ja " +"työkaluilla" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE-työasema" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon-työasema" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "GNOME-pohjainen graafinen ympäristö" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt-työpöytä" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Seuraavan sukupolven QT-portti kevyenä työpöytäympäristönä" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment-työpöytä" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Kevyt ja nopea graafinen ympäristö" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE-työpöytä" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Kevyt ja nopea graafinen ympäristö" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Muut graafiset työpöydät" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, jne" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Työkalut" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-palvelin" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin etäasetuspalvelin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Verkkotyökalut ja verkon valvonta" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Valvontatyökalut, prosessienhallinta, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageian asetusvelhot" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Velhoja palvelinten asettamiseksi" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Ilmeni virhe, eikä sitä ei voida käsitellä kunnolla.\n" +"Jatka omalla vastuullasi." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Joitakin tärkeistä paketeista ei pystytty asentamaan.\n" +"CD/DVD-asema tai -levy on viallinen.\n" +"Tarkista CD/DVD-levy asennetussa järjestelmässä komennolla \"rpm -qpl media/" +"main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Siirrytään vaiheeseen %s\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%sin asennus %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> vaihtaa osaa" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "X.org-palvelin on hidas käynnistää. Odota..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Järjestelmän resurssit ovat lopussa. %sia asennettaessa\n" +"voi ilmetä ongelmia. Jos näin tapahtuu, voidaan graafisen asennuksen\n" +"sijaan käyttää tekstipohjaista asennusta. Tekstipohjainen asennus\n" +"käynnistetään painamalla käynnistysruudussa näppäintä F1,\n" +"kirjoittamalla teksti \"text\" ja painamalla Enteriä." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Asennusmedioiden valinta" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Asenna %s Plasma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Asenna %s GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Mukautettu asennus" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma-työpöytä" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME-työpöytä" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Mukautettu työpöytä" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "%s-työpöydän esikatselu." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Kuvaa napsauttamalla aukeaa isompi esikatselukuva." + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Pakettiryhmien valinta" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Yksittäisten pakettien valinta" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Poista valinnat" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Koko yhteensä: %d / %d Mt" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versio: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Koko: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d kt\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Tärkeys: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Pakettia ei voida valita tai poistaa" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "puuttuvan riippuvuuden %s vuoksi" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "täyttämättömistä riippuvuuksista %s johtuen" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "yritetään asentaa %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "jotta %s voitaisiin säilyttää" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Pakettia ei voida asentaa, koska levyllä ei ole tarpeeksi tilaa sen " +"asentamiseen" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Seuraavat paketit asennetaan" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Seuraavat paketit poistetaan" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Tämä on pakollinen paketti, sitä ei voida poistaa valinnoista" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Paketin valintaa ei voi poistaa, koska se on jo asennettu" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Paketin valintaa ei voi poistaa, koska se pitää päivittää" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Näytä automaattisesti valitut paketit" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Asenna" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Lataa / tallenna pakettivalinnat" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Päivitetään pakettien valintoja" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Vaihda hierarkkisen ja kiinteän pakettilistan välillä" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Vähimmäisasennus" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Ohjelmistojen hallinta" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Valitse asennettavat paketit" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Asennus käynnissä" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Ei yksityiskohtia" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Aikaa jäljellä:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(arvioidaan...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paketti" +msgstr[1] "%d pakettia" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Yhteenveto" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Aseta" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "ei asetettu" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Löydettiin seuraavat asennusmediat.\n" +"Poista median valinta, jos et halua käyttää sitä." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Asennuslevyjen sisältö on mahdollista kopioida kovalevylle ennen asennusta.\n" +"Asennus jatkuu tämän jälkeen kovalevyltä ja paketit ovat käytettävissä myös " +"asennuksen jälkeen." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopioi asennuslevyt" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Ilmeni virhe" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Valitse näppäimistöasettelu" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Lista kaikista käytettävissä olevista näppäimistöistä:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Asennustapa" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Asennus vai päivitys?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Asennus" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Päivitä %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Salausavain %s:lle" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Peruuta asennus ja käynnistä järjestelmä uudelleen" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Uusi asennus" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Päivitä edellinen asennus (ei suositella)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Asennusohjelma havaitsi, että asennettua Linux-järjestelmää ei voida\n" +"päivittää turvallisesti versioon %s.\n" +"\n" +"On suositeltavaa suorittaa asennus, joka korvaa edellisen asennuksen.\n" +"\n" +"HUOM! Ota varmuuskopio tärkeistä ja henkilökohtaisista tiedostoista\n" +"ennen kuin valitset \"Uusi asennus\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "CD/DVD:n konfigurointi" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Vaihda CD/DVD-levyä!\n" +"\n" +"Aseta asemaan levy nimeltä \"%s\" valitse OK.\n" +"Jos levyä ei ole, valitse \"Peruuta\" ohittaaksesi asennukset kyseiseltä " +"levyltä." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Etsitään saatavilla olevia paketteja..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Järjestelmässä ei ole riittävästi vapaata tilaa asennusta tai päivitystä " +"varten (%dMt > %dMt)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Lataa tai tallenna pakettien valinta.\n" +"Muotoilu on sama kuin auto_install-toiminnon luomilla tiedostoilla." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Lataa" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Tallenna" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Virheellinen tiedosto" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Työpöydän valinta" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Valitse asennettava työpöytäympäristö." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" +"Valittujen pakettien koko on suurempi kuin käytettävissä oleva levytila" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Asennuksen tyyppi" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Yhtään pakettiryhmää ei ole valittu.\n" +"Valitse haluttu vähimmäisasennus:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Graafisella käyttöliittymällä" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Asenna suositellut paketit" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Perusdokumentaation kanssa (suositeltu!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Vähimmäisasennus (ei edes urpmi:a)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Valmistellaan päivitystä..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Valmistellaan asennusta" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Asennetaan pakettia %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Paketteja järjestettäessä tapahtui virhe:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Jatka?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Yritä uudelleen" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Ohita paketti" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Ohita kaikki paketit medialta \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Siirry takaisin medioiden ja pakettien valintaan" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Paketin %s asentamisessa tapahtui virhe." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Asennuksen jälkeiset toiminnot" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Varmista, että \"Update Modules\"-media on asemassa %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Päivitykset" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Sinulla on nyt mahdollisuus asentaa online-medialla." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Tämä sallii tietoturvapäivitysten asentamisen." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Jotta voit asentaa median, sinulla on oltava toimiva yhteys\n" +"Internettiin.\n" +"\n" +"Haluatko asentaa päivitysmedian?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Lataajaa ei voitu asentaa" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Yritä uudelleen?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Virhe lisättäessä lähdettä" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Nyt on mahdollista ladata päivitetyt paketit. Paketit on julkaistu\n" +"jakelun julkaisemisen jälkeen ja ne voivat sisältää tietoturva-\n" +"tai virhekorjauksia.\n" +"\n" +"Pakettien lataamiseen tarvitaan toimiva Internet-yhteys.\n" +"\n" +"Asennetaanko päivitykset?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s kohteessa %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Laitteisto" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Äänikortti" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Graafinen käyttöliittymä" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Verkko ja Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Välityspalvelimet" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "asetettu" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Turvallisuustaso" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Palomuuri" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktivoitu" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "ei käytössä" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"X-palvelinta ei ole asetettu, haluatko varmasti jättää sen asettamatta?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Valmistellaan käynnistysohjelmaa..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Ole kärsivällinen, valmistelussa voi kestää hetki..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Tällä turvallisuustasolla pääsy Windows-osion tiedostoihin on rajoitettu " +"pääkäyttäjälle." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Aseta tyhjä levyke levykeasemaan %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Luodaan automaattiasennuslevykettä..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Joitain vaiheita ei ole suoritettu loppuun.\n" +"\n" +"Haluatko todella lopettaa?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Onnittelut" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Käynnistä uudelleen" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Kieli" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalisointi" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lisenssi" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Hiiri" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Kiintolevyjen tunnistus" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Asennusluokka" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Näppäimistö" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Tietoturva" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Osiointi" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Alustus" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Pakettien valinta" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Asennus" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Käyttäjät" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Käynnistyslatain" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X-palvelin" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Yhteenveto" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Palvelut" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Päivitykset" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Lopetus" diff --git a/perl-install/install/share/po/fr.po b/perl-install/install/share/po/fr.po new file mode 100644 index 000000000..790067f97 --- /dev/null +++ b/perl-install/install/share/po/fr.po @@ -0,0 +1,1718 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Charles Monzat <c.monzat@laposte.net>, 2016 +# Charles Monzat <c.monzat@laposte.net>, 2016 +# Eric Barbero <dune06@free.fr>, 2013 +# Eric Barbero <dune06@free.fr>, 2013,2015-2016 +# stroibe974 <sebsweb@gmail.com>, 2018-2020,2022 +# Yves Brungard, 2014 +# Yves Brungard, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: stroibe974 <sebsweb@gmail.com>, 2018-2020,2022\n" +"Language-Team: French (http://app.transifex.com/MageiaLinux/mageia/language/" +"fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " +"1000000 == 0 ? 1 : 2;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Rejoignez-nous !" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Pour vous !" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Votre choix !" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Pour la bureautique !" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Pour vos loisirs !" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Pour les enfants !" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Pour toute la famille !" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Pour les développeurs !" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Merci !" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Soyez libre !" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Possédez-vous d'autres médias supplémentaires ?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Les médias suivants ont été trouvés et seront utilisés pendant " +"l'installation : %s.\n" +"\n" +"\n" +"Souhaitez-vous configurer un autre média d'installation ?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Réseau (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Réseau (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Réseau (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Configuration NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Veuillez entrer le nom d'hôte et le répertoire de votre média NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Il manque le nom d'hôte" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Le répertoire doit commencer par « / »" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Nom d'hôte du montage NFS ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Répertoire" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Supplémentaire" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Ne peut trouver le fichier de liste des paquetages sur ce miroir. Vérifiez " +"que l'emplacement est correct." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Certains matériels sur votre machine peuvent nécessiter des firmwares non\n" +"libres afin que les pilotes libres puissent fonctionner." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Vous devriez activer « %s »" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" +"« %s » contient les différentes parties du système ainsi que ses applications" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "« %s » contient des logiciels non libres.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Il contient également des firmwares nécessaires au bon fonctionnement de " +"certains périphériques (ex : certaines cartes ATI/AMD, certaines cartes " +"réseau, certaines cartes RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"« %s » contient des logiciels qui ne peuvent pas être redistribués dans tous " +"les pays à cause de certains brevets logiciels." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Il contient également des logiciels de « %s » recompilés avec des " +"fonctionnalités supplémentaires." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Ici vous pouvez activer des médias supplémentaires si vous le désirez." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Ce médium fournit les paquets de mise à jour pour le médium « %s »" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Recherche des paquetages déjà installés…" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Recherche des paquetages à mettre à jour…" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Suppression des paquetages avant la mise à jour…" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Les paquetages suivants seront désinstallés pour permettre la mise à jour : " +"%s\n" +"\n" +"\n" +"Souhaitez-vous réellement les désinstaller ?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Erreur lors de la lecture du fichier %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Les disques suivants ont été renommés :" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (précédemment nommé %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Réseau" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Veuillez choisir un média" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Le fichier existe déjà. Voulez-vous l'écraser ?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permission refusée" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Mauvais nom NFS" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Média %s incorrect" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Impossible de faire des captures d'écran avant le partitionnement" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Les captures d'écran seront disponibles après l'installation dans %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installation" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configuration" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Vous devez aussi formater %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Certains périphériques présents sur votre système requièrent des pilotes " +"« propriétaires » pour pouvoir fonctionner.\n" +"Vous pouvez trouver plus d'informations les concernant ici : %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Démarrage de l'interface réseau" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Arrêt de l'interface réseau" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Veuillez patienter, récupération du fichier en cours" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "impossible d'ajouter le média" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" +"Copie de certains paquetages sur les disques pour une utilisation future" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Copie en cours" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "obligatoire" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "important" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "très utile" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "utile" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "éventuellement" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Récupération des informations depuis les métadonnées XML…" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Pas d'info xml pour le média « %s », seulement un résultat partiel pour le " +"paquetage %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Pas de description" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Certains paquetages requis par %s ne peuvent être installés :\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Une erreur est survenue :" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Une erreur fatale est survenue : %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Ne plus me demander" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d transactions ont échoué" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "L'installation des paquetages a échoué :" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Station de travail" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Poste bureautique" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programmes pour la bureautique : traitements de texte (LibreOffice Writer, " +"Kword), tableurs (LibreOffice Calc, Kspread), visualiseur PDF, etc" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Jeux" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" +"Programmes de divertissement : jeux d'arcade, de plateau, de stratégie, etc" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimédia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programmes de lecture/édition du son et de la vidéo" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Ensemble d'outils pour lire et envoyer des courriers électroniques et des " +"messages de forums (mutt, tin, …), ainsi que pour naviguer sur Internet" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Ordinateur réseau (client)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clients pour différents protocoles, dont ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Outils pour faciliter la configuration de votre ordinateur" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Utilitaires console" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Éditeurs, interpréteurs, outils fichiers, terminaux" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Développement" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" +"Bibliothèques de développement C et C++, programmes et fichiers d'en-tête" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentation" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Livres et tutoriels sur Linux et le Logiciel Libre" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "« Linux Standard Base ». Support des programmes tiers" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Serveur Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Logiciel de groupe de travail" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Serveur Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Pare Feu/Routeur" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Passerelle Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Courriel/Nouvelles" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Serveur de courrier Postfix, serveur de nouvelles lnn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Serveur d'annuaire" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Serveur FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Serveur de nom de domaine et d'information réseau" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Serveur pour partage de fichiers et d'imprimantes" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Serveur NFS, Serveur Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Base de données" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Serveur de bases de données PostgreSQL et MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Courriel" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Serveur de courrier Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Serveur de bases de données PostgreSQL ou MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Serveur d'ordinateur réseau" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Serveur NFS, serveur SMB, serveur Proxy (mandataire), serveur SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Environnement graphique" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Station de travail Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"L'environnement de bureau graphique KDE (K Desktop Environment) avec sa " +"collection d'outils" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Station de travail GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Un environnement de bureau avec un ensemble de programmes et d'outils " +"intuitifs" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Environnement Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Un environnement de bureau plus léger avec un ensemble de programmes et " +"d'outils intuitifs" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Station de travail MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Station de travail Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Un environnement de bureau basé sur GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Bureau LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Un portage vers Qt de l'environnement de bureau léger" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Bureau Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Un bureau rapide et léger avec une suite d'outils dédiés" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Bureau LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Un environnement graphique léger et rapide" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Autres environnements de bureau" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, etc." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilitaires" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Serveur SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Serveur de configuration distante Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Utilitaires réseau/Surveillance du réseau" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Outils de surveillance, gestion des processus, tcpdump, nmap, …" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Assistants Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Assistants pour configurer le serveur" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Une erreur est survenue et semble difficile à résoudre correctement.\n" +"Vous pouvez continuer, mais à vos risques et périls." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Quelques paquetages importants n'ont pas été correctement installés.\n" +"Il se peut que le lecteur de CD-ROM ou le CD-ROM lui-même soit défectueux.\n" +"Vous pouvez vous assurer du bon état de ce dernier en exécutant la commande " +"suivante sur un ordinateur fonctionnel : « rpm -qpl media/main/*.rpm »\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Démarrage de l'étape « %s »\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Installation %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> entre éléments" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Le serveur Xorg est lent à démarrer. Veuillez patienter…" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Les ressources de votre système sont limitées. Vous pouvez rencontrer des " +"problèmes\n" +"lors de l'installation de %s. Si c'est le cas, vous pouvez essayer une " +"installation en mode texte.\n" +"Pour cela, appuyez sur « F1 » lors du démarrage sur le CD-ROM, puis entrez « " +"text »." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Sélection des médias" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Installer l'environnement de bureau Plasma %s" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Installer le bureau GNOME %s" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Installation personnalisée" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Bureau Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Bureau GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Bureau personnalisé" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Voici un aperçu du bureau « %s »." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Cliquez sur l'image afin d'agrandir l'aperçu" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Sélection des groupes de paquetages" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Sélection individuelle des paquetages" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Désélectionner tout" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Taille totale : %d / %d Mo" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Version : " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Taille : " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d Ko\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importance : " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Vous ne pouvez pas sélectionner/désélectionner ce paquetage" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "parce que %s manque" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "car %s n'est pas résolu" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "tentative de promouvoir %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "afin de conserver %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Il n'y a pas assez d'espace disque disponible pour installer ce paquetage" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Les paquetages suivants vont être installés" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Les paquetages suivants vont être désinstallés" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ce paquetage est nécessaire, vous ne pouvez pas le désélectionner" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Vous ne pouvez pas désélectionner ce paquetage. Il est déjà installé" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" +"Vous ne pouvez pas désélectionner ce paquetage, car il doit être mis à jour" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Montrer les paquetages sélectionnés automatiquement" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installation" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Charger/Sauvegarder la sélection" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Mise à jour de la sélection des paquetages" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Basculer entre une liste de paquetages avec ou sans arborescence" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Installation minimale" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Gestion des logiciels" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Choisissez les paquetages que vous voulez installer" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Installation" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Pas de détails" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Temps restant :" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(estimation en cours…)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paquetage" +msgstr[1] "%d paquetages" +msgstr[2] "%d paquetages" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Résumé" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configurer" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "non configuré" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Les médias d'installation suivants ont été trouvés.\n" +"Si vous ne désirez pas utiliser certains d'entre eux, vous pouvez les " +"désélectionner maintenant." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Vous avez la possibilité de copier le contenu des CD sur le disque dur avant " +"l'installation.\n" +"Celle-ci s'effectuera alors à partir du disque dur et les paquetages " +"resteront disponibles une fois le système installé." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copier entièrement les CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Une erreur est survenue" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Veuillez choisir votre disposition de clavier" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Voici la liste complète des claviers disponibles :" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installation/Mise à jour" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Désirez-vous faire une installation ou une mise à jour ?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installation" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Mettre à jour %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Clé de chiffrement pour %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Annuler l'installation, relancer le système" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nouvelle installation" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Mettre à jour l'installation précédente (non recommandé)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"L'assistant d'installation a détecté que votre système Linux installé\n" +"ne peut être migré vers %s en toute sécurité.\n" +"\n" +"Une nouvelle installation remplaçant l'ancienne est recommandée.\n" +"\n" +"Attention, vous devriez sauvegarder vos données personnelles\n" +"avant de choisir « Nouvelle installation »." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Configuration CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Changez de CD-ROM !\n" +"Veuillez insérer le CD-ROM nommé « %s » dans votre lecteur puis cliquez sur " +"« OK ».\n" +"Si vous ne le possédez pas, cliquez sur « Annuler » afin de ne rien " +"installer à partir de ce CD-ROM." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Recherche des paquetages disponibles…" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Votre système n'a pas assez d'espace libre pour l'installation ou la mise à " +"jour (%dMo > %dMo)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Veuillez choisir entre le chargement ou la sauvegarde de la sélection des " +"paquetages.\n" +"Le format est le même que celui de l'installation automatisée (auto_install)." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Charger" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Sauvegarder" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Mauvais fichier" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Sélection du bureau" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Vous pouvez choisir un profil de bureau de station de travail." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "La taille sélectionnée est plus importante que la place disponible" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Type d'installation" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Vous n'avez sélectionné aucun groupe de paquetages.\n" +"Veuillez choisir l'installation minimale désirée :" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Avec X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Installer les paquetages recommandés" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Avec la documentation de base (recommandé !)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Installation vraiment minimale (et en particulier pas d'urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Préparation de la mise à jour" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Préparation de l'installation" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Installation du paquetage %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Erreur lors du tri des paquetages :" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Souhaitez-vous tout de même continuer ?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Ré-essayer" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Ignorer ce paquetage" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Ignorer tous les paquetages du média « %s »" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Retourner à la sélection du média et des paquetages" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Erreur lors de l'installation du paquetage %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configuration post-installation" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Assurez-vous que le média de mise à jour des modules est dans le lecteur %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Mises à jour" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Maintenant vous pouvez paramétrer le média en ligne." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Ceci vous permet d'installer les mises à jour de sécurité." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Pour paramétrer ces médias, vous devez disposer d'une connexion Internet.\n" +"\n" +"Voulez-vous paramétrer le média de mise à jour ?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Ce gestionnaire de téléchargement n’a pas pu être installé" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Essayer de nouveau ?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Échec lors de l'ajout du dépôt" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Vous avez maintenant la possibilité de télécharger les paquetages mis à " +"jour\n" +"depuis la sortie de cette distribution. Il peut y avoir des correctifs de\n" +"sécurité ou des résolutions d'anomalies.\n" +"\n" +"Vous devez avoir une connexion Internet pour les télécharger.\n" +"\n" +"Souhaitez-vous installer les mises à jour ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s sur %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Matériel" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Carte son" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interface graphique" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Réseau et Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxies (serveurs mandataires)" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "configuré" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Niveau de sécurité" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Pare-feu" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "activé" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "désactivé" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"Vous n'avez pas configuré le serveur d'affichage X. Êtes-vous sûr que c'est " +"ce que vous désirez ?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Préparation du chargeur d'amorçage..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Merci d'être patient, cela peut prendre quelques minutes…" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"A ce niveau de sécurité, l'accès aux fichiers de la partition Windows sera " +"restreint à l'administrateur." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Insérez une disquette vierge dans le lecteur %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Création de la disquette d'auto-installation…" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Certaines étapes ne sont pas terminées.\n" +"\n" +"Souhaitez-vous vraiment quitter maintenant ?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Félicitations" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Redémarrage" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Langue" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Localisation" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licence" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Souris" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Détection des disques durs" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Classe d'installation" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Clavier" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sécurité" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partitionnement" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatage" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Choix des paquetages" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installation" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Utilisateurs" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Amorçage" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Configuration de X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Résumé" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Services" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Mises à jour" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Quitter" diff --git a/perl-install/install/share/po/fur.po b/perl-install/install/share/po/fur.po new file mode 100644 index 000000000..e9a83597c --- /dev/null +++ b/perl-install/install/share/po/fur.po @@ -0,0 +1,1611 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Andrea Gracco <graccoandrea@tin.it>, 2004 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2020-06-18 00:30+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Friulian (http://www.transifex.com/MageiaLinux/mageia/" +"language/fur/)\n" +"Language: fur\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Cartele" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rêt" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permès dineât" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configurazion" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "A si è verificât un fal fatâl: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Svilup" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentazion" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Server Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Mail" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Ambient Grafic" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Al è intravignût un fal, ma no sai ben cemût gjestîlu.\n" +"Continue a to azard." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Version: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Dimension: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Entitât: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "cause cal mancje %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "cause che %s no l'è sodisfat" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "ricercje dal miôr pachet %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "par tignî %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instale" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Gjestôr Software" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configure" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Al è intravignût un fal" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instale" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Salve" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Atualizazions" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Fal te zonte de font" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rêt & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nivel di Sigurece" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "disabilitât" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Congratulazions" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Torne a inviâ" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Surie" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastiere" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sigurece" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Utents" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servizis" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Atualizazions" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Jessì" diff --git a/perl-install/install/share/po/ga.po b/perl-install/install/share/po/ga.po new file mode 100644 index 000000000..fc5b98285 --- /dev/null +++ b/perl-install/install/share/po/ga.po @@ -0,0 +1,1615 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Alastair McKinstry <mckinstry@computer.org>, 2002 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2020-06-18 00:30+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Irish (http://www.transifex.com/MageiaLinux/mageia/language/" +"ga/)\n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " +"4);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Líonra (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Líonra (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Líonra (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Cumraigh NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Comhadlann" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Ag cúrdach pacáistí le húasgrádú..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Earráid ag léamh comhad %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Líonra" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Tá an comhad ann cheana. Forscríobh?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Cead diúltaithe" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Suiteáil" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "cumraíocht" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Is gá %s a fhormáidiú freisin" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Ag tosnú suas an ghréasán" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Ag dúnadh síos an ghreasán" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "riachtanas" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "tábhachtach" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "an-dheas" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "deas" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "b'fhéidir" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Gan cur síos" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Stáisiún Oibre" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Stáisiún Oibre" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Stáisiún Cluichí" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Stáisiún ilmheánach" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Stáisiún Idirlíon" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Uirlisí Consóil" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Forbairt" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Doiciméadú" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Freastalaí Lín" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Grúpearraí" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Freastalaí Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Ríomhphost/Nuacht" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Freastalaí Eolaire" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Freastalaí FTP:" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Bunachar Sonraí" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Greasan/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Post" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Timpeallacht Ghrafach" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Stáisiún Gnome" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Deasc Graphaicí Eile" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Uirlisí" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Freastalaí SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Ta earraid ann, níl a fhios agam conas é a cheartú.\n" +"Lean ort, ar do phriacal féin." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Ag tosnú ar céim `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Suiteáil %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Roghnú Grúpa Pacáistí" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Méid iomlán: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Leagan: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Méid: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Tábhacht: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Feistiú" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Bainistíocht Bhogearraí" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Ag Feistiú" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Coimriú" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Cumraigh" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Tharla earráid" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Roghnaigh leagan amach do mhéarchláir" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Suiteáil" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Ag curdach do na pacáistí atá ar fáil..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Lód" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Sábháil" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Le X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Ag Ullmhaigh feistiú" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Ag feistiál pacáiste %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Lean ar aghaidh ar aon nós?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Atriail" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Cumraíocht Iar-feistú" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Leasuithe" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s ar %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Crua-earraí" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Carta Fuaim" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Comhéadan grafach" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Gréasán agus Idirlíon" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Ionadaithe" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "cumraithe" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Leibhéal Slándála" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Bac slándála" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "díchumasaithe" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Cur isteach diosca folamh sa dioscthiomant %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Comhghairdeas" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Atosaigh" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Roghnaigh do theanga" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Ceadúnas" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Luchóg" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Eocharclár" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Slándáil" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formáidiú" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Ag Feistiú" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Úsáideoirí" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Clár dúisithe" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Cumraigh X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Coimriú" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Seirbishí" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Leasuithe" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Scoir" diff --git a/perl-install/install/share/po/gl.po b/perl-install/install/share/po/gl.po new file mode 100644 index 000000000..e55fc30bd --- /dev/null +++ b/perl-install/install/share/po/gl.po @@ -0,0 +1,1703 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Alejo Pacín Jul <alejopj@gmail.com>, 2009 +# Jesús Bravo Álvarez (mdk) <jba@pobox.com>, 2001 +# Leandro Regueiro <leandro.regueiro@gmail.com>, 2004-2006,2008 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Galician (http://www.transifex.com/MageiaLinux/mageia/" +"language/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Ten soportes suplementarios adicionais?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Atopáronse os seguintes soportes e vanse usar durante a instalación: %s.\n" +"\n" +"\n" +"Ten algún soporte de instalación suplementario para configurar?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rede (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rede (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rede (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Configuración de NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Introduza o nome de máquina e o directorio do soporte NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Falta o nome de máquina" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "O directorio debe comezar por \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Cal é o nome de máquina da montaxe NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Directorio" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Suplementario" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Non se puido atopar un ficheiro de lista de paquetes neste sitio espello.\n" +"Asegúrese de que a localización é a correcta." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Buscando os paquetes que xa están instalados..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Buscando paquetes para actualizar..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Eliminando paquetes antes de actualizar..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Vanse eliminar os seguintes paquetes para poder actualiza-lo seu sistema: " +"%s\n" +"\n" +"\n" +"Desexa eliminar estes paquetes?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Erro ó le-lo ficheiro %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Renomeáronse os seguintes discos:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (chamado anteriormente %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rede" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Escolla un soporte" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "O ficheiro xa existe. ¿Desexa sobreescribilo?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permiso denegado" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Nome NFS incorrecto" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "O soporte %s é incorrecto" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Non se pode captura-la pantalla antes de face-las particións" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Poderanse facer capturas de pantalla despois de instalar en %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalación" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configuración" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Tamén debe formatar %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Algún hardware do seu ordenador necesita drivers ``propietarios''\n" +"para funcionar. Pode atopar máis información sobre eles en: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Activando a rede" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Desactivando a rede" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Por favor, agarde, recuperando o ficheiro" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "Incapaz de engadir o soporte" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Copiando algúns paquetes dos discos para un uso posterior" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Copiando" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "debe telo" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "importante" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "moi bo" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "bo" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "indiferente" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Non hai información xml do soporte \"%s\", só resultado parcial para o " +"paquete %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Sen descrición" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Non se pode instalar algúns paquetes solicitados por %s:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Ocorreu un erro:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Ocorreu un erro moi grave: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "Erraron %d transaccións de instalación" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Errou a instalación de paquetes:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Estación de traballo" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Estación de Traballo de Oficina" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programas de oficina: procesadores de texto (LibreOffice Writer, Kword), " +"follas de cálculo (LibreOffice Calc, Kspread), visualizadores de pdf, etc" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Estación de xogos" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programas de diversión: arcade, taboleiros, estratexia, etc" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Estación multimedia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programas de reproducción e edición de son e vídeo" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Estación de Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Conxunto de ferramentas para ler e enviar correo-e e novas (mutt, tin...) e " +"para navegar pola Web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Ordenador de Rede (cliente)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clientes para diferentes protocolos incluíndo ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Ferramentas para facilita-la configuración do ordenador" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Ferramentas de Consola" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editores, shells, ferramentas de ficheiro, terminais" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Desenvolvemento" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" +"Bibliotecas de desenvolvemento de C e C++, programas e ficheiros include" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentación" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Libros e Howtos sobre Linux e o Software Libre" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Soporte para aplicacións de terceiros" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Servidor Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Servidor Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Cortalumes/Encamiñador" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Pasarela de Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Correo/Novas" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Servidor de correo Postfix, servidor de novas Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Servidor de Directorio" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Servidor FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Servidor de Nomes de Dominio e Información de Rede" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Servidor de Compartimento de Impresoras e Ficheiros" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Servidor NFS, servidor Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Bases de datos" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Servidores de bases de datos PostgreSQL e MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Correo-e" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Servidor de correo Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Servidores de bases de datos PostgreSQL ou MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Servidor de Redes de Ordenadores" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Servidor NFS, servidor SMB, servidor Proxy, servidor ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Ambiente Gráfico" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"O Ambiente de Escritorio KDE, o ambiente gráfico básico cunha colección de " +"ferramentas que o acompañan" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Estación de Traballo GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Un ambiente gráfico cun conxunto de aplicacións amigables e ferramentas de " +"escritorio" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Escritorio LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Outros Escritorios Gráficos" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilidades" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Servidor SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Servidor de Configuración Remota Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Monitorización/Utilidades de Rede" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" +"Ferramentas de monitorización, accounting de procesos, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Asistentes de Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Asistentes para configurar o servidor" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Ocorreu un erro, e o programa non sabe como manexalo de\n" +"maneira limpa. Continúe baixo a súa propia responsabilidade." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Algúns paquetes importantes non se instalaron correctamente.\n" +"A unidade de cdrom ou o cdrom están defectuosos.\n" +"Comprobe o cdrom nun ordenador xa instalado usando\n" +"\"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Chegando ó paso '%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Instalación de %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> entre elementos" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Ó servidor Xorg lévalle tempo arrincar. Agarde..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"O seu sistema ten poucos recursos. Pode que teña algún problema\n" +"ó instalar %s. Se iso acontece, pode intenta-la instalación\n" +"en modo texto. Para iso, prema 'F1' cando arrinque dende o CDROM,\n" +"e escriba 'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Selección de Soportes" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instalar o Escritorio GNOME de %s" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instalación personalizada" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Escritorio GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Escritorio Personalizado" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Aquí ten unha vista previa do escritorio '%s'." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Prema nas imaxes para ter unha vista previa maior" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Selección de Grupos de Paquetes" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Selección individual de paquetes" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Deseleccionar Todo" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Tamaño total: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versión: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Tamaño: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importancia: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Non pode seleccionar/deseleccionar este paquete" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "debido a que falta %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "debido a %s non satisfeitas" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "tratando de promover %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "para manter %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Non pode seleccionar este paquete xa que non hai espacio dabondo para " +"instalalo" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Vanse instala-los seguintes paquetes" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Vanse elimina-los seguintes paquetes" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Este é un paquete obrigatorio, non se pode deseleccionar" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Non pode deseleccionar este paquete. Xa está instalado" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Non pode deseleccionar este paquete. Ten que ser actualizado" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Amosa-los paquetes seleccionados automáticamente" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalar" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Cargar/Gardar a selección" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Actualizando a selección de paquetes" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Instalación mínima" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Xestión do Software" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Escolla os paquetes que desexa instalar" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalando" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Sen detalles" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tempo restante:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(estimando...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paquete" +msgstr[1] "%d paquetes" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Resumo" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configurar" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "non configurado" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Atopáronse os seguintes soportes de instalación.\n" +"Se desexa saltar algún deles, pode deseleccionalo agora." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Ten a opción de copiar os contidos dos CDs ó disco duro antes da " +"instalación.\n" +"Esta continuará despois dende o disco duro e os paquetes permanecerán " +"dispoñibles unha vez que o sistema xa estea instalado." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copiar CDs enteiros" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Ocorreu un erro" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Escolla a disposición do seu teclado" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Esta é a lista completa dos teclados dispoñibles:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalar/Actualizar" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "¿É unha instalación ou unha actualización?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalación" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Actualizar %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Clave de cifrado para %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Cancelar a instalación, rearrincar o sistema" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nova Instalación" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Actualizar unha instalación previa (non recomendado)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Cambie o CD-ROM!\n" +"Insira o CD-ROM que teña a etiqueta \"%s\" na unidade e prema Aceptar.\n" +"Se non o ten, prema Cancelar para omiti-la instalación deste CD-ROM." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Buscando os paquetes dispoñibles..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"O seu sistema non ten espacio libre dabondo para a instalación ou " +"actualización (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Elixa cargar ou gardar a selección de paquetes.\n" +"O formato é o mesmo có dos ficheiros xerados por auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Cargar" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Gardar" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Ficheiro erróneo" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Selección de Escritorio" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Pode escoller o seu perfil de escritorio de estación de traballo." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "O tamaño seleccionado é maior có tamaño dispoñible" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipo de instalación" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Non seleccionou ningún grupo de paquetes.\n" +"Seleccione a instalación mínima que desexa:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Con X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Coa documentación básica (¡recomendado!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Instalación realmente mínima (especialmente sen urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Preparando a instalación" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instalando o paquete %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Houbo un erro ó ordena-los paquetes:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "¿Continuar de tódolos xeitos?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Volver tentar" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Omitir este paquete" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Omitir tódolos paquetes do soporte \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Volver a soportes e selección de paquetes" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Houbo un erro ó instala-ls paquetes %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configuración trala instalación" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Asegúrese de que o soporte de Módulos de Actualización está na unidade %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Actualizacións" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Vanse instala-los seguintes paquetes" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Fallo ó engadi-lo soporte" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Agora pode descargar paquetes actualizados. Estes paquetes\n" +"actualizáronse despois de que saira a distribución. Poden conter\n" +"solucións de erros ou de buratos na seguridade.\n" +"\n" +"Para descargar estes paquetes, cómpre ter unha conexión á Internet\n" +"que funcione.\n" +"\n" +"Desexa instala-las actualizacións?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s en %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Tarxeta de son" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interface Gráfica" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rede & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxys" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "configurado" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nivel de Seguridade" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Cortalumes" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "activado" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "desactivado" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Non configurou as X. Está seguro de que desexa isto?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Sexa paciente, isto pode levar un anaco..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Con este nivel de seguridade, o acceso ós ficheiros da partición Windows " +"está restrinxido ó administrador." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Insira un disquete baleiro na unidade %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Creando un disquete de instalación automática..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Non se completaron algúns dos pasos.\n" +"\n" +"Desexa saír agora?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Noraboa" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Reiniciar" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Lingua" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Localización" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licenza" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Rato" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Detección de discos duros" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Clase de instalación" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Teclado" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Seguridade" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Facendo as particións" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatado" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Escollendo os paquetes" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalando" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Usuarios" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Cargador de Arrinque" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Configura-las X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Resumo" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servicios" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Actualizacións" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Sair" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Cal é o URL do sitio espello?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "O URL debe comezar por ftp:// ou por http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Contactando co sitio web de %s para obte-la lista de sitios espello " +#~ "dispoñibles..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Erro ó contactar co sitio web de %s para obte-la lista de sitios espello " +#~ "dispoñibles" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Escolla un sitio espello dende o que obte-los paquetes" diff --git a/perl-install/install/share/po/he.po b/perl-install/install/share/po/he.po new file mode 100644 index 000000000..d0207a333 --- /dev/null +++ b/perl-install/install/share/po/he.po @@ -0,0 +1,1678 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Diego Iastrubni <iastrubn@actcom.co.il>, 2003 +# Dotan Kamber <kamberd@yahoo.com>, 2007-2008 +# dovix <dovix2003@yahoo.com>, 2004-2005 +# el-cuco <cuco3001@yahoo.com>, 2003 +# Itay Flikier <itayff@gmail.com>, 2005 +# nadav mavor <nadav@mavor.com>, 2003 +# Omer I.S. <omeritzicschwartz@gmail.com>, 2020-2021 +# Omer I.S. <omeritzicschwartz@gmail.com>, 2020-2021 +# Ram Matityahu <linuxfun@email.com>, 2003 +# Yaron Shahrabani <sh.yaron@gmail.com>, 2020-2021 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2021-08-14 20:20+0000\n" +"Last-Translator: Omer I.S. <omeritzicschwartz@gmail.com>\n" +"Language-Team: Hebrew (http://www.transifex.com/MageiaLinux/mageia/language/" +"he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % " +"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "הצטרפו אלינו!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "הפכו אותה לשלכם!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "הבחירה שלך!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "כלים למשרד" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "בידור ביתי" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "לילדים" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "למשפחה!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "למפתחים!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "תודה רבה!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "עִברו לחירות!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "האם יש לך מאגרים נוספים להתקנה?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"המאגרים שלהלן נמצאו ויעשה בהם שימוש במהלך ההתקנה: %s.\n" +"\n" +"\n" +"האם יש לך אמצעי התקנה נוספים שברצונך להגדיר?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "רשת (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "רשת (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "רשת (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "הגדרת NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "נא לספק את שם המארח ואת תיקיית מאגר NFS שלך" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "שם המארח חסר" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "על כל תיקייה להתחיל עם \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "שם המארח של עיגון ה-NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "תיקייה" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "תוספים" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"אין אפשרות למצוא קובץ המכיל רשימת חבילות במקור זה. נא לוודא שהכתובת תקינה." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "כדאי להפעיל את \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" מכילה תוכנה שאינה חופשית.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "מאגר זה מספק עדכוני חבילות למאגר \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "מתבצע חיפוש חבילות שכבר הותקנו..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "מתבצע איתור החבילות לשדרוג..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "מתבצעת הסרת חבילות לפני השדרוג..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"החבילות הבאות יוסרו כדי לאפשר את עדכון המערכת: %s\n" +"\n" +"\n" +"להסיר חבילות אלו?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "שגיאה בקריאת הקובץ %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "שמות הכונן/ים הבאים שונו:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (השם הקודם הוא %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "רשת" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "נא לבחור מאגר" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "הקובץ כבר קיים. לדרוס אותו?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "הגישה נדחתה" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "שם NFS לא-תקין" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "מאגר לא תקין %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "לא ניתן לעשות צילומי מסך לפני החלוקה למחיצות" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "אחרי ההתקנה, ניתן למצוא את צילומי המסך תחת %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "התקנה" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "הגדרה" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "חובה לפרמט גם את %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"חלק מהחומרה במחשב שלך זקוקה למנהלי התקנים ״קנייניים״ כדי לפעול.\n" +"ניתן למצוא מידע עליהם בכתובת: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "מאתחל את שירותי הרשת" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "מוריד את שירותי הרשת" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "נא להמתין, הקובץ מתקבל" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "אין אפשרות להוסיף את אמצעי ההתקנה" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "מספר חבילות על הכוננים מועתקות לשימוש עתידי" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "העתקה מתבצעת" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "חובה" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "עם חשיבות" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "מעולה מאוד" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "מעולה" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "אולי" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "אין מידע ב-xml למקור \"%s\", תוצאה חלקית בלבד עבור החבילה %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "ללא תיאור" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"לא ניתן להתקין חלק מהחבילות המבוקשות על ידי %s:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "אירעה שגיאה:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "אירעה שגיאה חמורה: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "לא לשאול שוב" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d העברות ההתקנה נכשלו" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "התקנת החבילות נכשלה:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "תחנת עבודה" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "תחנת עבודה משרדית" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"תכניות למשרד: מעבדי תמלילים (LibreOffice Writer, Kword), גיליונות אלקטרונים " +"(LibreOffice Calc, Kspread), מציגי PDF, ועוד" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "תחנת משחקים" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "תכניות לבידור: ארקייד, לוח, אסטרטגיה, ועוד" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "תחנת מולטימדיה" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "תכניות להשמעה או עריכה של קול ווידאו" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "תחנת אינטרנט" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"ערכת כלים לקריאה וכתיבת דוא\"ל וחדשות (pine, mutt, tin..) ולגלישה באינטרנט" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "מחשב רשת (לקוח)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "לקוחות לפרוטוקולים שונים כולל ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "כלים להקלת ההגדרה של מחשבך" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "כלי מסוף" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "עורכים, מעטפות, כלי קבצים, מסופים" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "פיתוח" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "ספריות, תכניות וגם קבצים לפיתוח ב־C וב־C++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "תיעוד" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "ספרים ומדריכים לשימוש בלינוקס ותכנה חופשית" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. תמיכה ביישומי צד שלישי" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "שרת רשת" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "עבודה בקבוצה" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "שרת Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "חומת אש/נתב" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "הגנת המערכת בעת חיבור לאינטרנט" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "דואר/קבוצות דיון" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "שרת דואר Postfix, שרת קבוצות דיון Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "שרת תיקייה" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "שרת FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "שרת שמות מתחם ומידע רשת" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "שרת שיתוף קבצים ומדפסות" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "שרת NFS, שרת Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "מסד נתונים" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "שרת מסד נתונים MariaDB או PostgreSQL" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "דואר" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "שרת דואר Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "שרת מסד נתונים MariaDB או PostgreSQL" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "שרת מחשב רשת" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "שרת NFS, שרת SMB, שרת פרוקסי, שרת מתווך, שרת ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "סביבה גרפית" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "סביבת שולחן העבודה Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "סביבת שולחן עבודה פופולרית וקלה לשימוש עם מגוון יישומים נלווים" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "סביבת העבודה GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "סביבת שולחן עבודה פופולרית וקלה לשימוש עם מגוון יישומים נלווים" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "סביבת שולחן העבודה Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "סביבת שולחןהעבודה MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "סביבת שולחןהעבודה Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "סביבה גרפית המבוססת על GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "שולחן העבודה LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "שולחן העבודה הקליל בהסבה ל־QT מהדור הבא" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "שולחן העבודה Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "שולחן העבודה LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "סביבות עבודה אחרות" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "עזרים" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "שרת SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "שרת הגדרה תצורה מרחוק Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "כלי הגדרת וניטור רשת" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "צג, כלי ניטור, בקרת תהליכים, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "אשפי Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "אשפים להגדרת השרת שלך" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"חלה תקלה, אך איני יודע איך לפתור אותה.\n" +"המשך הפעולה הינו באחריותך בלבד." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"מספר חבילות חשובות לא הותקנו כהלכה.\n" +"ייתכן וישנה בעיה בכונן התקליטורים או בתקליטור ההתקנה.\n" +"יש לבדוק את תקליטור ההתקנה במחשב מותקן באמצעות \"rpm -qpl media/main/*.rpm" +"\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "כניסה לשלב „%s”\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s התקנה %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> בין רכיבים" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "שרת Xorg מופעל לאט. נא להמתין..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "בחירת מאגר" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "התקנת %s שולחן העבודה של Plasma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "התקנת %s שולחן העבודה GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "התקנה מותאמת אישית" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "שולחן העבודה Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "שולחן העבודה GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "שולחן עבודה בהתאמה אישית" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "הנה תצוגה מקדימה של שולחן העבודה %s" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "יש ללחוץ על התמונה כדי להגדיל את התצוגה המקדימה" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "בחירת קבוצת חבילות" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "בחירת חבילות יחידות" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "ביטול בחירת הכול" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "גודל כולל: %d / %d מ״ב" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "גרסה: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "גודל: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d ק״ב\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "חשיבות: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "אי אפשר לבחור/לבטל את החבילה הזו" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "בגלל שחסר %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "עקב תלות שלא מולאה %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "קידום %s בניסיון" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "על מנת לשמור %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "אי אפשר לבחור בחבילה זו מכיוון שלא נותר מספיק מקום פנוי להתקינה" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "החבילות הבאות עומדות להיות מותקנות" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "החבילות הבאות עומדות להיות מוסרות" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "זוהי חבילה בסיסית, אי אפשר לבטל את בחירתה" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "אין אפשרות לבטל חבילה זו מכיוון שהיא כבר מותקנת" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "לא ניתן לבטל את בחירת חבילה זו, חובה לשדרג אותה" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "הראה חבילות שנבחרו באופן אוטומטי" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "התקנה" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "טעינת/שמירת אזור נבחר" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "עדכון החבילות הנבחרות" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "התקנה חסכונית" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "ניהול תוכנה" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "נא לבחור את החבילות שברצונך להתקין" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "התקנה" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "ללא פרטים" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "הזמן שנותר:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(מתבצע שיערוך...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d חבילה" +msgstr[1] "%d חבילות" +msgstr[2] "%d חבילות" +msgstr[3] "%d חבילות" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "סיכום" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "הגדרה" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "לא מוגדר" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"מאגרי ההתקנה שלהלן נמצאו.\n" +"אם ברצונך לדלג על כמה מהם, ניתן לבטל את סימונם כעת." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"ניתן להעתיק את תכולת התקליטורים לכונן הקשיח לפני תחילת ההתקנה.\n" +"אם אפשרות זו מופעלת, ההתקנה תמשיך מהכונן הקשיח, וכל החבילות מתקליטורי ההתקנה " +"יהיו זמינות אחרי סיום ההתקנה מהכונן הקשיח." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "העתקת תקליטורים שלמים" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "אירעה שגיאה" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "נא לבחור את פריסת המקלדת שלך" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "להלן רשימת המקלדות הזמינות המלאה:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "התקנה/שדרוג" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "התקנה או שדרוג?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "התקנה" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "שדרוג %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "מפתח הצפנה עבור %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "ביטול ההתקנה, הפעלת המערכת מחדש" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "התקנה חדשה" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "שדרוג התקנה קודמת (לא מומלץ)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"יש להחליף את התקליטור!\n" +"נא להכניס את התקליטור בשם \"%s\" לכונן וללחוץ על אישור כשסיימת.\n" +"אם אינו ברשותך, יש ללחוץ על ביטול כדי למנוע התקנה מתקליטור זה." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "מתבצע חיפוש אחר חבילות זמינות..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "למערכת שלך אין מספיק שטח פנוי להתקנה או לשדרוג (%d מ״ב > %d מ״ב)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"עליך לבחור באם לטעון או לשמור את בחירת החבילות.\n" +"מבנה הקובץ זהה לקובץ auto_install הנוצר באופן אוטומטי." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "טעינה" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "שמירה" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "קובץ לא-תקין" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "בחירת שולחן עבודה" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "אפשר לבחור את פרופיל שולחן העבודה לתחנת העבודה שלך." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "הגודל הנבחר גדול יותר מהמקום הזמין" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "סוג ההתקנה" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"לא נבחרה אף קבוצה של חבילות.\n" +"נא לבחור את ההתקנה המינימלית שברצונך לבצע:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "עם סביבה גרפית (X)" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "להתקין את החבילות המומלצות" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "עם תיעוד בסיסי (מומלץ!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "התקנה מינימלית אמיתית (בייחוד לא urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "השדרוג בהכנות..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "ההתקנה בהכנות" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "החבילה %s בהליכי התקנה" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "הייתה שגיאה בסידור החבילות:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "להמשיך בכל זאת?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "ניסיון חוזר" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "דילוג על חבילה זו" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "דילוג על כל החבילות ממקור \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "חזרה לבחירת מאגרים וחבילות" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "הייתה שגיאה בהתקנת החבילה %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "הגדרה שלאחר ההתקנה" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "נא לוודא שהמאגר לעדכוני המודולים נמצא בכונן %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "עדכונים" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "כעת אפשר להגדיר את המאגרים המקוונים." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "מאפשר לך להתקין עדכוני אבטחה." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"להגדרת המאגרים הללו, יש צורך בחיבור תקין לאינטרנט.\n" +"\n" +"להגדיר את מאגרי העדכון?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "החבילות הבאות עומדות להיות מותקנות" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "לנסות שוב?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "הוספת המאגרים נכשלה" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"שלב זה מאפשר לך להוריד ולהתקין חבילות עדכון. חבילות אלה עודכנו לאחר שחרור " +"ההפצה,\n" +"ועשויות להכיל עדכוני אבטחה ו/או עדכוני תוכנה חשובים.\n" +"\n" +"להורדת חבילות אלה נדרש חיבור אינטרנט עובד. לעדכן את המערכת בשלב זה?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s על %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "חומרה" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "כרטיס קול" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "ממשק גרפי" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "רשת ואינטרנט" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "שרתים מתווכים" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "מוגדר" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "רמת אבטחה" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "חומת אש" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "פועל" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "מנותק" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "לא הוגדר ממשק גרפי (X). לבחור אפשרות זו?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "תכנית ההפעלה הראשונית בהכנות..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "יש להתאזר בסבלנות, זה עלול לקחת זמן..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "ברמת אבטחה זו, הגישה לקבצים במחיצת Windows תוגבל למנהל בלבד." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "נא להכניס תקליטון ריק לכונן %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "נוצר תקליטון להתקנה אוטומטית..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"חלק מהשלבים לא הושלמו.\n" +"\n" +"לצאת עכשיו?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "ברכות" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "הפעלה מחדש" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "שפה" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "המקמה" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "רישיון" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "עכבר" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "זיהוי כונן קשיח" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "סוג התקנה" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "מקלדת" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "אבטחה" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "חלוקה למחיצות" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "תבניות" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "בחירת חבילות" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "התקנה" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "משתמשים" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "מנהל אתחול" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "הגדרת X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "סיכום" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "שירותים" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "עדכונים" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "יציאה" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "הכתובת של אתר המַּראָה?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "על הכתובת להתחיל עם ftp:// או http://" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "יש לבחור אתר מראָה לקבלת החבילות דרכו" diff --git a/perl-install/install/share/po/hi.po b/perl-install/install/share/po/hi.po new file mode 100644 index 000000000..e12aaf06e --- /dev/null +++ b/perl-install/install/share/po/hi.po @@ -0,0 +1,1644 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Panwar108 <caspian7pena@gmail.com>, 2020 +# धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>, 2003-2004 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2020-07-24 16:08+0000\n" +"Last-Translator: Panwar108 <caspian7pena@gmail.com>\n" +"Language-Team: Hindi (http://www.transifex.com/MageiaLinux/mageia/language/" +"hi/)\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "डिरेक्ट्री" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "पहिले से संसाधित पैकेजों को देखा जा रहा है..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "उन्नयन के लिये पैकेजों को खोजा जा रहा है..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"आपके तंत्र को अपग्रेड करने के लिए निम्नलिखित पैकेजों को हटाना होगा: %s\n" +"\n" +"\n" +"क्या वास्तव में इन पैकेजों को हटाना चाहते है?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%s संचिका को पढ़ने में त्रुटि" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "एचटीटीपी" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "एफटीपी" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "एनएफ़एस" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "नेटवर्क" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "अनुमति नहीं है" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "विभाजनीकरण के पूर्व स्क्रीन-चित्र-माला को नहीं लिया जा सकता है" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "%s में संसाधन के उपरान्त स्क्रीन चित्र-माला उपलब्ध होगी" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "संरचना" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "आपको %s को भी एकसार करना चाहिए" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"आपके कम्प्यूटर पर स्थित कुछ हार्डवेयरों कार्य करने के लिए ``स्वामिक'' चालकों की आवश्यकता है " +"।\n" +"आप इनके बारे में कुछ सूचना उपरोक्त पर पा सकते है: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "नेटवर्क को लाया जा रहा है" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "नेटवर्क को लाया जा रहा है" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "कॉपी किया जा रहा है" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "होना चाहिए" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "महत्वपूर्ण" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "बहुत अच्छा" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "बहुत अच्छा" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "हो सकता है" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "कोई वर्णन नहीं" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "एक त्रुटि हो गयी है" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "एक घातक त्रुटि घटित हुई है: %s " + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d संसाधन क्रिया-कलाप असफ़ल" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "कार्यकेंद्र" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "ऑफ़िस कार्यकेन्द्र" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "खेल स्टेशन" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "मनोरंजक कार्यक्रम: आरकेड, बोर्ड, व्यूह-रचना, इत्यादि " + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "मल्टीमीडीया केन्द्र" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "ध्वनि और वीडीयो के खेलने वाले/संपादन करने वाले कार्यक्रम" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "इन्टरनेट केन्द्र" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"विपत्र और समाचारों को पढ़ने और भेजने के लिए (मट, टिन...) और वेब को ब्राउज़ करने के लिए " +"औज़ारों का समूह" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "नेटवर्क कम्प्यूटर (ग्राहक)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "एस०एस०एच० को शामिल करते हुए विभिन्न प्रोटोकॉलों के लिए ग्राहक" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "आपके कम्प्यूटर की संरचना कार्य को सहज बनाने हेतु अनेक औजार" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "कन्सोल के औज़ार" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "अनेकों संपादक, कोश, संचिका औजार, टर्मिनल" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "विकास" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "सी और सी++ विकास लेखागार, कार्यक्रम और इन्क्लूड संचिकायें" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "प्रलेखन" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "लिनक्स और मुक्त सॉफ़्टवेयर पर किताबें और कैसे-करेंअस्तकें" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "एल०एस०बी०" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "लिनक्स मानकीकरण आधार ! त्रितीय पक्ष कार्यक्रमों को समर्थन" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "वेब सर्वर" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "ग्रुपवेयर" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "कोलाब सर्वर" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "अग्नि-भीतिका/रूटर" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "इन्टरनेट गेटवे" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "एफटीपी सर्वर" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "डाटाबेस" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "वेब/एफ़०टी०पी०" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "आपाचे, प्रो-एफ़०टी०पी०डी०" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "विपत्र" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "पोस्टफ़िक्स विपत्र सर्वर" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "पोस्टग्रीसीक्यूअल या माईसीक्यूअल डाटाबेस सर्वर" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "नेटवर्क कम्प्यूटर सर्वर" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "एन०एफ़०एस० सर्वर, एस०एम०बी० सर्वर, प्रोक्सी सर्वर, एस०एस०एच० सर्वर" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "सचित्र वातावरण" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "के डेस्कटाप वातावरण, मूलभूत सचित्र वातावरणसंलग्न औजारों के एक समूह के साथ" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "गनोम कार्यकेन्द्र" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"एक सचित्र वातावरण, उपयोगकर्ता-मित्रवत कार्यक्रमों के समुच्चय और डेस्कटाप औजारों के साथ" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "अन्य सचित्र डेस्कटाप" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "यूटिलिटीज़" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "एसएसएच सर्वर" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"एक त्रुटि उत्पन्न हो गयी है, परन्तु मुझे ज्ञात नहीं है कि इसे भली-भांति किस प्रकार से ठीक " +"किया जायें ।\n" +"अपने जोखिम पर जारी रहें । " + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"कुछ महत्वपूर्ण पैकेज भलीभांति संसाधित नहीं हो पायें । \n" +"या तो आपकी सीडीरॉम-ड्राइव या फ़िर आपकी सीडीरॉम खराब है ।\n" +"एक संसाधित कम्प्यूटर पर \"rpm -qpl media/main/*.rpm\" निर्देश का उपयोग करके, " +"सीडीरॉम की जाँच करें।\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "`%s' चरण में प्रवेश \n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> इकाईयों के मध्य " + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "मीडिया चयन" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME डेस्कटॉप" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "पैकेज समूह चयन" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "अलग-अलग पैकेजों का चयन" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "सभी को अचयनित करें" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "कुल आकार: %d / %d एम०बी०" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "संस्मरण: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "आकार:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d केबी\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "महत्ता: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "आप इस पैकज को चयनित/अचयनित नहीं कर सकते है" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s विलुप्त होने के कारण" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "असन्तुष्ट %s के कारण" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s को प्रोत्साहित करने का प्रयास" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s को रखने के लिए" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "आप इस पैकज का चयन नहीं कर सकते है क्योंकि और अधिक स्थान संसाधन के लिए नहीं बचा है" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "निम्नलिखित पैकजों का संसाधन होने जा रहा है" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "निम्नलिखित पैकेजों को हटाया जाने वाला है" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "यह एक अति आवश्यक पैकेज है, इसे अचयनित नहीं किया जा सकता है" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "आप इस पैकेज को अचयनित नहीं कर सकते है । इसे पहिले से ही संसाधित किया जा चुका है" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "इस पैकज को अचयनित नहीं करा जा सकता है । इसे उन्नयन किया जाना चाहिए" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "स्वतः चयनित पैकेजों को दिखायें" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "संसाधन" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "चयनित पैकेजों का उन्नयन किया जा रहा है" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "निम्नतम संसाधन" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "सॉफ़्टवेयर प्रबंधक" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "उन पैकेजों का चयन करें जिन्हें आप संसाधित करना चाहते है" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "संसाधन हो रहा है" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "कोई विवरण नहीं" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "सारांश" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "संरचना" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "संरचित नहीं" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "एक त्रुटि हो गयी है" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "कृपया अपने की-बोर्ड खाका का चयन करें ।" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "संसाधन/उन्नयन" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "यह एक संसाधन या एक उन्नयन है?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "संसाधन" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "उन्नयन %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s के लिए गूढ़लिखित कुँजी" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "उपलब्ध पैकेजों को खोज़ा जा रहा है..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "लोड" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "सुरक्षित" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "गनोम" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "डेस्कटॉप चयन" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "चयनित आकार उपलब्ध स्थान से ज्यादा है" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "संसाधन का प्रकार" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"आपने पैकेजों के किसी भी समूह का चयन नहीं किया है ।\n" +"कृपया कम-से-कम जितना आप चाहते है उतने संसाधन का चयन करें:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "एक्स के साथ" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "आधार-भूत प्रलेखन के साथ (संस्तुति की जाती है !)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "वास्तविक निम्नत्तम संसाधन (विशेषकर कोई यू०आर०पी०एम०आई० नहीं)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "संसाधन का निर्माण किया जा रहा है" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s पैकेज का संसाधन हो रहा है" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "पैकेजों के आदेश देने में एक त्रुटि हो गयी है:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "कुछ भी हो जारी रहा जायें?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "पुनः प्रयास करें" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "संसाधन-उपरान्त संरचना" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "उन्नयन" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "निम्नलिखित पैकजों का संसाधन होने जा रहा है" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "असफ़लता जब माध्यम को जोड़ा जा रहा था..." + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"आपको अब अपडेट किये हुए पैकेजों को डॉउनलोड करने का अवसर है । इन पैकेजों को\n" +"इस वितरण के विमोचन के उपरान्त अपडेट किया गया है । इनमें सुरक्षा या\n" +"दोष-निवारण पैबंद हो सकते है । \n" +"\n" +"इन पैकेजों को डॉउनलोड करने हेतु, आपको एक कार्यशील इन्टरनेट संबंध की \n" +"आवश्यकता होगी।\n" +"\n" +"क्या आप इन अपडेटों को संसाधित करना चाहते है ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s पर %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "हार्डवेयर" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "सांउड कार्ड" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "सचित्र इन्टरफ़ेस" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "नेटवर्क और इन्टरनेट" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "प्रोक्सियां" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "संरचित" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "सुरक्षा स्तर" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "अग्नि-भीतिका" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "सक्रिय है" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "निष्क्रिय" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "आपने एक्स को संरचित नहीं किया है । क्या आप वास्तव में ऐसा चाहते है?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "इस सुरक्षा स्तर में, विण्डो विभाजन में संचिकाओं तक पहुँच सिर्फ़ प्रबंधक को हीप्राप्त है।" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "%s में एक खाली फ़्लापी डालें" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "स्वतः संसाधन फ़्लापी का निर्माण किया जा रहा है..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"कुछ चरण सम्पूर्ण नहीं हुए है । \n" +"\n" +"क्या आप वास्तव में बाहर निकलना चाहते है?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "बधाई हो" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "रीबूट" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "भाषा" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "स्थानीयकरण" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "प्रमाण-पत्र" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "माउस" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "हार्ड ड्राइव खोज" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "की-बोर्ड" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "सुरक्षा" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "विभाजनीकरण" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "संसाधन हो रहा है" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "उपयोगकर्ताओ" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "बूटलोडर" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "एक्स को संरचित करें" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "सारांश" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "सेवायें" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "उन्नयन" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "निकास" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "एक मिरर का चयन करें जहाँ से पैकेजों को प्राप्त करना है" diff --git a/perl-install/install/share/po/hr.po b/perl-install/install/share/po/hr.po new file mode 100644 index 000000000..738f091cc --- /dev/null +++ b/perl-install/install/share/po/hr.po @@ -0,0 +1,1671 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Ivica Kolić <ikoli@yahoo.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Ivica Kolić <ikoli@yahoo.com>\n" +"Language-Team: Croatian (http://www.transifex.com/MageiaLinux/mageia/" +"language/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Pridružite nam se!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Vaš izbor!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Uredski alati" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Za djecu" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Za obitelj!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Za razvijatelje!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Hvala vam!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Budite slobodni!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Slijedeći medij je pronađen i biti će korišten tijekom instalacije: %s.\n" +"\n" +"\n" +"Imate li dodatni instalcijski medij za konfigurirati?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Mreža (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Mreža (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Mreža (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Direktorij mora počinjati sa \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Direktorij" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Dodatak" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Trebate omogućiti \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "%s\" sadrži neslobodni software.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Tražim pakete koje mogu nadograditi" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Uklanjam paketa prije nadogradnje..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Slijedeći paketi će biti uklonjeni da bi dozvolili nadogradnju vašega " +"sustava: %s\n" +"\n" +"\n" +"Želite li doista ukloniti ove pakete?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Greška prilikom čitanja datoteke %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Mreža" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Molim izaberite medij" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Pristup odbijen" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Ne mogu napraviti screenshotove prije particioniranja" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Screenshotovi će biti raspoloživi poslije instalaciju u %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalacija" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Postavke" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Morate također formatirati %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Neki hardware na vašem računalu treba ``vlasničke'' upravljačke programe\n" +"kako bi proradio. Možete naći više informaciju o tome na: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Podižem mrežu" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Onemogućujem mrežu" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Molim pričekajte, primam datoteku" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "nije moguće dodati medij" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopiram neke pakete na diskove za buduću uporabu" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiranje u tijeku" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "potrebno" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "važno" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "vrlo lijepo" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "lijepo" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "možda" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Bez opisa" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Došlo je do greške:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Nastupila je kobna pogreška: %s. " + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Ne pitaj ponovo" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Instalacija paketa nije uspjela:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Radna stanica" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Uredska radna stanica" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Uredski programi: tekst procesori (LibreOffice Writer, Kword), tablični " +"kalkulatori (LibreOffice Calc, Kspread), pdf preglednici, itd" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Igračka radna stanica" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Zabavni programi: arkade, ploče, strategije, itd" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedijska stanica" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Zvučni i video svirački/uređivački programi" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet stanica" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Mrežno računalo (klijent)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klijenti za razne protokole uključujući ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Alati za lako podešavanje vašeg računala" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konzolni Alati" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Uređivači, ljuske, datotečni alati, terminali" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Razvoj" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C i C++ razvojne biblioteke, programi i uključujuće datoteke" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentacija" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Knjige i Howto-i o Linux-u i slobodnom software-u" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Posljužitelj weba" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab poslužitelj" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Vatrozid/Ruter" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Pošta/Novosti" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix mail poslužitelj, Inn news poslužitelj" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Poslužitelj imenika" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP postužitelj" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Ime Domene i Mrežni Informacijki Poslužitelj (NIS)" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Baza podataka" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache i Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Pošta" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix poslužitelj pošte" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL ili MariaDB poslužitelj baza" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Mrežni računalni poslužitelj" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS poslužitelj, SMB poslužitelj, Proxy poslužitelj, SSH poslužitelj" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafičko Okružje" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Radno Okružje, osnovno grafičko okružje sa kolekcijom pripadajućih alata" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gnome radna stanica" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Grafička okružja sa korisnički prijateljskim skupom aplikacija i alatima za " +"radno okružje" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Grafičko okruženje bazirano na GNOME-u" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt radno okruženje" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE radno okruženje" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Lagano grafičko okruženje" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Druga grafička radna okružja" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, itd." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Pomoćni programi" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH poslužitelj" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia čarobnjaci" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Čarobnjaci za podešavanje poslužitelja" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Dogodila se greška, ali neznam kako s njom lijepo rukovati.\n" +"Nastavite dalje na vlastiti rizik." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Neki važni paketi nisu se instalirali pravilno.\n" +"Ili je vaš cdrom pogon ili cd medij u defektu.\n" +"Provjerite cdrom na instaliranom računalu koristeći \"rpm -qpl media/main/*." +"rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Pokrećem korak `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s instalacija %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> između elemenata" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Vaš sustav je slab na resursima. Možete imati nekih problem prilikom\n" +"instalacije %s-a. Ukoliko se to desi, možete probati tekstualnu\n" +"instalaciju. Za to, pritisnite `F1' kada podižete CDROM, i unesite `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Odabir medija" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Instaliraj %s Plasma radno okruženje" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Install %s GNOME radno okruženje" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Prilagođena instalacija" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma radno okruženje" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME radno okruženje" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Prilagođeno radno okruženje" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Odabir grupe paketa" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Individualan odabir paketa" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Odselektiraj sve" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Ukupna veličina: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Inačica: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Veličina: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Značaj: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Ne možete označiti/odznačiti ovaj paket" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "zbog nezadovoljavajućeg %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "odabirem %s izabiranjem datoteka" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "kako bi se zadržalo %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Ne možete označiti ovaj paket budući da nema dovoljno mjesta gdje ga se može " +"instalirati" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Slijedeći paketi će biti instalirani" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Slijedeći paketi će biti uklonjeni" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Budući da je ovo obvezni paket ne možete ga odznačiti" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Ne možete odznačiti ovaj paket budući da je već instaliran" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Ne možete odznačiti ovaj paket budući da ga treba nadograditi" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Prikaži automatski odabrane pakete" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instaliraj" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Dograđujem izbor paketa" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimalna instalacija" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Upravitelj Softwareom" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Odaberite pakete koje želite instalirati" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instaliram" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Preostalo vrijeme:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paklet" +msgstr[1] "%dpaketa" +msgstr[2] "%d paketa" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Sažetak" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Podešavanje" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nije podešeno" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Slijedeći instalacijski mediji su pronađeni.\n" +"Ako želite preskočiti nekog od njih, odzančite ih sada." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Pojavila se greška" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Molim, izaberite raspored tipkovnice" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Lista svih dostupnih tipkovnica:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instaliraj/Nadogradi" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Je li ovo instalacija ili nadogradnja?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instaliraj" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Nadogradnja %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Otkaži instalaciju, ponovo podigni sustav" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nova instalacija" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Nadogradi prethodnu instalaciju (ne preporuča se)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Instalacijski program je otkrio da vaš Linux sustav ne možebiti\n" +"sigurno nadograđen na %s.\n" +"\n" +"Preporuča se nova instalacija koja će zamijeniti prethodnu.\n" +"\n" +"Upozorenje: napravite sigurnosnu kopiju vaših osobnih podataka prije nego " +"izaberete \"Nova\n" +"instalacija\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Podešavam CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Tražim dostupne pakete" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Vaš sustav nema dovoljno prostora za instalaciju ili nadogradnju (%dMB > " +"%dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Učitaj" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Spremi" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Odabir radnog okruženja" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Izabrana veličina je veća nego raspoloživ prostor" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tip instalacije" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Niste izabrali niti jednu grupu paketa\n" +"Izaberite minimalnu instalaciju ako želite" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Sa X-ima" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Instaliraj preporučene pakete" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Sa osnovnom dokumentacijom (preporučeno!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Stvarno malena instalacija (posebice bez urpmia)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Pripremam nadogradnju..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Pripremam instalaciju" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instaliram paket %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Javila se greška prilikom sortiranja paketa:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Da ipak nastavim?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Pokušaj ponovno" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Preskoči ovaj paket" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Preskoči sve pakete sa medija \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Vratite se natrag na medij i izbor paketa" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Postava nakon instalacije" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Nadogradnje" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Slijedeći paketi će biti instalirani" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Pokušati ponovno?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Provjeravam ovisnosti..." + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s na %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Sklopovlje" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Zvučna kartica" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafičko sučelje" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Mreža i Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "podešeno" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Sigurnosna Razina" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Vatrozid" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktivirano" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "onemogućeno" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Niste podesili X? jeste li sigurni da to doista želite?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Budite strpljivi, ovo može potrajati..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Umetnite praznu disketu u pogon %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Pravim auto instalacijsku disketu" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Niste završili sve korake.\n" +"\n" +"Želite li zaista završiti?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Čestitamo, pobijedili ste!" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Ponovno pokretanje sustava" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Jezik" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalizacija" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licenca" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Miš" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Otkrivanje hard diskova" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tipkovnica" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sigurnost" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Particioniranje" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instaliram" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Korisnici" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Program za pokretanje sustava" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Podesi X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Sažetak" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servisi" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Nadogradnje" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Izađi" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL zrcala?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL mora počinjati sa ftp:// ili http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Kontaktiram %s web site za dobivanje popisa raspoloživih mirrora" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Izaberite mirror sa kojeg želite skinuti pakete" diff --git a/perl-install/install/share/po/hu.po b/perl-install/install/share/po/hu.po new file mode 100644 index 000000000..bbe0bd763 --- /dev/null +++ b/perl-install/install/share/po/hu.po @@ -0,0 +1,1726 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Arpad Biro <biro.arpad gmail>, 2000,2003-2007 +# Balzamon, 2016 +# Balzamon, 2016 +# alephlg <aleph@mandriva.org>, 2007-2009 +# Laszlo Espadas, 2017 +# Tamas Szanto <tszanto@mol.hu>, 2001 +# Zoltán Siposs <zoltan.siposs@gmail.com>, 2015 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Hungarian (http://www.transifex.com/MageiaLinux/mageia/" +"language/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Csatlakozzon!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Legyen az Öné!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Az Ön választása!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Irodai eszközök" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Otthoni szórakoztatás" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Gyerekeknek" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "A családnak!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Fejlesztőknek!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Köszönjük!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Legyen szabad!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Van további kiegészítő adathordozó?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"A telepítő a következő adathordozókat találta - ezeket fogja használni a " +"telepítéshez: %s.\n" +"\n" +"\n" +"Van beállítandó kiegészítő telepítési adathordozó?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Hálózat (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Hálózat (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Hálózat (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-beállítás" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Adja meg az NFS-adathordozó gépnevét és könyvtárát" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Gépnév hiányzik" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "A könyvtárnak \"/\" jellel kell kezdődnie" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Az NFS-csatolás gépneve?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Könyvtár" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Kiegészítő" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "A tükörkiszolgálón nem található fejléclista" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core tároló" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted tároló" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nem szabad tároló" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"A számítógépben található néhány eszköznek szüksége van nem szabad firmware-" +"re annak érdekében, hogy a nyílt forrású meghajtóprogramok működhessenek." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "\"%s\" engedélyezése szükséges." + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" +"\"%s\" a rendszer és az alkalmazások különböző összetevőit tartalmazza." + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "A \"%s\" nem szabad szoftvereket tartalmaz.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Különböző eszközök működéséhez szükséges firmware-ket is tartalmaz (pl. ATI/" +"AMD videokártyák, hálózati kártyák, RAID vezérlők,...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" olyan szoftvereket tartalmaz, amelyek a szoftver-szabadalmak miatt " +"egyes országokban nem terjeszthetők." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"\"%s\" tárolóból származó szoftvereket is tartalmaz, melyek további " +"képességekkel lettek újrafordítva." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Itt lehet további adathordozókat engedélyezni." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Ez az adatforrás frissítőcsomagokat tartalmaz a \"%s\" számára." + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "A már telepített csomagok vizsgálata..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "A frissítendő csomagok keresése..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Csomagok eltávolítása a frissítés előtt..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"A rendszerfrissítés érdekében a következő csomagok el lesznek távolítva: %s\n" +"\n" +"\n" +"Szeretné eltávolítani ezeket a csomagokat?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Hiba a(z) %s fájl olvasása közben" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "A következő lemezek át lettek nevezve:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (korábbi név: %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Hálózat" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Válasszon ki egy adatforrást" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "A fájl már létezik. Felülírja?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Hozzáférés megtagadva" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Helytelen NFS-név" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "\"%s\": érvénytelen adatforrás" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Particionálás előtt nem készíthetők képernyőfelvételek" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "A képernyőfelvételek a telepítés után itt lesznek elérhetők: %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Telepítés" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Beállítás" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Formázni kell ezt is: %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"A gép bizonyos hardverelemei speciális meghajtóprogramot igényelnek.\n" +"Ezekről itt található információ: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "A hálózatkezelés elindítása" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "A hálózatkezelés leállítása" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Kérem várjon, fájl betöltése" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "sikertelen a csomagforrás hozzáadása" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Bizonyos csomagok lemezre másolása későbbi használatra" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Másolás folyamatban" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "nagyon fontos" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "fontos" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "erősen ajánlott" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "ajánlott" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "tetszőleges" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Csomaginformációk olvasása az XML meta-adatokból..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Nincs xml információ a \"%s\" adatforráshoz, a %s csomagról csak részleges " +"információit sikerült szerezni." + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nincs leírás" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"A(z) %s által kért bizonyos csomagok nem telepíthetők:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Hiba lépett fel:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Végzetes hiba történt: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Ne kérdezze mégegyszer" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d telepítési művelet nem sikerült" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Sikertelen csomagtelepítések:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Munkaállomás" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Irodai munkaállomás" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Irodai programok: szövegszerkesztők (LibreOffice Writer, KWord), " +"táblázatkezelők (LibreOffice Calc, KSpread), PDF-megjelenítők, ..." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Játékgép" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Játékprogramok: lövöldözős, táblás, stratégiai, ..." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimédiás munkaállomás" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Lejátszó- és szerkesztőprogramok hang- és videóanyagokhoz" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internetes munkaállomás" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Eszközök levelezéshez, hírkezeléshez (mutt, tin, ...) és a web böngészéséhez" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Hálózati számítógép (kliens)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Kliensprogramok különféle protokollokhoz (például: ssh)" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Segédprogramok a számítógép beállításához" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Parancssori eszközök" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Szövegszerkesztők, parancsértelmezők, fájlkezelők, terminálprogramok" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Fejlesztés" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C/C++ fejlesztőkönyvtárak, programok és include-fájlok" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentáció" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Könyvek és HOGYAN-ok a Linuxról és a szabad szoftverekről" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Külső társaságok alkalmazásainak támogatása." + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Webkiszolgáló" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Csoportmunka-alkalmazás" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab kiszolgáló" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Tűzfal/útválasztó (router)" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet átjáró" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Levelezés/hírek" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix email kiszolgáló, Inn hírkiszolgáló" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Címtárkiszolgáló" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP kiszolgáló" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS és NIS kiszolgáló" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Fájl- és nyomtatómegosztási kiszolgáló" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS kiszolgáló, Samba kiszolgáló" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Adatbázis" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL és MariaDB adatbázis kiszolgáló" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Levelezés" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix email kiszolgáló" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL vagy MariaDB adatbázis kiszolgáló" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Kiszolgáló hálózati számítógépekhez" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS, SMB, proxy és SSH kiszolgáló" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafikus környezet" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma Munkaállomás" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"A K Desktop Environment - az alapvető grafikus környezet - az ahhoz tartozó " +"eszközökkel együtt" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME munkaállomás" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Grafikus környezet felhasználóbarát alkalmazásokkal és segédprogramokkal" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Egy könnyedebb grafikus környezet felhasználóbarát alkalmazásokkal és " +"asztali eszközökkel." + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE munkaállomás" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon munkaállomás" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Egy GNOME-on alapuló grafikus környezet" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt Munkaasztal" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" +"A pehelysúlyú munkaasztal-környezet új generációs, QT-ra portolt változata" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Egy könnyű, gyors grafikus környezet" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE munkaasztal" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Egy könnyű, gyors grafikus környezet" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Más grafikus környezetek" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, stb." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Segédprogramok" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH kiszolgáló" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin kiszolgáló távoli beállításhoz" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Hálózati programok/hálózatfigyelés" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Figyelőeszközök, folyamatszámlázás, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia varázslók" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Varázslók a kiszolgáló beállítására" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Hiba történt, de nem lett megfelelően lekezelve.\n" +"Csak akkor lépjen tovább, ha biztos abban, hogy ez nem fog gondot okozni." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Néhány fontos csomag telepítése nem sikerült.\n" +"Ez azt jelenti, hogy a CD-meghajtó vagy a CD hibás.\n" +"A CD-t egy, már feltelepített gépen a következő\n" +"parancs segítségével tesztelheti le:\n" +"\"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "A következő lépés: \"%s\"\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s telepítés %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt+Tab> lépegetés" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Az Xorg kiszolgáló lassan indul. Kérem várjon..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"A rendszer gyenge erőforrásokkal rendelkezik. Előfordulhat, hogy problémái\n" +"lesznek a %s telepítésével. Ha így történik, próbálkozzon\n" +"szöveges módú telepítéssel: CD-ről való rendszerindítást követően nyomjon\n" +"\"F1\"-et, majd írja be azt, hogy \"text\"." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Adathordozó kiválasztása" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Plasma Desktop %s telepítése" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "A %s GNOME asztalának telepítése" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Egyéni telepítés" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma Desktop" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME munkaasztal" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Egyéni munkaasztal" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Így fog kinézni a '%s' munkaasztala." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Kattintson a képre, ha nagyobb méretben szeretné megtekinteni" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Csomagcsoportok kiválasztása" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Csomagok egyedi kiválasztása" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Kijelölések megszüntetése" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Összméret: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Verzió: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Méret: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Fontosság: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Ez a csomag nem jelölhető ki illetve nem törölhető a kijelölése" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "\"%s\" hiánya miatt" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "\"%s\" igényei miatt" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "a legalkalmasabb \"%s\" keresése" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "\"%s\" megtartása érdekében" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Nem választhatja ki ezt a csomagot, mert nincs elég hely a merevlemezen." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "A telepítő a következő csomagokat fogja telepíteni:" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "A telepítő a következő csomagokat távolítja el:" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ez egy kötelező csomag, nem lehet megszüntetni a kijelölését" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Nem törölhető ennek a csomagnak a kijelölése, mert már telepítve van" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" +"Nem törölheti ennek a csomagnak a kijelölését. Ez a csomag frissítendő." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Automatikusan kijelölt csomagok mutatása" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Telepítés" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Kijelölés betöltése/mentése" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "A csomagkiválasztás frissítése" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimális telepítés" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Szoftverkezelés" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Válassza ki a telepítendő csomagokat" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Telepítés" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Részletek nélkül" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Hátralevő idő:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(becslés...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d csomag" +msgstr[1] "%d csomag" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Összefoglalás" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Beállítás" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nincs beállítva" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"A rendszer a következő telepítési adathordozókat találta.\n" +"Ha szeretné kihagyni valamelyiket, távolítsa el annak kijelölését." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Lehetősége van arra, hogy a CD-k tartalmát lemásolja a merevlemezre a " +"telepítés előtt.\n" +"Ez esetben a telepítés a merevlemezről folytatódik, és annak végeztével a " +"csomagok elérhetők maradnak." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Teljes CD-k másolása" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Hiba lépett fel" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Válasszon billentyűzetkiosztást" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Az elérhető billentyűzetek teljes listája:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Telepítés/frissítés" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Új telepítés vagy frissítés?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Telepítés" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Frissítés: %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Titkosítási kulcs ehhez: %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Telepítés megszakítva, a rendszer újraindul" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Új telepítés" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Előző telepítés frissítése (nem ajánlott)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"A telepítő észlelte, hogy a már meglévő Linux rendszer\n" +"nem frissíthető %s-ra.\n" +"\n" +"Javasolt új telepítést végezni a régi helyén.\n" +"\n" +"Figyelem: új telepítés előtt célszerű minden személyes dokumentumról\n" +"mentést készíteni." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "CD/DVD konfigurálása" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Cserélje ki a CD-t a meghajtóban.\n" +"Tegye be a(z) \"%s\" feliratú lemezt, és nyomja meg az \"OK\" gombot.\n" +"Ha nincs ilyen lemeze, akkor nyomja meg a \"Mégsem\" gombot, így erről a CD-" +"ről nem történik telepítés." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "A rendelkezésre álló csomagok keresése..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"A rendszerben nincs elegendő szabad hely a telepítéshez illetve frissítéshez " +"(%d MB > %d MB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Válasszon egy funkciót annak megfelelően, hogy betölteni kíván egy\n" +"csomagkijelölést vagy a jelenlegi kijelölést szeretné elmenteni.\n" +"A formátum ugyanaz, mint az automatikus telepítési fájloknál." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Terhelés" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Mentés" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Hibás fájl" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Munkaasztal kiválasztása" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Kiválaszthatja a munkaállomás asztalprofilját." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "A kijelölt összméret nagyobb, mint a rendelkezésre álló hely" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "A telepítés típusa" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Egyetlen csomagcsoportot sem jelölt ki.\n" +"Válassza ki, milyen fajta minimális telepítést szeretne." + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X telepítése" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Javasolt csomagok telepítése" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Alapvető dokumentációval (javasolt)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Valóban minimális telepítés (urpmi sincs)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Felkészülés a frissítésre..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "A telepítés előkészítése" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s csomag telepítése" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Hiba történt a csomagok rendezésekor:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Kívánja folytatni ettől függetlenül?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Újra" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Ezen csomag kihagyása" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "A(z) \"%s\" adathordozón levő összes csomag kihagyása" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Visszalépés az adathordozó és csomagválasztáshoz" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Hiba történt a(z) %s csomag telepítésekor." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Telepítés utáni beállítások" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Tegye be a frissítési modulokat tartalmazó adathordozót a(z) \"%s\" " +"meghajtóba" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Frissítések" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Itt a lehetőség online csomagtárolók hozzáadására." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Ezzel lehetséges a biztonsági frissítések telepítése." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Ezen csomagtárolók beállításához működő Internet kapcsolat\n" +"szükséges.\n" +"\n" +"Beállítsuk most a frissítési tárolót?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "A telepítő a következő csomagokat fogja telepíteni:" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Ismét?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Nem sikerült felvenni az adatforrást" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Lehetősége van arra, hogy letöltse a disztribúció kiadása után frissített\n" +"csomagokat. Ez általában biztonsági javításokat és hibajavításokat jelent.\n" +"\n" +"A funkció használatához szükség van egy beállított internetkapcsolatra.\n" +"\n" +"Szeretné feltelepíteni a frissítéseket?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s ezen: %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardver" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Hangkártya" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafikus felület" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Hálózat és internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxyk" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "beállítva" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Biztonsági szint" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Tűzfal" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktiválva" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "kikapcsolva" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Az X grafikus rendszert nem állította be. Biztosan megfelel így?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "A rendszerindító memóriaképfájl előkészítése..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Egy kis türelmét kérem..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Ezen a biztonsági szinten csak a rendszergazda érheti el a windowsos " +"partíción levő fájlokat." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Tegyen egy üres floppyt a(z) \"%s\" meghajtóba" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Automatikus telepítőfloppy készítése..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"A telepítés nem teljes, mivel egyes lépések kimaradtak.\n" +"\n" +"Biztos, hogy ki akar lépni?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Gratulálunk" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Újraindítás" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Nyelv" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalizáció" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licenc" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Egér" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Merevlemez keresése" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Telepítési osztály" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Billentyűzet" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Biztonság" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partícionálás" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formázás" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Csomagok kiválasztása" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Telepítés" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Felhasználók" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Rendszerbetöltő" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Az X beállítása" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Összefoglalás" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Szolgáltatások" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Frissítések" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Kilépés" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "A tükörkiszolgáló címe?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Az URL-nek ftp:// vagy http:// előtaggal kell kezdődnie" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Kapcsolódás a %s webkiszolgálójához; az elérhető tükörkiszolgálók " +#~ "listájának lekérdezése..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Nem sikerült lekérdezni az elérhető tükörkiszolgálók listáját a %s " +#~ "webkiszolgálójától" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Válasszon ki egy tükörkiszolgálót a csomagok letöltéséhez!" diff --git a/perl-install/install/share/po/hy.po b/perl-install/install/share/po/hy.po new file mode 100644 index 000000000..97d85ac19 --- /dev/null +++ b/perl-install/install/share/po/hy.po @@ -0,0 +1,1608 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Armenian (http://www.transifex.com/MageiaLinux/mageia/" +"language/hy/)\n" +"Language: hy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Կոնֆիգուրացիա" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Ծրագրավորում" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Ձեռնարկ" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Փոստ" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" diff --git a/perl-install/install/share/po/id.po b/perl-install/install/share/po/id.po new file mode 100644 index 000000000..32be4a899 --- /dev/null +++ b/perl-install/install/share/po/id.po @@ -0,0 +1,1731 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Ahmad Ramadhana <ahmad_ramadhana@yahoo.com.sg>, 2005 +# Andy <chandy@indo.net.id>, 1999 +# Bayu Artanto <bayuart@yahoo.com>, 2005 +# erwiensamantha <erwiensamantha@gmail.com>, 2005 +# erwiensamantha <erwiensamantha@gmail.com>, 2005 +# Firdaus <dausnux@gmail.com>, 2005 +# Kelana <nk@telkom.net>, 1999 +# Kiki <kiki.syahadat@yahoo.co.id>, 2013-2015 +# Kiki <kiki.syahadat@yahoo.co.id>, 2013 +# Kiki Syahadat <kiki.syahadat@yahoo.co.id, 2012 +# Kiki <kiki.syahadat@yahoo.co.id>, 2013 +# Sofian <sofianhanafi@yahoo.com>, 2005 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Kiki <kiki.syahadat@yahoo.co.id>\n" +"Language-Team: Indonesian (http://www.transifex.com/MageiaLinux/mageia/" +"language/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Bergabunglah Bersama Kami!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Buatlah ini milik Anda!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Pilihan Anda!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Peralatan perkantoran" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Hiburan rumah" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Untuk anak-anak" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Untuk keluarga!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Untuk developer!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Terima kasih!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Bebaskan!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Apakah Anda memiliki media bantu lanjutan?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Media berikut ditemukan dan akan digunakan selama instalasi: %s.\n" +"\n" +"\n" +"Apakah Anda memiliki media instalasi bantu untuk dikonfigurasi?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Jaringan (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Jaringan (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Jaringan (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Pengaturan NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Silakan masukkan hostname dan direktori media NFS Anda" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Hostname tidak ada" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Direktori harus dimulai dengan \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Hostname dari mount NFS ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Direktori" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Media bantu" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Tidak bisa menemukan file daftar paket pada mirror ini. Pastikan lokasinya " +"benar." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Rilis" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Rilis" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Rilis" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Beberapa hardware pada komputer Anda memerlukan beberapa firmwares non free " +"agar driver free software bisa bekerja." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Anda harus menghidupkan \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" berisi beberapa bagian dari sistem dan aplikasinya" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" berisi software non free.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Juga berisi firmware yang diperlukan untuk device tertentu untuk beroperasi " +"(misal: beberapa perangkat grafis ATI/AMD, beberapa perangkat jaringan, " +"beberapa perangkat RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" berisi software yang tidak bisa didistribusikan di setiap negara " +"karena masalah paten software." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Juga berisi software dari \"%s\" yang dibangun ulang dengan kemampuan " +"tambahan." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" +"Di sini Anda bisa menghidupkan lebih banyak media jika Anda menginginkannya" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Media ini menyediakan update paket untuk media \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Melihat paket yang sudah terinstall..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Menemukan paket untuk diupgrade..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Menghapus paket sebelum upgrade..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Paket berikut akan dihapus untuk memungkinkan upgrade sistem Anda: %s\n" +"\n" +"\n" +"Apakah Anda benar-benar ingin menghapus paket ini?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Error membaca file %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Disk berikut telah diubah nama:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (sebelumnya bernama %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Jaringan" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Silakan pilih sebuah media" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "File sudah ada. Timpa file ini?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Izin ditolak" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Nama NFS salah" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Media %s rusak" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Tidak bisa membuat screenshot sebelum mempartisi" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Screenshot akan tersedia setelah install di %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalasi" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfigurasi" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Anda juga harus memformat %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Beberapa hardware pada komputer Anda memerlukan driver ``proprietari'' untuk " +"bekerja.\n" +"Anda bisa menemukan informasinya di: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Menaikkan jaringan" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Menurunkan jaringan" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Silakan tunggu, mengambil file" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "tidak bisa menambah media" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Menyalin beberapa paket pada disk untuk digunakan di kemudian hari" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Penyalinan sedang berjalan" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "harus ada" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "penting" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "sangat bagus" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "bagus" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "mungkin" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Mendapatkan informasi paket dari meta-data XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Tidak ada info xml untuk media \"%s\", hanya sebagian hasil untuk paket %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Tidak ada deskripsi" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Beberapa paket yang diminta oleh %s tidak bisa diinstall:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Sebuah error terjadi:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Sebuah error fatal terjadi: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Jangan tanya lagi" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "Transaksi instalasi %d gagal" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Instalasi paket gagal:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Workstation" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Workstation Perkantoran" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Program perkantoran: pengolah kata (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), pembaca PDF, dll" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Komputer Game" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Program hiburan: arcade, papan, strategi, dll" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Komputer Multimedia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Program untuk memutar/mengedit suara dan video" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Komputer Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Kumpulan peralatan untuk membaca dan mengirim surat dan berita (mutt, tin..) " +"dan menjelajahi Web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Komputer Jaringan (klien)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klien untuk protokol yang berbeda termasuk ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Peralatan untuk memudahkan konfigurasi komputer Anda" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Peralatan Konsol" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editor, shell, peralatan file, terminal" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Pengembangan" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Librari, program dan file yang disertakan untuk pengembangan C dan C++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentasi" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Buku dan Howto untuk Linux dan Free Software" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Dukungan aplikasi pihak ketiga" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Server Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Server Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Gateway Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Surat/Berita" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Server surat Postfix, server berita Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Server direktori" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Server FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Server Nama Domain dan Informasi Jaringan" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Server Sharing File dan Printer" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Server NFS, server Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Basis Data" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Server Basis Data PostgreSQL dan MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Surat" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Server surat Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Server basis data PostgreSQL atau MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Server Komputer Jaringan" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Server NFS, server SMB, server Proxy, server ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Lingkungan Grafis" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, lingkungan grafis dasar dengan kumpulan peralatan " +"yang menyertainya" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Workstation GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Sebuah lingkungan grafis dengan kumpulan aplikasi dan peralatan desktop yang " +"mudah digunakan" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Lingkungan grafis yang ringan dengan seperangkat aplikasi dan peralatan " +"desktop yang mudah digunakan" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Lingkungan kerja MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Lingkungan kerja Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Lingkungan grafis berbasis GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Desktop LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Port QT generasi selanjutnya dari lingkungan desktop yang ringan" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Lingkungan grafis yang cepat dan ringan" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Desktop LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Sebuah lingkungan grafis yang cepat dan ringan" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Desktop Grafis Lainnya" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, dsb" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilitas" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Server SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Server Konfigurasi Remote Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Utilitas/Monitoring Jaringan" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Peralatan monitoring, penghitungan proses, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Wizard Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Wizard untuk mengkonfigurasi server" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Terjadi error yang tidak diketahui cara yang baik untuk menanganinya.\n" +"Lanjutkan dengan resiko yang Anda tanggung sendiri." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Beberapa paket penting tidak terinstall dengan benar.\n" +"Mungkin drive cdrom atau cdrom Anda rusak.\n" +"Periksa cdrom pada komputer yang sudah terinstall menggunakan \"rpm -qpl " +"media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Memasuki langkah `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Instalasi %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> di antara elemen" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Server Xorg lambat memulai. Silakan tunggu..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Sistem Anda memiliki sumber daya yang rendah. Anda mungkin menemukan " +"beberapa\n" +"masalah instalasi %s. Jika ini terjadi, Anda bisa mencoba instalasi berbasis " +"teks.\n" +"Untuk melakukannya, tekan `F1' saat booting pada CDROM, lalu masukkan `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Pemilihan Media" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Install Desktop GNOME %s" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instalasi kustomisasi" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Desktop Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Desktop GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Desktop kustomisasi" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Ini adalah pratampil desktop '%s'." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klik pada gambar untuk melihat pratampil lebih besar" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Pemilihan Grup Paket" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Pemilihan paket individu" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Jangan pilih Semua" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Ukuran total: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versi: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Ukuran: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Penting:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Anda tidak bisa memilih/tidak memilih paket ini" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "karena %s tidak ada" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "karena %s tidak terpenuhi" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "mencoba mempromosikan %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "untuk menjaga %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Anda tidak bisa memilih paket ini karena tidak ada lagi ruang tersisa untuk " +"menginstall" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Paket berikut akan diinstall" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Paket berikut akan dihapus" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ini adalah paket wajib, tidak bisa tidak dipilih" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Anda tidak bisa tidak memilih paket ini. Ini sudah terinstall" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Anda tidak bisa tidak memilih paket ini. Ini harus diupgrade" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Tunjukkan paket terpilih secara otomatis" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Install" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Pilihan Muat/Simpan" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Mengupdate pilihan paket" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Instalasi minimal" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Manajemen Software" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Pilih paket yang ingin Anda install" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Menginstall" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Tidak ada rincian" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Waktu tersisa:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(memperkirakan...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paket" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Ringkasan" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfigurasi" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "tidak terkonfigurasi" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Media instalasi berikut telah ditemukan.\n" +"Jika Anda ingin melewati beberapa, Anda bisa tidak memilihnya." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Anda memiliki opsi untuk menyalin isi dari CD ke hard disk sebelum " +"instalasi.\n" +"Proses kemudian akan dilanjutkan dari hard disk dan paket akan tetap " +"tersedia setelah sistem terinstall." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Salin seluruh CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Sebuah error terjadi" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Silakan pilih layout keyboard Anda" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Ini adalah daftar lengkap keyboard yang tersedia:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Install/Upgrade" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Apakah ini instalasi atau upgrade?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Install" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Upgrade %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Kunci enkripsi untuk %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Batalkan instalasi, reboot sistem" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Instalasi Baru" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Upgrade instalasi sebelumnya (tidak direkomendasikan)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Installer telah mendeteksi bahwa Linux yang terinstall di sistem Anda\n" +"tidak bisa diupgrade dengan aman ke %s.\n" +"\n" +"Instalasi baru untuk menggantikan sistem lama Anda direkomendasikan.\n" +"\n" +"Peringatan : Anda harus membackup semua data pribadi Anda sebelum memilih \n" +"\"Instalasi Baru\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Ganti Cd-Rom Anda!\n" +"Silakan masukkan Cd-Rom berlabel \"%s\" ke drive Anda dan tekan Ok " +"setelahnya.\n" +"Jika Anda tidak memilikinya, tekan Batal untuk menghindari instalasi dari Cd-" +"Rom ini." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Mencari paket yang tersedia..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Sistem Anda tidak memiliki cukup ruang tersisa untuk instalasi atau upgrade " +"(%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Silakan pilih muat atau simpan pemilihan paket.\n" +"Formatnya sama dengan file yang dihasilkan auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Muat" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Simpan" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "File rusak" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Pemilihan Desktop" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Anda bisa memilih profil desktop workstation Anda." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Ukuran terpilih lebih besar dari ruang tersedia" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipe install" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Anda belum memilih grup paket apapun.\n" +"Silakan pilih instalasi minimal yang Anda inginkan:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Dengan X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Install paket-paket yang disarankan" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Dengan dokumentasi dasar (direkomendasikan!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Benar-benar instalasi minimal (terutama tanpa urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Menyiapkan upgrade..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Menyiapkan instalasi" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Menginstall paket %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Terdapat error mengurut paket:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Lanjutkan saja?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Coba lagi" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Lewatkan paket ini" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Lewatkan semua paket dari media \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Kembali ke pemilihan media dan paket" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Terdapat error menginstall paket %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Konfigurasi pasca instalasi" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Silakan pastikan bahwa media Modul Update ada di drive %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Update" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Sekarang Anda memiliki kesempatan untuk mengatur media online." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Ini memungkinkan untuk menginstall update keamanan." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Untuk mengatur media tersebut, Anda harus memiliki koneksi\n" +"internet yang bekerja.\n" +"\n" +"Apakah Anda ingin mengatur media update?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Paket berikut akan diinstall" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Coba lagi?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Kesalahan ketika menambahkan media" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Sekarang Anda memiliki kesempatan untuk mendownload paket update. Paket ini\n" +"telah diupdate setelah distribusi dirilis. Paket ini mungkin\n" +"berisi perbaikan keamanan atau bug.\n" +"\n" +"Untuk mendownload paket ini, Anda memerlukan koneksi Internet.\n" +"\n" +"Apakah Anda ingin menginstall update?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s pada %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Perangkat suara" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Antarmuka grafis" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Jaringan & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxy" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "terkonfigurasi" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Level Keamanan" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "diaktifkan" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "dimatikan" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Anda belum mengkonfigurasi X. Apakah Anda yakin menginginkan ini?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Menyiapkan program startup awal..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Harap bersabar, ini mungkin akan memakan waktu..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Pada level keamanan ini, akses ke file di dalam partisi Windows terbatas " +"pada administrator." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Masukkan floppy kosong ke drive %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Membuat instalasi otomatis floppy..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Beberapa langkah tidak selesai.\n" +"\n" +"Apakah Anda ingin keluar sekarang?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Selamat" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Reboot" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Bahasa" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalisasi" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lisensi" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mouse" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Pendeteksian hard drive" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Kelas instalasi" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Keyboard" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Keamanan" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Mempartisi" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Memformat" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Memilih paket" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Menginstall" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Pengguna" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Konfigurasi X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Ringkasan" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Layanan" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Update" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Keluar" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL dari mirror?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL harus diawali dengan ftp:// atau http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Menghubungi situs web %s untuk mendapatkan daftar mirror yang tersedia..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Gagal menghubungi situs web %s untuk mendapatkan daftar mirror yang " +#~ "tersedia" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Pilih mirror di mana Anda ingin mengambil paket" diff --git a/perl-install/install/share/po/is.po b/perl-install/install/share/po/is.po new file mode 100644 index 000000000..f291029e3 --- /dev/null +++ b/perl-install/install/share/po/is.po @@ -0,0 +1,1692 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Pjetur G. Hjaltason <pjetur@pjetur.net>, 2003,2005-2009 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Icelandic (http://www.transifex.com/MageiaLinux/mageia/" +"language/is/)\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Hefur þú einhverja aðra aukamiðla?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Eftirfarandi miðlar hafa fundist og verða notaðir við uppsetningu: %s.\n" +"\n" +"\n" +"Hefur þú einhverja aðra miðla sem þarf að stilla?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Net (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Net (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Net (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS uppsetning" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Sláðu inn vélarnafn og möppu sem inniheldur NFS miðil" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Vélarnafn vantar" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Möppunafn verður að byrja á \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Vélarnafn á NFS tengipunkti?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Mappa" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Aukalegt" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Finn ekki pakkalista-skrá á þessum spegli. Athugaðu hvort staðsetningin sé " +"rétt." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Athuga þegar uppsetta pakka..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Leita að pökkum til að uppfæra..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Fjarlægi pakka áður en uppfærsla hefst..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Eftirfarandi pakkar verða fjarlægðir til að uppfærsla takist eðlilega: %s\n" +"\n" +"\n" +"Viltu í alvöru fjarlægja þessa pakka?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Villa við lestur úr skránni %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Eftirfarandi diskar voru endurnefndir:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (áður nefnt %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Net" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Veldu miðil" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Skráin er þegar til. Skrifa yfir hana?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Aðgangi hafnað" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Rangt NFS nafn" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Gallaður miðill %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Get ekki tekið skjámyndir fyrr en disksneiðar hafa verið skilgreindar" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Skjámyndir verða tiltækar eftir uppsetningu í %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Set inn" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Stillingar" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Þú verður einnig að forsníða %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Eitthvað af vélbúnaðinum í tölvunni þinni þarfnast rekla sem eru ``ekki'' " +"opinn hugbúnaður.\n" +"Þú finnur meiri upplýsingar um þá á: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Keyri upp netið" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Keyri niður netið" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Bíðið, sæki skrá" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "get ekki bætt við miðli" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Afrita nokkra pakka á diska til notkunar síðar" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Afritun í gangi" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "verð að fá" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "áríðandi" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "mjög þægilegt" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "þægilegt" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "kannski" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Engin XML-info skrá fyrir miðil \"%s\", aðeins takmarkaðar upplýsingar fyrir " +"pakka %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Engin lýsing til" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Suma pakka sem %s þarfnast, er ekki hægt að setja inn:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Villa kom upp:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Banvæn villa kom upp: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d Innsetningarfærslur brugðust" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Innsetning pakka tókst ekki:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Vinnustöð" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Skrifstofu-vinnustöð" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Skrifstofu forrit: ritvinnsla (LibreOffice Writer, Kword), töflureiknar " +"(LibreOffice Calc, Kspread) pdf skoðarar, o.s.frv" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Leikja-(vinnu)stöð" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Leikjaforrit, skotleikir, borðleikir, herkænskuleikir og fleira" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Margmiðlunar-vinnustöð" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Spila og breyta hljóðskrám og kvikmyndum" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet-vinnustöð" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Tól og tæki til að lesa og senda póst, fréttir (mutt,tin...) og til að " +"flakka á vefnum" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Netbiðlarar" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Biðlarar fyrir ýmsar samskiptareglur þ.m.t ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Tæki til að auðvelda uppsetningu tölvunnar" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Skjától" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Ritlar, skeljar, skráatól, skjáhermar" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Forritun" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C og C++ undirforritasöfn, forrit og lýsingaskrár" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Handbækur" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Bækur og leiðbeiningar um Linux og frjálsan hugbúnað" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Stuðningur fyrir forrit þriðja aðila" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Vefmiðlari" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Hópvinnuforrit" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Miðlari" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Eldveggur/beinir" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet netgátt" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Póstur/Fréttir" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix póstþjónusta, Inn fréttaþjónusta" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Upplýsingaveita" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP Miðlari" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Nafnaþjónustur og net-upplýsingaveitur" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Skráa og prentmiðlari" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS miðlari, Samba miðlari" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Gagnagrunnar" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL og MariaDB gagnagrunns-miðlarar" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Vefur/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Póstur" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix póstþjónusta" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL eða MariaDB gagnagrunns-miðlarar" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Netþjónustur" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-þjónusta, SMB-þjónusta, Staðgengils-þjónusta, ssh-þjónusta" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Myndrænt umhverfi" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "KDE (K Desktop Environment). Gluggastjóri með safni hjálparforrita" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gnome vinnustöð" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Gluggastjóri með notendavænum forritum og skjáborðs-tólum" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE Skjáborð" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Aðrir gluggastjórar" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Tól" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH Miðlari" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin, stillingar á fjartengdri tölvu um vef" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Netforrit/Neteftirlit" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Eftirlitstól, vinna með notendur, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia Ráðgjafar" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Ráðgjafar til að stilla miðlara" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Óþekkt villa kom upp sem ekki er hægt að meðhöndla.\n" +"Haltu áfram á eigin ábyrgð." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Sumir mikilvægir pakkar voru ekki uppsettir eðlilega.\n" +"Annaðhvort er geisladiskurinn eða drifið skemmt.\n" +"Athugaðu geisladiskinn á uppsettri vél með skipuninni\n" +"\"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Byrja skref `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s uppsetning %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> milli skrefa" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg miðlari er seinn að ræsa. Bíddu við..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Ef vélin þín er vanbúin að einhverju leyti þá getur þú átt\n" +"í vandræðum með að setja upp %s.\n" +"Ef svo er, þá gætir þú reynt að nota texta-uppsetningu.\n" +"Til þess að gera það, ýttu á F1 þegar þú ræsir af\n" +"geisladisknum og sláðu síðan inn `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Val á miðlum" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Setja inn %s GNOME umhverfi" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Sérsniðin uppsetning" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME Skjáborð" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Sérsniðið Skjáborð" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Hér er forsýn af '%s' skjáborðinu." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Smelltu á myndir til að sjá stærri forsýn" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Val á pakkahóp" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Val á einstökum pökkum" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Afvelja allt" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Heildarstærð: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Útgáfa: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Stærð: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Mikilvægi: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Þú getur ekki valið/af-valið þennan pakka" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "vegna þess að %s vantar" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "vegna þess að %s er ekki uppfyllt" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "reyni að hækka vægi %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "til þess að halda %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Þú getur ekki valið þennan pakka því það er ekki nægilegt pláss" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Eftirfarandi pakkar verða settir inn" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Eftirfarandi pakkar verða fjarlægðir" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Þessi pakki verður að vera uppsettur, þú getur ekki af-valið hann" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Þú getur ekki af-valið þennan pakka hann er þegar uppsettur" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Þú getur ekki af-valið þennan pakka, það verður að uppfæra hann" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Sýna sjálfvirkt valda pakka" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Setja inn" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Sækja/Vista val" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Uppfæri val á pökkum" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Lágmarks uppsetning" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Hugbúnaðarumsýsla" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Veldu pakkana sem þú vilt setja inn" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Set inn" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Engar upplýsingar" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tími eftir:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(áætla...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pakki" +msgstr[1] "%d pakkar" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Yfirlit" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Stilla" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "ekki stillt" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Eftirfarandi uppsetningar-miðlar hafa fundist.\n" +"Ef þú vilt sleppa einhverjum af þeim, þá getur þú af-valið þá núna." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Þú getur valið að afrita innihald geisladiskanna inn á diskinn fyrir " +"uppsetningu.\n" +"Síðan mun uppsetning halda áfram frá disknum og pakkarnir verða til staðar " +"þegar kerfið er að fullu uppsett." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Afrita alla geisladiska" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Villa kom upp" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Veldu lyklaborðs-uppsetningu" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Hér er tæmandi listi af tiltækum lyklaborðum:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Innsetning/Uppfærsla" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Er þetta innsetning eða uppfærsla?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Innsetning" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Uppfæra %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Dulritunar-lykill fyrir %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Hætta við innsetningu, endurræsa kerfi" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Ný Uppsetning" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Uppfæra fyrri uppsetningu (ekki mælt með)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Skiftu um geisladisk!\n" +"Settu inn geisladisk merktan \"%s\" í diskdrifið og ýttu á \"Í lagi\" þegar " +"þú ert tilbúin(n).\n" +"Ef þú hefur ekki diskinn, ýttu þá að \"Hætta við\" til að sleppa uppsetningu " +"frá þessum diski." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Leita að tiltækum pökkum..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Það er ekki nóg laust pláss fyrir innsetningu eða uppfærslu á kerfinu þínu " +"(%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Veldu hvort eigi að sækja eða vista pakkaval.\n" +"Sniðið er það sama og á auto_install skrám." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Sækja" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Vista" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Gölluð skrá" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Val á Skjáborði" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Þú getur valið vinnustöðvar-umhverfi (skjáborð)." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Valin stærð er stærri en tiltækt pláss" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tegund uppsetningar" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Þú hefur ekki valið neina pakkahópa.\n" +"Veldu lágmarksuppsetningu sem þú vilt:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Með X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Með grunn-handbókum (mælt með!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Alger lágmarksuppsetning (ekkert urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Undirbý innsetningu" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Set inn pakka %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Það kom upp villa við að raða pökkum:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Viltu samt halda áfram?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Reyna aftur" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Sleppa þessum pakka" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Sleppa ölum pökkum af miðli \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Fara til baka í val á miðlum og pökkum" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Það kom upp villa við innsetningu pakka %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Lokastillingar" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Staðfestu að Uppfærslu-miðill sé í drifi %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Uppfærslur" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Eftirfarandi pakkar verða settir inn" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Reyna aftur?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Villa þegar miðli var bætt við" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Þú hefur nú möguleika á að sækja uppfærða pakka. Þessir pakkar\n" +"hafa verið uppfærðir eftir að dreifingin var send úr húsi.\n" +"Þeir kunna að innihalda villuleiðréttingar eða öryggisuppfærslur.\n" +"\n" +"Til að sækja þessa pakka þá verður þú að vera tengdur Internetinu.\n" +"\n" +"Viltu sækja uppfærslurnar?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s á %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Vélbúnaður" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Hljóðkort" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Myndrænt viðmót" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Staðarnet og Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Sel" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "stillt" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Öryggisþrep" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Eldveggur" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "virkt" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "óvirkt" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Þú hefur ekki sett upp X, ertu viss um að þú viljir þetta?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Verið þolinmóð þetta getur tekið nokkra stund..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Í þessu öryggisþrepi er aðgangur að Windows disksneiðum takmarkaður við " +"kerfisstjóra." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Settu tóman diskling í drif %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Bý til diskling fyrir sjálfvirka uppsetningu..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Sum skref eru ennþá eftir.\n" +"\n" +"Viltu virkilega hætta núna?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Til hamingju" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Endurræsa" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Velja tungumál" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Staðfærsla" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Notkunarskilmálar" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mús" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Leita að disk(um)" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Innsetningarflokkur" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Lyklaborð" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Öryggi" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Skipting diska" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Forsníð" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Velja pakka" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Setja inn" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Notendur" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Ræsistjóri" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Stilla X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Yfirlit" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Þjónustur" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Uppfærslur" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Hætta" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Vefslóð að spegli?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Slóð verður að byrja á ftp:// eða http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Hef samband við %s vefinn til að sækja lista yfir fáanlega spegla..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Mistókst að tengjast við %s vefinn til að sækja lista yfir fáanlega spegla" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Veldu spegilvélina þaðan sem á að sækja pakkanna" diff --git a/perl-install/install/share/po/it.po b/perl-install/install/share/po/it.po new file mode 100644 index 000000000..f80751725 --- /dev/null +++ b/perl-install/install/share/po/it.po @@ -0,0 +1,1721 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# killer1987 <marcello.anni@alice.it>, 2013-2014 +# Matteo Pasotti <matteo@xquiet.eu>, 2012-2013 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: killer1987 <marcello.anni@alice.it>\n" +"Language-Team: Italian (http://www.transifex.com/MageiaLinux/mageia/language/" +"it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Unisciti a noi!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Rendila tua!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "La tua scelta!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Strumenti per l'ufficio" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Home entertainment" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Per i bambini" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Per la famiglia!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Per gli sviluppatori!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Grazie!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Sentiti libero!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Hai delle altre fonti d'installazione?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Sono state individuate queste fonti che verranno utilizzate per " +"l'installazione: %s.\n" +"\n" +"\n" +"Disponi di altre fonti di installazione da configurare?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rete (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rete (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rete (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Configurazione NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" +"Immetti il nome dell'host e della directory che userai come supporto NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Manca il nome dell'host" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Una directory deve iniziare con \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Nome dell'host da montare con NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Directory" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Aggiuntivo" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Impossibile trovare su questo mirror il file con l'elenco dei pacchetti. " +"Assicurati che l'indirizzo sia esatto." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Alcuni dispositivi hardware sul tuo elaboratore necessitano di firmware " +"proprietari affinché il software libero dei driver possa funzionare." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Dovresti abilitare \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" contiene varie parti del sistema e delle sue applicazioni" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" contiene software non libero.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Contiene inoltre firmware necessari al funzionamento di certi dispositivi " +"(eg: qualche scheda grafica ATI/AMD, qualche scheda di rete, qualche scheda " +"RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" contiene software che non può essere distribuito in qualsiasi paese a " +"causa di brevetti software." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Contiene inoltre software da \"%s\" ricostruito con funzionalità aggiuntive." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Qui puoi abilitare più fonti se lo desideri." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" +"Questa fonte fornisce aggiornamenti dei pacchetti provenienti da \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Ricerca dei pacchetti già installati..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Ricerca dei pacchetti da aggiornare..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Rimozione dei pacchetti prima di aggiornare..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Per permettere l'aggiornamento del sistema si devono rimuovere i seguenti " +"pacchetti: %s\n" +"\n" +"\n" +"Vuoi davvero rimuoverli?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Errore nel leggere il file %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Questi dischi hanno cambiato nome:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (che prima si chiamava %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rete" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Scegli una fonte" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Il file esiste già. Lo sovrascrivo?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permesso negato" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Nome NFS non valido" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Fonte non valida %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Non è possibile fare schermate prima di partizionamento" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Gli screenshot saranno disponibili in %s dopo l'installazione." + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installazione" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configurazione" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "È necessario formattare anche %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Parte dell'hardware del computer richiede driver \"proprietari\" per\n" +"funzionare. Si possono trovare informazioni al riguardo presso: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Attivazione della rete..." + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Disattivazione della rete..." + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Attendi, recupero file in corso" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "impossibile aggiungere la fonte" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Copia di alcuni pacchetti sui dischi per un'utilizzazione futura" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Copia in corso" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "obbligatorio" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "importante" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "molto utile" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "utile" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "forse" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Ottengo le informazioni del pacchetto dai meta-dati XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Mancano informazioni XML per la fonte \"%s\", solo risultati parziali per il " +"pacchetto %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nessuna descrizione" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Alcuni pacchetti richiesti da %s non possono essere installati:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Si è verificato un errore:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Si è verificato un errore fatale: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Non chiedere più" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d transazioni dell'installazione fallite" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Installazione dei pacchetti non riuscita:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Postazione di lavoro" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Postazione per lavoro da ufficio" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programmi da ufficio: editor di testo (LibreOffice Writer, Kword), fogli " +"elettronici (LibreOffice Calc, Kspread), visualizzatori PDF, ecc." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Computer per giocare" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programmi di svago: arcade, da tavolo, di strategia, ecc." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Postazione multimediale" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programmi di riproduzione/modifica audio e video" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Postazione Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Gruppo di programmi per leggere, inviare posta e news (mutt, tin...) e per " +"navigare il Web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Computer in rete (client)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Client per vari protocolli, incluso ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Strumenti per semplificare la configurazione del computer" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Programmi da riga di comando" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editor, shell, gestione file, terminali" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Sviluppo" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Librerie di sviluppo, programmi e file \"include\" per C e C++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentazione" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Libri e Howto su Linux e sul Software Libero" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Supporto per applicazioni di terze parti" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Server web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Server Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Gateway per Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Mail/News" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Server di posta Postfix, server di news Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Server di Directory" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Server FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Server per Domain Name e Network Information" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Server per la condivisione di file e stampanti" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Server NFS, server Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Database" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Server di database PostgreSQL e MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache e Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Posta" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Server di posta Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Server di database PostgreSQL o MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Server di rete" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Server NFS, server SMB, server proxy, server SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Ambiente grafico" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Il K Desktop Environment, l'ambiente grafico di base integrato da una ricca " +"collezione di strumenti" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Postazione di lavoro grafica con GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Un ambiente grafico con un gruppo di applicazioni e di strumenti per il " +"desktop di facile utilizzo" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Un ambiente grafico più leggero con un set di applicazioni e strumenti per " +"il desktop pensati per l'utente" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Stazione di lavoro MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Stazione di lavoro Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Un ambiente grafico basato su GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Desktop LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Un port QT di nuova generazione dell'ambiente desktop lightweight" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Un ambiente grafico leggero e veloce con un supporto dedicato" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Desktop LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Un ambiente grafico veloce e leggero" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Altri desktop grafici" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, etc" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilità" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Server SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Server Webmin per la configurazione remota" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Utilità/Monitoraggio della rete" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Strumenti di monitoraggio, accounting dei processi, tcpdump, nmap,..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Assistenti Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Procedure guidate per la configurazione del server" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Si è verificato un errore non gestibile automaticamente.\n" +"Puoi continuare a tuo rischio e pericolo." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Alcuni pacchetti importanti non sono stati installati correttamente.\n" +"Il lettore di cdrom o il cdrom possono essere danneggiati.\n" +"Controlla il cdrom su un sistema già installato digitando\n" +" \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Avvio della fase \"%s\"\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Installazione %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> muove il cursore" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Il server Xorg è lento ad avviarsi. Attendi..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Il tuo sistema ha risorse non sufficienti. Potresti avere dei\n" +"problemi nell'installazione di %s. Se ciò si verifica, puoi\n" +"provare un'installazione testuale. Per questo, premi `F1' \n" +"quando si avvia il CD-ROM, quindi digita `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Selezione delle fonti d'installazione" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Installa il desktop GNOME %s" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Installazione personalizzata" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Desktop Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Desktop GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Desktop personalizzato" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Ecco l'anteprima del desktop '%s'." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Clicca sulle immagini per ottenere un'anteprima più grande" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Selezione per gruppi di pacchetti" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Selezione individuale dei pacchetti" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Deseleziona tutti" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Dimensione totale: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versione: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Dimensione:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importanza: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Non puoi selezionare/deselezionare questo pacchetto" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "per la mancanza di %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "perché %s non è soddisfatto" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "Ricerca del miglior pacchetto per %s..." + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "per conservare %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Non puoi selezionare questo pacchetto perché non c'è spazio sufficiente per " +"installarlo" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "I seguenti pacchetti stanno per essere installati" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "I seguenti pacchetti stanno per essere rimossi" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Questo è un pacchetto obbligatorio, non puoi deselezionarlo" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Non puoi deselezionare questo pacchetto. È già installato" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Non puoi deselezionare questo pacchetto. Deve essere aggiornato" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Mostra i pacchetti selezionati automaticamente" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installa" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Carica/salva selezione" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Aggiornamento scelta pacchetti" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Installazione minimale" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Gestione software" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Scegli i pacchetti che vuoi installare" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Installazione" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Senza dettagli" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tempo restante:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(stima in corso...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pacchetto" +msgstr[1] "%d pacchetti" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Riepilogo" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configura" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "non configurata" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Sono state trovate queste fonti d'installazione.\n" +"Se vuoi ignorarne qualcuna, la puoi deselezionare ora." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Hai la possibilità di copiare il contenuto dei CD sul disco rigido prima " +"dell'installazione.\n" +"Si proseguirà così dal disco rigido e i pacchetti rimarranno disponibili una " +"volta che il sistema è completamente installato." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copia tutti i CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Si è verificato un errore" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Scegli la mappa della tastiera" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Ecco la lista completa delle tastiere disponibili:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installazione/Aggiornamento" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "È un'installazione o un aggiornamento?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installazione" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Aggiornamento di %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Chiave di cifratura per %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Cancella l'installazione, riavvia il sistema" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nuova Installazione" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Aggiorna l'installazione precedente (Non raccomandato)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"L'installer ha rilevato che il sistema Linux installato non può essere " +"aggiornato a %s in sicurezza.\n" +"\n" +"Raccomandiamo una nuova installazione che sostituisca quella precedente.\n" +"\n" +"Attenzione: devi fare una copia di tutti i tuoi dati personali prima di " +"scegliere \"Nuova installazione\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Occorre sostituire il Cd-Rom!\n" +"Inserisci il Cd-Rom chiamato \"%s\" nel lettore e premi OK quando sei " +"pronto.\n" +"Se non lo hai, premi Annulla per saltare l'installazione da quel Cd-Rom." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Ricerca dei pacchetti disponibili..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Sul sistema non è rimasto sufficiente spazio libero per l'installazione o " +"l'aggiornamento (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Scegli se caricare o salvare la selezione di pacchetti.\n" +"Il formato è lo stesso dei file generati con auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Carica" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Salva" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "File non valido" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Selezione Desktop" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" +"Puoi scegliere il profilo della tua postazione di lavoro per il desktop" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Lo spazio richiesto è maggiore di quello disponibile" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipo di installazione" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Nessun gruppo di pacchetti risulta selezionato .\n" +"Scegli il tipo di installazione minima desiderato:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Con X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Installa i pacchetti consigliati" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Con la documentazione essenziale (raccomandata!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Installazione veramente minimale (in particolare niente urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Preparazione del aggiornamento..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Sto preparando l'installazione" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Installazione del pacchetto %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "C'è un errore nell'ordinamento dei pacchetti:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Vado avanti comunque?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Riprova" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Salta questo pacchetto" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Salta tutti i pacchetti provenienti da \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Torna alla scelta dei pacchetti e delle fonti" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "C'è stato un errore nell'installazione del pacchetto %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configurazione post installazione" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Assicurati che gli \"Update Modules\" siano leggibili dal dispositivo %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Aggiornamenti" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "I seguenti pacchetti stanno per essere installati" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Riprovare?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Errore nell'aggiunta della fonte" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Ora hai la possibilità di scaricare dei pacchetti aggiornati che sono\n" +"stati modificati dopo l'uscita della distribuzione. Questi pacchetti " +"possono\n" +"contenere aggiornamenti di sicurezza o correzioni di errori.\n" +"\n" +"Per scaricare questi pacchetti serve una connessione a Internet attiva.\n" +"\n" +"Vuoi installare gli aggiornamenti?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s in %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Scheda audio" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfaccia grafica" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rete e Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxy" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "configurato" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Livello di sicurezza" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "attivato" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "disabilitato" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Non hai configurato X. Sei sicuro di non volerlo fare?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Sto preparando l'installazione..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Sii paziente, potrebbe servire un po' di tempo..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"A questo livello di sicurezza, l'accesso ai file delle partizioni Windows è " +"riservato all'amministratore." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Inserisci un floppy vuoto nell'unità %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Sto creando il floppy di installazione automatica..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Alcune fasi non sono state completate.\n" +"\n" +"Vuoi veramente interrompere adesso?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Congratulazioni" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Riavvia" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Lingua" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Localizzazione" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licenza" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mouse" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Rilevamento disco fisso" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Classe di installazione" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastiera" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sicurezza" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partizionamento" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formattazione" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Scelta dei pacchetti" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installazione" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Utenti" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Configurazione X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Riepilogo" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servizi" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Aggiornamenti" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Esci" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL del mirror?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "L'URL deve iniziare con ftp:// o http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Contattando il sito web %s per ottenere l'elenco dei mirror disponibili..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "È fallito il contatto col sito web %s per ottenere la lista dei mirror " +#~ "disponibili" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Scegli un mirror da cui recuperare i pacchetti" diff --git a/perl-install/install/share/po/ja.po b/perl-install/install/share/po/ja.po new file mode 100644 index 000000000..8b957a576 --- /dev/null +++ b/perl-install/install/share/po/ja.po @@ -0,0 +1,1691 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# kakurasan <kakurasan@gmail.com>, 2017 +# UTUMI Hirosi <utuhiro78@yahoo.co.jp>, 2003-2004 +# YAMAGATA Hiroo <hiyori13@alum.mit.edu>, 2000 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: YAMAGATA Hiroo <hiyori13@alum.mit.edu>, 2000\n" +"Language-Team: Japanese (http://app.transifex.com/MageiaLinux/mageia/" +"language/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "ご参加ください!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "あなたのものにしましょう!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "あなたが決めるのです!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "オフィス ツール" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "ホーム エンターテインメント" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "子供にも" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "家族にも!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "開発者にも!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "ありがとうございます!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "自由でいましょう!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "他に追加するメディアはありますか?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"以下のメディアが検出され、インストールの間に使用されます: %s \n" +"\n" +"\n" +"他に設定するメディアはありますか?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "ネットワーク (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "ネットワーク (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "ネットワーク (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS の設定" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "NFS メディアのホスト名とディレクトリを入力してください" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "ホスト名がありません" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "ディレクトリは \"/\" で始まらなければなりません" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS マウントのホスト名" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "ディレクトリ" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "追加のメディア" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"パッケージ リストのファイルが見つかりません。ミラーの場所が正しいか確認してく" +"ださい。" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"このマシン上の幾つかのハードウェアにはフリー ソフトウェアのドライバが動作する" +"ために幾つかの非フリーなファームウェアが必要です。" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "\"%s\" を有効にしたほうがよいでしょう" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" には各種システムとそのアプリケーションが含まれます" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" には非フリーなソフトウェアが含まれます。\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"これには幾つかのデバイスが動作するために必要なファームウェアも含まれます " +"(例: 幾つかのATI/AMD グラフィック カード, 幾つかのネットワーク カード, 幾つか" +"の RAID カード, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" にはソフトウェア特許によりすべての国で配布することができないソフトウェ" +"アが含まれます。" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"これには \"%s\" のソフトウェアに追加の機能を有効にしてビルドしたものも含まれ" +"ます。" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "ここで必要に応じて追加のメディアを有効にすることができます。" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "このメディアはメディア \"%s\" に対するパッケージの更新を提供します" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "インストール済みパッケージを探しています..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "更新するパッケージを探しています..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "アップグレードする前にパッケージを削除しています..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"システムを更新するため以下のパッケージを削除します: %s\n" +"\n" +"\n" +"これらのパッケージを削除してよろしいですか?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "ファイル %s の読み込み時にエラーが発生しました" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "次のディスクの名前は変更されました:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (変更前の名前は %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "ネットワーク" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "メディアを選んでください" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "ファイルが既に存在します。上書きしますか?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "アクセス許可がありません" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "不正な NFS 名" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "不正なメディア %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "パーティション設定が終わるまでスクリーンショットは撮れません" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" +"スクリーンショットは %s にあります。インストール後に利用可能になります。" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "インストール" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "設定" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "%s もフォーマットしてください" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"お使いのハードウェアの中に ``プロプライエタリ'' ドライバが必要なものがありま" +"す。\n" +"詳しくは以下をご参照ください: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "ネットワークを有効にしています" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "ネットワークを無効にしています" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "ファイルを取得しています。お待ちください。" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "メディアを追加できません" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "幾つかのパッケージを後で利用するためにディスクにコピーしています" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "コピーしています" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "必須" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "重要" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "優秀" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "秀" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "可" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "XML メタ データからパッケージ情報を取得しています..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"メディア %s に XML 情報がないため、パッケージ %s の検索結果は不完全です" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "説明なし" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"%s が要求するいくつかのパッケージをインストールできません:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "エラーが発生しました:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "致命的なエラーが発生しました: %s" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "次回から確認しない" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d 件のインストールが失敗しました" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "パッケージのインストールに失敗しました:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "ワークステーション" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "オフィス ワークステーション" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"オフィス プログラム: ワープロ (LibreOffice Writer, Kword), 表計算 " +"(OpenOffice.org Calc, Kspread), PDF ビューアなど" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "ゲーム ステーション" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "娯楽プログラム: アーケード ゲーム, ボード ゲーム, 戦略ゲームなど" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "マルチメディア ステーション" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "サウンドと動画の再生/編集プログラム" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "インターネット ステーション" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"メールとニュースの送受信用ツール (mutt,tin..) とウェブ ブラウズ用ツール" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "ネットワーク (クライアント)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "ssh などの各種プロトコル用クライアント" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "コンピュータの設定を簡単にするツール" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "端末用ツール" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "エディタ, シェル, ファイル関連ツール, 端末" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "開発パッケージ" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C/C++ の開発ライブラリ, プログラム, include ファイル" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "ドキュメント" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Linux やフリー ソフトウェアの文書と Howto" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base, サード パーティのアプリケーションをサポート" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Web サーバ" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "グループウェア" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab サーバ" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "ファイアウォール/ルータ" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "インターネット ゲートウェイ" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "メール/ニュース" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix メール サーバ, Inn ニュース サーバ" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "ディレクトリ サーバ" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP サーバ" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "ドメイン名とネットワーク情報のサーバ" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "ファイルとプリンタの共有サーバ" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS サーバ, Samba サーバ" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "データベース" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL や MariaDB のデータベース サーバ" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "メール" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix メール サーバ" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL や MariaDB のデータベース サーバ" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "ネットワーク コンピュータ サーバ" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS サーバ, SMB サーバ, プロキシサーバ, SSH サーバ" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "グラフィカル環境" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma ワークステーション" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "KDE, さまざまなツールを含む基本的なグラフィカル環境" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME ワークステーション" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"ユーザ フレンドリなアプリケーションやデスクトップ ツールを含むグラフィカル環" +"境" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce ワークステーション" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"ユーザ フレンドリなアプリケーションやデスクトップ ツールを含む、より軽量なグ" +"ラフィカル環境" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE ワークステーション" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon ワークステーション" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "GNOME に基づいたグラフィカル環境" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt デスクトップ" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "軽量デスクトップ環境の次世代の QT 移植版" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment デスクトップ" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "熱心な支持者を持つ軽量高速なグラフィカル環境" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE デスクトップ" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "軽量高速なグラフィカル環境" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "その他のグラフィカル デスクトップ" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker や Fvwm など" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "ユーティリティ" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH サーバ" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin リモート設定サーバ" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "ネットワーク ユーティリティ/モニタリング" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "モニタリング ツール, プロセス管理, tcpdump, nmap..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia ウィザード" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "サーバ設定ウィザード" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"エラーが発生しました。しかし対処する方法がわかりません。\n" +"自己責任で続けてください。" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"重要なパッケージがインストールされませんでした。\n" +"CD-ROM ドライブか CD-ROM に問題があります。\n" +"'rpm -qpl media/main/*.rpm' コマンドで CD-ROM をチェックしてください。\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "%s を開始\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s のインストール %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> 項目間を移動" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg サーバの起動には時間がかかります。お待ちください..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"システムのリソースが十分でないため、%s のインストール中に\n" +"問題が発生する可能性があります。その場合は次の要領でテキスト モードによる\n" +"インストールを試してみてください。\n" +"CD-ROM から起動 -> F1 を押す -> 'text' と入力" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "メディアの選択" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "%s Plasma デスクトップをインストール" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "%s GNOME デスクトップをインストール" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "カスタム インストール" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma デスクトップ" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME デスクトップ" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "カスタム デスクトップ" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "%s デスクトップのプレビューです。" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "画像をクリックすると大きなプレビューが表示されます" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "パッケージ グループを選択" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "パッケージを個別に選択" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "すべて選択解除" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "合計サイズ: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "バージョン: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "サイズ: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "重要度: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "このパッケージの選択/非選択は変更できません" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s がないために" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "%s が依存を満たしていないために" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s をアップグレードするために" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s を維持するために" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"このパッケージは選択できません。インストールに必要な空き容量がありません。" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "以下のパッケージをインストールします" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "以下のパッケージを削除します" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "これは必須パッケージです。選択を解除することはできません。" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "このパッケージの選択は解除できません。既にインストールされています。" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "このパッケージの選択は解除できません。アップグレードが必要です。" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "自動的に選択されたパッケージを表示" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "インストール" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "選択を読み込む/保存する" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "パッケージの選択を更新" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "パッケージ一覧の階層表示を切り替える" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "最小インストール" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "ソフトウェアの管理" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "インストールするパッケージを選んでください" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "インストール" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "詳細を非表示" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "残り時間:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(試算しています...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d 個のパッケージ" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "まとめ" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "設定" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "設定されていません" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"次のインストール メディアを検出しました。\n" +"使用しないものがあればここで選択を解除してください。" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"インストールする前に CD の内容をハード ドライブにコピーすることも可能です。\n" +"そうするとインストーラはハード ドライブからインストールを続けます。コピーされ" +"たパッケージはインストール完了後も利用できます。" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "CD 全体をコピー" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "エラーが発生しました" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "キーボードの配列を選んでください" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "利用可能なすべてのキーボードの一覧:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "インストール/更新" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "インストールか更新を選んでください" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "インストール" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s を更新" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s の暗号鍵" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "インストールを中止し、システムを再起動" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "新しくインストール" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "既存のシステムをアップグレード (非推奨)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"インストーラはこのインストール済みの Linux システムが無事に %s に\n" +"アップグレードできなかったことを検出しました。\n" +"\n" +"以前のシステムを置き換えて新しくインストールすることが推奨されます。\n" +"\n" +"警告 : \"新しくインストール\" を選択する前にあなた個人のデータをすべてバック" +"アップしたほうがよいでしょう。" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "CD/DVD を設定しています" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"CD-ROM を交換してください。\n" +"\"%s\" という CD-ROM をドライブに入れて「OK」を押してください。\n" +"お持ちでない場合は「キャンセル」を押してください。" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "利用可能なパッケージを探しています..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"あなたのシステムにはインストールまたはアップグレードに必要な空き容量がありま" +"せん (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"パッケージの選択を読み込むか保存するかを選んでください。\n" +"形式は auto_install で生成されたファイルと同じです。" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "読み込む" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "保存する" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "不正なファイル" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "デスクトップの選択" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "ワークステーションのデスクトップ プロファイルを選択できます。" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "指定されたサイズが空き容量を超えています" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "インストールの種類" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"パッケージ グループが選択されていません。\n" +"インストールする最低限のものを選んでください:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X を使う" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "推奨パッケージをインストール" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "基本的なドキュメントを入れる (推奨)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "最小限のインストール (urpmi も含まれません)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "アップグレードを準備しています..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "インストールの準備" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "パッケージ %s をインストールしています" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "パッケージを並べ替え中にエラーが発生しました:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "続けますか?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "再試行" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "このパッケージを飛ばす" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "メディア %s のすべてのパッケージを飛ばす" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "メディアとパッケージの選択に戻る" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "パッケージ %s のインストール時にエラーが発生しました。" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "インストール後の設定" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"更新モジュール メディアがドライブ %s に入っていることを確認してください" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "更新" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "ここでオンライン メディアを設定できます。" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "これはセキュリティ更新をインストール可能にします。" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"これらのメディアを設定するには、稼働中のインターネット接続が必要となりま" +"す。\n" +"\n" +"更新メディアを設定しますか?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "ダウンローダがインストールできませんでした" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "やり直しますか?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "メディアの追加に失敗しました" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"更新されたパッケージをダウンロードすることができます。これらのパッケージは\n" +"ディストリビューション公開後に更新されたものです。セキュリティ問題や不具合\n" +"の修正が含まれています。\n" +"\n" +"パッケージのダウンロードにはインターネット接続が必要です。\n" +"\n" +"更新されたパッケージをインストールしますか?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%2$s の %1$s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "ハードウェア" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "サウンド カード" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "グラフィカル インターフェース" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "ネットワークとインターネット" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "プロキシ" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "設定済み" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "セキュリティ レベル" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "ファイアウォール" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "有効" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "無効" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "X が設定されていません。本当によろしいですか?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "最初に開始するプログラムを準備しています..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "しばらく時間がかかります。お待ちください..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"このセキュリティ レベルでは、Windows パーティションのファイルへのアクセスが管" +"理者のみに限定されます。" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "空のフロッピーをドライブ %s に入れてください" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "インストール自動化フロッピーを作成中..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"一部の設定が完了していません。\n" +"\n" +"本当に終了しますか?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "おめでとうございます" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "再起動" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "言語を選択" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "言語" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "ライセンス" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "マウス" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "ハード ドライブの検出" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "インストール クラス" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "キーボード" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "セキュリティ" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "パーティションの設定" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "フォーマット" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "パッケージの選択" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "インストール" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "ユーザ" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "ブート ローダ" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X を設定" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "まとめ" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "サービス" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "更新" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "終了" diff --git a/perl-install/install/share/po/ka.po b/perl-install/install/share/po/ka.po new file mode 100644 index 000000000..eaeb48978 --- /dev/null +++ b/perl-install/install/share/po/ka.po @@ -0,0 +1,1608 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Georgian (http://www.transifex.com/MageiaLinux/mageia/" +"language/ka/)\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "კონფიგურაცია" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "პროგრამირება" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "დოკუმენტაცია" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "ელფოსტა" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "ვერსია:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "ზომა:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "პროგრამათა მენეჯმენტი" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "განახლებები" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "მოწყობილობა" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "ქსელი და ინტერნეტი" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "ქსელის დამცავი (Firewall)" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "გილოცავთ" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "გადატვირთვა" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" diff --git a/perl-install/install/share/po/ko.po b/perl-install/install/share/po/ko.po new file mode 100644 index 000000000..65b56e66e --- /dev/null +++ b/perl-install/install/share/po/ko.po @@ -0,0 +1,1673 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jaegeum Choe <baedaron@hananet.net>, 2001 +# meta <hbahn@metq.com>, 2007 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Korean (http://www.transifex.com/MageiaLinux/mageia/language/" +"ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "추가할 미디어가 있습니까?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"다음과 같은 미디어를 찾았습니다. 이들은 설치시 사용될 것입니다.: %s.\n" +"\n" +"\n" +"설정할 추가 설치 매체가 있습니까?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "망(HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "망(FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "망(NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "망 파일 시스템 (NFS) 구성" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "NFS 매체의 호스트 이름과 디렉토리를 입력해 주십시요." + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "호스트 이름을 찾을 수 없습니다" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "디렉토리는 \"/\"로 시작되어야 합니다." + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "망 파일 시스템(NFS)의 호스트 이름을 설치합니까?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "디렉토리" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "추가" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"미러 사이트에서 패키지 리스트를 찾을 수 없습니다. 이 위치에 만드시겠습니까?" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "이미 설치된 패키지 찾는 중..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "업그레이드할 패키지를 검색중..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "업그레이드된 패키지를 제거하는 중..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"다음 패키지들은 당신의 시스템을 업그레이드하기위해 제거될 것입니다. : %s\n" +"\n" +"\n" +"정말 이 패키지들을 제거 하시겠습니까?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%s 파일을 읽는중 오류가 발생했습니다." + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "다음 디스크이름이 변경되었습니다. :" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (이전 이름은 %s였음.)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP(하이퍼텍스트 전송 규약)" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP(파일 전송규약)" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS(망 파일 시스템)" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "망" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "매체를 선택하시오" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "권한이 없습니다." + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "부정확한 NFS 이름입니다" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "알 수 없는 미디어 %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "파티션을 나누기 전에는 스크린샷을 만들 수 없습니다." + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "스크린샷은 설치 이후에 %s에 위치 할 것입니다." + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "설정" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "%s도 포맷해야 합니다." + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"「상업용」드라이버를 필요로 하는 일부 하드웨어가 시스템상에 있습니다.\n" +"자세한 정보는 다음을 참조하세요: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "망 활성화 중..." + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "망 해제 중..." + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "추후 사용하기 위해 디스크에 패키지 복사중... " + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "복사 진행중" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "필수 패키지" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "중요한 패키지" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "훌륭한 패키지" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "좋은 패키지" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "괜찮은 패키지" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "설명 없음" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "워크스테이션" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "오피스 워크스테이션" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"오피스 프로그램들: 워드프로세서 (LibreOffice Writer, Kword), 스프레드쉬트 " +"(LibreOffice Calc, Kspread), PDF 뷰어, 등등" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "게임 스테이션" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "간단한 게임모음: 아케이드, 보드, 전략 등등" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "멀티미디어 스테이션" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "사운드 및 비디오 연주/편집 프로그램" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "인터넷 스테이션" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "메일/뉴스를 읽고 보내며 (mutt, tin..) 웹검색을 하기 위한 도구모음" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "망 컴퓨터 (클라이언트)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "SSH를 포함한 여러 프로토콜의 클라이언트" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "쉽게 컴퓨터 설정을 하기 위한 도구" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "콘솔 도구" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "에디터, 쉘, 파일도구, 터미널" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "개발" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C/C++ 개발 라이브러리, 프로그램 및 헤더파일" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "문서" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "리눅스 및 자유 소프트웨어에 대한 서적과 Howto문서" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "리눅스 기본 규격(Linux Standard Base)" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "리눅스 기본 규격. 외부 애플리케이션 지원" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "웹 서버" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "아파치" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "그룹웨어" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab 서버" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "방화벽/라우터" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "인터넷 게이트웨이" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "디렉토리 서버" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP 서버" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "도메인 이름 서버/망 정보 서버" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "도메인 이름 및 망 정보 서버" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS 서비스, 삼바 서비스" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "데이터베이스" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "웹/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "아파치와 프로FTPD" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "메일" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "포스트픽스 메일 서버" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL 또는 MariaDB 데이터베이스 서버" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "망 컴퓨터 서버" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS 서버, 삼바 서버, 프록시 서버, SSH 서버" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "그래픽 환경" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "K Desktop 환경, 여러가지 도구를 수반한 기본 그래픽 환경" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME 워크스테이션" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "사용자 친화적 응용 프로그램들과 데스크탑 도구들을 가진 그래픽 환경" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "기타 그래픽 데스크탑" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "유틸리티" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH 서비스" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin 원격 설정 서버" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "망 유틸리티들/감시" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "감시 도구, 프로세스 관리, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "서버 설정 도우미" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"오류가 발생했지만, 처리할 수 없습니다.\n" +"위험을 감수하려면 계속하세요." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"일부 중요한 패키지들이 올바르게 설치되지 않았습니다.\n" +"CDROM 드라이브 또는 미디어가 손상되었습니다.\n" +"설치 완료된 컴퓨터에서 「rpm -qpl media/main/*.rpm」명령으로 CDROM을 점검하십" +"시오.\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "%s 단계로 넘어갑니다.\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s 설치 %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> 항목간 이동" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "데스크톱" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "패키지 그룹 선택" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "개별 팩키지 선택" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "모든 선택 해제" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "전체 크기: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "판" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "크기: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d 킬로 바이트\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "중요도: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "이 패키지를 선택/버림 할 수 없습니다." + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s 가 없음" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "%s 비충족" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s 를 활성화하기 위해 시도중" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s를 유지하기 위해" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "이 패키지 선택할 수 없음 - 디스크 공간 부족" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "다음 패키지들을 설치합니다." + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "다음 패키지들을 제거합니다." + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "이것은 필수 패키지이므로 제거할 수 없습니다." + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "선택해제할 수 없음 - 이미 설치된 패키지입니다." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "선택해제할 수 없음 - 업그레이드 필." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "자동 선택 패키지들 보기" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "설치" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "열기/저장 선택" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "선택된 패키지 목록 업데이트 중" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "최소 설치" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "소프트웨어 관리" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "설치할 패키지를 선택하시오." + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "설치중" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "상세설명 생략" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "요약설명" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "설정" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "설정되지 않음" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"다음 설치 매체를 찾았습니다.\n" +"설치 하지 않으려면 설치해제하십시오." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"설치 전에 하드 드라이브로 CDROM에 있는 컨텐츠를 복사할 수 있습니다.\n" +"그러면 하드 드라이브에 설치한 후에도 패키지는 시스템에 남아서 재설치가 가능합" +"니다." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "전체 CD 복사" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "오류 발생" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "키보드 구성을 선택하시오" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "설치/업그레이드" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "설치합니까 아니면 업그레이드 합니까?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "설치" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "업그레이드 %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"CDROM을 바꾸십시오!\n" +"\n" +"「%s」라고 쓰여진 CDROM을 드라이브에 넣은 후, 「확인」을 눌러 주세요.\n" +"만약 CDROM을 가지고 있지 않다면, 「취소」를 눌러 추가 설치를 취소하세요." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "유효한 패키지를 찾고 있습니다." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"현재 시스템에는 설치 또는 업그레이드 할만한 충분한 공간이 \n" +"남아있지 않습니다.(%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"패키지 선택목록을 불러올지 혹은 저장할지를 선택하세요.\n" +"형식(포맷)은 자동설치 생성 파일과 동일합니다." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "불러오기" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "저장" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "손상된 파일 혹은 없는 파일입니다." + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "그놈" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "선택된 용량이 사용할 수 있는 공간보다 큽니다." + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "설치 타입" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"어떤 패키지 그룹도 선택되지 않았습니다.\n" +"패키지 최소설치 이상을 선택하십시오." + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X 포함" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "기본 문서 포함(추천!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "최소 설치(특히 urpmi사용안함)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "설치 준비중입니다" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s 패키지 설치중" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "패키지를 정렬하는 중 오류발생:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "계속 진행합니까?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "재시도" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "이 패키지는 설치하지 않고 지나가기" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "\"%s\"에서 모든 패키지를 설치하지 않음" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "미디어나 패키지 선택목록으로 돌아가기" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "다음 패키지 설치중 오류 발생: %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "설치 후 환경설정" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "업데이트 모듈 매체가 %s 드라이브에 있도록 하십시오." + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "업데이트" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "다음 패키지들을 설치합니다." + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"업데이트 패키지들을 다운로드하십시오. \n" +"이 패키지들에는 제품이 릴리즈 된 이후에 업데이트 된 내용 \n" +"(보안 및 버그의 보완)이 있습니다.\n" +"이 패키지들을 다운로드 받으려면 인터넷이 연결되어 있어야 합니다.\n" +"업데이트를 설치 하시겠습니까?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s (%s 컴퓨터)" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "하드웨어" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "사운드 카드" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "시작시 바로 X-Window 실행" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "망과 인터넷" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "프록시" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "재설정되었습니다." + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "보안 등급" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "방화벽" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "활성화" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "금지" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "X 설정이 되지 않았습니다. 설정하시겠습니까?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"이 보안 등급에서는 윈도우즈 파티션에서의 파일 접근이 관리자에 의해 제한 됩니" +"다." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "%s 드라이브에 빈 플로피 디스크를 넣으세요" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "자동 설치 플로피 디스크 생성 중" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"몇몇 단계가 완전히 끝나지 않았습니다.\n" +"\n" +"정말 지금 종료 하시겠습니까?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "축하합니다." + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "다시 시작" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "언어" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "지역화" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "라이센스" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "마우스" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "하드 디스크 선택" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "설치 등급" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "키보드" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "보안" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "파티션 작업" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "구성중" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "패키지 선택" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "설치중" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "사용자들" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "부트로더" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X 설정" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "요약설명" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "서비스" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "업데이트" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "종료" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "미러사이트의 (URL)주소를 적어주십시오." + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL 주소는 ftp:// 또는 http:// 로 시작되어야 합니다." + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "유효한 미러 목록을 받기 위해 %s 홈페이지에 접속 중..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "%s 홈페이지에 접속하여 미러사이트목록을 받는 데 실패했습니다." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "패키지를 받을 미러 사이트를 선택하시오." diff --git a/perl-install/install/share/po/ku.po b/perl-install/install/share/po/ku.po new file mode 100644 index 000000000..ed7adff7c --- /dev/null +++ b/perl-install/install/share/po/ku.po @@ -0,0 +1,1608 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Kurdish (http://www.transifex.com/MageiaLinux/mageia/language/" +"ku/)\n" +"Language: ku\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Ve avakirin" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Perisandin" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokûmantasyon" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Name" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Guherto: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Mezinahî :" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Girîngî: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Kontrola programan" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Rojanekirin" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Kompûter" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Tor & Înternet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Ewlekarî (Firewall) " + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "Pasîf" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Serkeftin" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" diff --git a/perl-install/install/share/po/ky.po b/perl-install/install/share/po/ky.po new file mode 100644 index 000000000..e301184eb --- /dev/null +++ b/perl-install/install/share/po/ky.po @@ -0,0 +1,1705 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Ilyas Bakirov <just_ilyas@yahoo.com>, 2008 +# Nurlan Borubaev <nurlan@tamga.info>, 2005 +# Timur Jamakeev <ztimur@mail.ru>, 2003-2004 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2020-06-18 00:30+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Kyrgyz (http://www.transifex.com/MageiaLinux/mageia/language/" +"ky/)\n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Сизде кийинки кезектеги кошумча алып жүрүүчү барбы?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Төмөнкү булак табылды жана ал орнотуу мезгилинде колдонулат: %s.\n" +"\n" +"\n" +"Ырастоолор үчүн кошумча булагы дагы барбы?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Желе (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Желе (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Тармак (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS орнотуу" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "NFS топтомунун компьютер атын жана директориясын кириңиз" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Түйюндүн аты көрсөтүлгөн жок" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Директория \"/\" белги менен башталышы керек" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS туташуунун түйюн аты ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Каталог" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Кошумча" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Бул күзгүдө пакеттердин тизмеси атбылган жок. Жайгашуусунун тууралыгын " +"текшериңиз." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Орнотулган пакеттер изделип жатат..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Жаңыланычуу пакеттер изделип жатат..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Жаңылоодон мурда пакеттер өчүрүлүп жатат..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Сиздин системага жаңылануу мүмкүнчүлүгүн берүү үчүн төмөнкү пакеттер\n" +"алынып ташталат: %s\n" +"\n" +"\n" +"Бул пакеттердин алынып ташталуусун каалайсызбы?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%s файлын окуудагы ката" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Төмөнкү диск(тер)дин аты өзгөртүлдү:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (мурунку аты %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Желе" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Алып жүрүүчүнү тандаңыз" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Файл алдагачан бар. Үстүнө кайра жазылсынбы?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Кирүү укугу четке кагылды" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Жаман NFS аты" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "%s жараксыз алып жүрүүчү" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Бөлүмдөрдү жаратууга чейин скриншотторду түзүүгө болбойт" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Орнотуудан кийин скриншоттор %s ичинде болот" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Орнотуу" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Конфигурациялоо" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Сиз %s дагы форматташыңыз керек" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Компьютериңизде кээбир жабдыктар иштөө үчүн эркин эмес драйверлерди талап " +"кылат.\n" +"Алар жөнүндө маалыматты көрсөтүлгөн жерден табып аласыз: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Тармак көтөрүлүүдө" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Тармак өчүрүлүүдө" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Күтө туруңуз, файл жүктөлүп жатат" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "булак кошулган жок" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Кээбир пакеттерди келечекте колдонуу үчүн дискке көчүрүп жатат" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Көчүрүү жүрүүдө" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "болушу керек" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "керектүү" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "өтө жакшы" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "жакшы" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "болушу мүмкүн" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"\"%s\" булагында xml-info табылган жок. %s пакети үчүн жарым ганарезультат " +"алынды" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Баяндалбады" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"%s менен талап кылынган кээбир пакеттер орнотула алган жок:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Жаңылыштык орун алды:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Фаталдык ката пайда болду: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d орнотуу транзакциялары ишке ашпады" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Пакеттердин орнотулушу ийгиликсиз аяктады:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Иш станциясы" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Офис станциясы" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Офис программалары: текст процессорлору (LibreOffice Writer, Kword), " +"электрондук таблицалар (LibreOffice Calc, Kspread), pdf файлдарын көрүү " +"программалары, ж.б." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Оюн станциясы" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" +"Оюн-зоок программалары: аркада оюндары, тактай оюндары, стратегия оюндары, ж." +"б." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Мультимедиа станциясы" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Үн жана видео ойнотуу/терүү программалары" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Интернет станциясы" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Почтаны жана жаңылыктарды (mutt, tin..) окууга жана жөнөтүүгө, жана вебде " +"иштөөгө арналган куралдар тобу" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Тармак компьютери (клиент)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Ар түрдүү протоколдор клиенттери, ssh да кошулган" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Компьютериңизди жеңил конфигурациялоо куралдары" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Консоль куралдары" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Редакторлор, шелдер, файл куралдары, терминалдар" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Иштеп түзүү" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" +"C жана C++ иштеп чыгуу библиотекалары, программалар жана include файлдары" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Документация" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Linux жана Free Software жөнүндөгү китептер жана HOWTOлар" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" +"Linux стандарттык базасы. Үчүнчү тараптык иштеп чыгуучулардын тиркемелерин " +"колдоо" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Веб-сервери" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab сервери" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Файрволл/Маршруттагыч" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Интернет дарбазасы" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Почта/Жаңылыктар" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix почта сервери, Inn жаңылыктар сервери" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Каталогдор сервери" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP сервери" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS жана NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Файл жана принтер бөлүшүү сервери" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS сервери, Samba сервери" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Берилиштер базасы" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL жана MariaDB берилиштер базасынын сервери" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Почта" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix почта сервери" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL же MariaDB берилиштер базасынын сервери" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Тармак сервери" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS сервери, SMB сервери, Proxy сервери, ssh сервери" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Графикалык чөйрө" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment - негизги графикалык чөйрө, кошумча куралдар " +"коллекциясы менен" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME иш станциясы" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Колдонуучуга ыңгайлашкан тиркемелерин жана иш столунун кураларын камтыган " +"графикалык чөйрө" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE иш столу" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Башка графикалык иш столдору" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Утилиталар" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH сервери" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin узактан башкаруу сервери" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Тармак аспаптары/Мониторинг" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Мониторинг аспаптар, процесс эсептүүчүлөр, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia Усталары" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Серверди ырастоо усталары" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Жаңылыштык орун алды, бирок мен аны кантип туура иштетүүнү билбейм.\n" +"Мындан ары тобокелге салып өзүңүз улантыңыз." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Кээбир негизги пакеттер туура эмес орнотулду.\n" +"CDROM түзүлүшү же диск бузук болушу мүмкүн.\n" +"Киргизилген дискти \"rpm -qpl media/main/*.rpm\" коммандасы менен " +"текшериңиз\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "`%s' кадамына өтүү аракети\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s %s орнотуу" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> элементтер ортосунда" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg жай башталып жатат. Күтө туруңуз..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Системага жетеринче ресурс жетпей жатат. %s системасын\n" +"орнотууда проблемалар чыгышы мүмкүн. Андай болсо тексттик режимде\n" +"орнотууну текшерип көрүңүз. Ал үчүн, дисктен жүктөлүп жаткан учурда\n" +"`F1' клавишасын басып `text' сөзүн кириңиз." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Пакеттердин группасын тандоо" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "%s GNOME иш столун орнотуу" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Менчик орнотуу" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME иш столу" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Менчик иш столу" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Мына '%s' иш столдун алдын ала көрүнүшү." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Чоң көрүнүштү көрүү үчүн сүрөткө басыңыз" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Пакеттердин группасын тандоо" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Пакеттерди өз алдынча тандоо" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Жалпы көлөмү: %d / %d Мб" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Версиясы: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Көлөмү: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d Кб\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Маанилүүлүгү:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Сиз бул пакетти тандап/тандабай албайсыз" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s жоктугунан" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "%s канаатанбагандыгынан" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s активдештирүү аракети" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s сактоо үчүн" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Сиз бул пакетти тандап алалбайсыз, анткени аны орнотуу үчүн жетеринче бош " +"боштук жок" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Төмөнкү пакеттер орнотуулат" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Төмөнкү пакеттер өчүрүлөт" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Бул орнотууга шарт болгон пакет, пакетти тандап алалбайсыз" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Бул пакетти тандап алалбайсыз. Пакет алда качан орнотулган" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Бул пакетти белгилөөдөн алып салууга болбойт. Ал жаңыланышы керек" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Автоматтык түрдө тандалган пакеттерди көрсөтүү" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Орнотуу" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Тандалгандарды Жүктөө/Сактоо" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Пакеттерди тандоо жаңыланууда" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Минималдык орнотуу" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Пакеттерди башкаруу" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Сиз орнотууну каалаган пакеттерди тандаңыз" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Орнотуу" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Кеңири маалыматсыз" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Калган убакыт:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(болжолдуу убакыт..)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d- пакет" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Жыйынтык" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Конфигурация" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "конфигурацияланбаган" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Төмөнкү орнотуу булактары табылды.\n" +"Эгерде кээбирин аттап өтүүнү кааласаңыз, анда аларды тандабай өтүңүз." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Компакт-диск мазмунун орнотуудан мурун компьютер дискине көчүрүп алуу " +"мүмкүн.\n" +"Андан кийин орнотуу компьютер дискинен улантылат жана пакеттер толук " +"системанын орнотулуп бүткөндөн кийин калышат." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "CD дискти толугу менен көчүрүү" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Жаңылыштык орун алды" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Өзүңүздүн алиптакта картасын тандаңыз" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Мүмкүн болгон бардык клавиөлкөлөр тизмеси" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Орнотуу/Жаңылоо" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Бул орнотуубу же жаңылообу?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Орнотуу" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s жаңылоо" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s үчүн шифрлөө ачкычы" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Орнотууну айну, система өчүп жандыруу" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Жаңы орнотуу" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Мурунку орнотууну жаңылоо (сунуш кылынбайт)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Компакт-дискти алмаштырыңыз!\n" +"\"%s\" атту компакт-дискти киргизиңиз, андан кийин \"Ok\" баскычын басыңыз.\n" +"Эгерде сизде жок болсо, анда ушул компакт-дисктен орнотууну айнуу үчүн " +"\"Айнуу\" баскычын басыңыз." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Мүмкүн болгон пакеттер изделүүдө..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Системаңыз орнотууга же жаңылоого жетеринче бош боштукка ээ эмес (%d МБ > %d " +"МБ)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Жүктөө же пакеттер тандоосун сактоону тандаңыз.\n" +"Файлдар форматы автоматтык орнотууда түзүлгөн файлдар менен окшош." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Жүктөө" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Сактоо" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Туура эмес файл" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Иш столун тандоо" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Иштоо станцияңыздын иш столдун профилин тандап аласыз." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Тандалган өлчөм бар болгон боштуктан чоң" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Орнотуу тиби" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Эч кандай пакеттер группасы тандалган жок.\n" +"Минималдык орнотуу тибин тандаңыз:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X менен" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Башкы документация менен (сунушталат!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Чыныгы минималдуу орнотуулуш (атайын urpmi'сиз)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Орнотуу даярдалууда" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s пакети орнотуулууда" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Пакеттерди кабыл алууда ката пайда болду:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Буга карабай улантайынбы?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Кайталоо" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Бул пакетти аттап өтүү" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "\"%s\" ичинен бардык пакеттерди аттап өтүү" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Артка баруу жана орнотууга пакеттерди нандоо" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "%s пакетти орнотууда ката чыкты." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Орнотуулуштан кийинки ырастоолор" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "%s ичинде Update Modules топтомунун бар экендигин текшерип көрүңүз" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Жаңылоолор" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Төмөнкү пакеттер орнотуулат" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Булакты кошуу ийгиликсиздиги" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Азыр жаңыланган пакеттерди жүктөө мүмкүн. Бул пакеттер дистрибутив\n" +"чыккандан кийин жаңыланган. Алар каталар же коопсуздук\n" +"жамактарын камтышы мүмкүн.\n" +"\n" +"Жаңыланган пакеттерди жүктөп алуу үчүн иштеп жаткан Интернет \n" +"байланышы керек.\n" +"\n" +"Пакеттер орнотулсунбу?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s %s'да" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Техникалык жабдуу" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Добуш картасы" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Графикалык интерфейс" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Тармак жана Интернет" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Проксилер" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "ырасталды" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Коосуздук деңгээли" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Файервол" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "активдештирилди" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "өчүк" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Сиз X'ти ырастаган жоксуз.Чындап ушуну каалайсызбы?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Күтө туруңуз, бул бир нече убакытты алышы мүмкүн..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Бул коопсудук деңгээлде Windows бөлүмүндө жайгашкан файларда жетүү жалгыз " +"гана администраторга уруксат берилген." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "%s ичине бош флоппи дискти киргизиңиз" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Авто орнотуу флоппини түзүү..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Кээбир кадамдар бүткөн жок.\n" +"\n" +"Сиз чындап азыр чыгууну каалайсызбы?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Конфигурациялар" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Кайра жүктөө" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Тил тандоо" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Локализация" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Лицензия" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Чычкан" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Таш дискти аныктоо" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Орнотуу классы" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Алиптергич" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Коопсуздук" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Бөлүмдөргө бөлүү" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Форматоо" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Пакеттерди тандоо" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Орнотуу" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Колдонуучулар" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Баштапкы жүктөгүч" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X конфигурациялоо" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Жыйынтык" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Кызматтар" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Жаңылоолор" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Чыгуу" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Күзгүсүнүн URL'и?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL ftp:// же http:// менен башталышы керек" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Бар болгон күзгүлөр тизмесин %s веб сайтындан алынууда..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Бар болгон күзгүлөр тизмесин %s веб сайтындан алынууда ийгиликсиз " +#~ "айяктады..." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Пакеттерди алуучу күзгүнү тандаңыз" diff --git a/perl-install/install/share/po/lo.po b/perl-install/install/share/po/lo.po new file mode 100644 index 000000000..eecbf2229 --- /dev/null +++ b/perl-install/install/share/po/lo.po @@ -0,0 +1,1607 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Lao (http://www.transifex.com/MageiaLinux/mageia/language/" +"lo/)\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "ມີຂໍ້ຜິດພາດເກີດຂຶ້ນ:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "ພັດທະນາໂປຣແກຣມ" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "ຄູ່ມື" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "ຈັດການໂປແກມ" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "ຂໍສະແດງຄວາມຍິນດີເດີ້" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" diff --git a/perl-install/install/share/po/lt.po b/perl-install/install/share/po/lt.po new file mode 100644 index 000000000..dbdfb6e3a --- /dev/null +++ b/perl-install/install/share/po/lt.po @@ -0,0 +1,1664 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Moo, 2015 +# Moo, 2015-2016 +# Mykolas Norvai-as <Myka@centras.lt>, 2002 +# Tomsonas, 2016 +# Tomsonas, 2016 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Lithuanian (http://www.transifex.com/MageiaLinux/mageia/" +"language/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < " +"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? " +"1 : n % 1 != 0 ? 2: 3);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Prisijunk!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Biuro įrankiai" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Vaikams" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Šios laikmenos buvo rastos ir bus naudojamos įdiegimo metu: %s.\n" +"\n" +"\n" +"Ar turite papildomą įdiegimo laikmeną, kurią norite konfigūruoti?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Tinklas (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Tinklas (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Tinklas (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Katalogas" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Pagrindinė laida" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nelaisvoji laida" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Tam kad veiktų laisvosios programinės įrangos tvarkyklės, kai kuri, jūsų " +"kompiuteryje esanti, aparatinė įranga, reikalauja nelaisvosios programinės " +"aparatinės įrangos." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Jūs turėtumėte įjungti \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Čia, jeigu norite, galite įjungti daugiau laikmenų." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Apžvelgiami jau įdiegti paketai..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Ieškoma atnaujintinų paketų" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Klaida, skaitant failą %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Tinklas" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Failas jau yra. Perrašyti jį?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Priėjimas draudžiamas" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Įdiegimas" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Nustatymai" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Kad kai kurie tavo kompiuterio įrenginiai veiktų, jiems reikia\n" +"taip vadinamų \"proprietary\" tvarkyklių. daugiau informacijos apie jas " +"gali\n" +"rasti čia: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Paleidžiamas tinklas" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Išjungiamas tinklas" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Prašome palaukti, gaunamas failas" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopijavimas eigoje" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "turi turėti" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "svarbus" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "labai gerai" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "nuostabu" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "galbūt" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nėra aprašymo" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Įvyko klaida:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Įvyko lemtinga klaida: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Kitą kartą nebeklausti" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d įdiegimo operacijos nepavyko" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Biuro darbo stotis" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Biuro programos: tekstų redaktoriai (LibreOffice Writer, Kword), " +"skaičiuoklės (LibreOffice Calc, Kspread), pdf peržiūros programos ir pan." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Žaidimų stotis" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" +"Programos pasilinksminimui: lentos, strateginiai, kortų žaidimai ir pan." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedija stotis" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Garso ir vaizdo grojimo/redagavimo programos" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Interneto stotis" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Tinklo kompiuteris (klientas)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Įvairių protokolų klientai, įskaitant ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsolės įrankiai" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Redaktoriai, apvalkalai (shells), failų įrankiai, terminalai" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Programavimas" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C bei C++ kūrimo bibliotekos, programos ir include failai" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentacija" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Knygos ir HOWTO apie Linux ir Free Software" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Grupinis darbas" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab serveris" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Serveris, Firewall/Routeris" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP serveris" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Serveris, Duomenų bazių" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Serveris, Tinklapių/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Paštas" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafinė aplinka" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"The K Desktop Environment, pagrindinė grafinė aplinka su dideliu rinkiniu " +"pritaikytų programų" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gnome darbo stotis" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Grafinė aplinka su vartotojui draugiškų programų ir darbalaukio įrankių " +"rinkiniu" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Kiti grafiniai darbalaukiai" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Naudės" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Įvyko klaida, bet aš nežinau, kaip su ja gražiai susitvarkyti.\n" +"Tęsk darbą savo paties rizika." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Kai kurie svarbūs paketai nebuvo tvarkingai įdiegti.\n" +"Arba tavo CD-ROM kaupiklis, arba CD yra su trūkumais.\n" +"Patikrink CD įdiegtame kompiuteryje, naudodamas \"rpm -qpl media/main/*.rpm" +"\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Įeinama į žingsnį „%s“\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s įdiegimas %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> tarp elementų" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Tavo sistemoje mažai resursų. Tu gali susidurti su bėdomis, įdiegdamas\n" +"%s. Jei taip atsitiktų, gali pabandyti tekstinį diegimo būdą:\n" +"Kai užsikrauna iš CDROM'o, paspausk `F1', o tada įvesk \"text\"." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Laikmenos pasirinkimas" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME darbalaukis" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Štai \"%s\" darbalaukio peržiūra." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Spustelėkite ant paveikslų, kad pamatytumėte didesnę peržiūrą" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Paketų grupių pasirinkimas" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Atskirų paketų pasirinkimas" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Bendras dydis: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versija: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Dydis: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Tu negali pažymėti/atžymėti šio paketo" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "dėl trūkstamo %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "dėl nepatenkinto %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "bandau paaukštinti %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s išlaikymui" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Tu negali pasirinkti šio paketo, kadangi nebėra pakankamai vietos jam įdiegti" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Ruošiamasi įdiegti šiuos paketus" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Ruošiamasi pašalinti šiuos paketus" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Tai yra privalomas paketas, jis negali būti atžymėtas" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Tu negali atžymėti šio paketo. Jis jau yra įdiegtas" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Tu negali atžymėti šio paketo. Jis privalo būti atnaujintas" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Įdiegti" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Programinės įrangos tvarkyklė" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Pasirink paketus, kuriuos tu nori įdiegti" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Įdiegiama" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Liko laiko:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(apskaičiuojama...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Apibendrinimas" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Nustatyti" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Įvyko klaida" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Prašome pasirinkti savo klaviatūros išdėstymą" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Įdiegti" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Pakeiskite CD!\n" +"\n" +"Prašome įkišti CD su užrašu „%s“ į kaupiklį, tada paspausti Gerai.\n" +"Jei jūs jo neturite, spauskite Nutraukti, kad išvengtumėte įdiegimo iš šio " +"CD." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Ieškomi galimi paketai" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Įkelti" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Išsaugoti" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Darbalaukio pasirinkimas" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Galite pasirinkti savo kompiuterio darbalaukio profilį." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Ruošiamas įdiegimas" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Įdiegiamas paketas %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Įvyko klaida, bandant sutvarkyti paketus:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Vis tiek tęsti?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Konfigūracija po įdiegimo" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Atnaujinimai" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Dabar jūs turite galimybę nusistatyti internetinę laikmeną." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Tai leidžia įdiegti saugumo atnaujinimus." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Kad nusistatytumėte laikmenas, jums reikės veikiančio interneto ryšio\n" +"\n" +"Ar norite nustatyti atnaujinimų laikmeną?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Ruošiamasi įdiegti šiuos paketus" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Bandyti dar kartą?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Klaida, pridedant laikmeną" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s iš %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Aparatinė įranga" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Tinklas & Internetas" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Tarpinės stotys (proxies)" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Saugumo lygis" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Užkarda" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "uždraustas" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Ruošiama pradinės paleisties programa..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Būkite kantrūs, tai gali šiek tiek užtrukti..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Įdėk tuščią diskelį į kaupiklį %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Kuriamas automatinio įdiegimo diskelis" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Kai žingsniai buvo nebaigti.\n" +"\n" +"Ar tu nori išeiti dabar?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Sveikinimai" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Paleisti iš naujo" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Pasirink savo kalbą" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Localizacija" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licencija" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Pelė" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Kieto disko nustatymas" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Klaviatūra" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Saugumas" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Įdiegiama" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Vartotojai" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Nustatyti X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Apibendrinimas" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Paslaugų nustatymai" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Atnaujinimai" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Išeiti" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Tinklavietės URL?" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Pasirinkite tinklavietę, iš kurios gauti paketus" diff --git a/perl-install/install/share/po/ltg.po b/perl-install/install/share/po/ltg.po new file mode 100644 index 000000000..57b6878fc --- /dev/null +++ b/perl-install/install/share/po/ltg.po @@ -0,0 +1,1697 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Latgalian (http://www.transifex.com/MageiaLinux/mageia/" +"language/ltg/)\n" +"Language: ltg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Voi jiusim ir papyldus datu nesiejs?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Tyka atrosts sekojūšs datu nesiejs, kurs tiks lītuots instalacejis laikā: " +"%s.\n" +"\n" +"\n" +"Voi jiusim ir papyldus datu nesieji deļ uzstuodeišonys?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Teiklys (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Teiklys (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Teiklys (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS uzstuodeišona" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Lyudzu, īvodit hosta vuordu i jiusu NFS datu nesieja katalogu" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Kaids ir NFS monteišonys hosta vuords?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Katalogs" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Iz ituo spūguļservera navar atrast pakūtņu saroksta failu. Puorbaudit, voi " +"atsarūn pareizā vītā." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Mekleju jau īprīkš uzinstaleituos pakūtnis..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Mekleju uzlobuojamuos pakūtnis" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Teik nūdzāstys pakūtnis pyrms atjaunynuošonys..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Sekuojūšys pakūtnis tiks nūjimtys, lai varātu uzlobuot jiusu sistemu: %s\n" +"\n" +"\n" +"Voi teišom gribit nūjimt ituos pakūtnis?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Kliuda, nūlosūt failu %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Sekojūši diski tika puorsaukti:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (īprīkš tika saukta kai %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Teiklys" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Lyudzu, izavielejit datu nesieju" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Fails jau eksistej. Voi puorrakstēt pa viersu?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Pīeja līgta" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Naveiksmeigs NFS vuords" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Napareizs datu nesiejs %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Navar izveiduot ekrana attālus pyrms sadaļu izveidis" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Ekrana attāli byus pīejami piec instaleišonys %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalaceja" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfiguraceja" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Jiusim ir juoformatej ari %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Dažu jiusu datora aparaturys darbeibai napīcīšoī ``firmys'' draiveri.\n" +"Papyldus informaceju par tim varit atrast ite: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Īdorbynoju teiklu" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Atslādzu teiklu" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Teik kopātys dažys pakūtnis lītuošonai nuokūtnē" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Nūteik kopeišona" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "napīcīšoms" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "svareigs" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "ļūti vālams" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "vālams" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "varbyut" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nav aproksta" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Nūtikuse fatala kliuda: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d instalacejis transakcejis naizadeve" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Dorba staceja" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Biroja dators" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Biroja programmys: teksta procesori (LibreOffice Writer, Kword), " +"izkluojlopys (LibreOffice Calc, Kspread), PDF skateituoji, u.c." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Spēļu dators" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Izklaidis programmys: arkade, goldaspēlis, strategeja u.c." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedeju dators" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Skanis i video atskaņuošonys/redigeišonys programmys" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Interneta dators" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Reiku komplekts, lai laseitu i syuteitu postu voi jaunumus (mutt, tin..), i " +"puorlyukuotu Puorstaipteiklu" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Teikla dators (klients)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klienti dažaidim protokolim, īskaitūt ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Reiki datora konfigureišonys atvīgluošonai" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsolis reiki" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Redaktori, čaulys, failu reiki, terminali" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Izstruode" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C i C++ izstruodis bibliotekys, programmys i īkļautī faili" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentaceja" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Gruomotys i vaicuojumu par Linux i Breivū programmaturu" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linuks Standarta Bāze. Trešū izstruoduoju aplikaceju atbolsts" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Puorstaipteikla (Web) servers" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab servers" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Gunsmyurs/Maršrutizators" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Interneta vuorteja" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Posts/Jauns" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix posta servers, Inn ziņu servers" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Katalogu Servers" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP servers" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS i NIS servers" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Failu un Printeru Kūplītuošonys servers" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS servers, Samba servers" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Datubāzis" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL i MariaDB datubāžu servers" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Teimeklis/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Posts" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix posta servers" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL voi MariaDB datubāžu servers" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Teikla datoru servers" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS servers, SMB servers, storpnīkservers (Proxy), ssh servers" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafiskuo vide" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, golvonuo grafiskuo vide kūpā ar papyldus reiku " +"kolekceju" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gnome dorba staceja" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Grafiskuo vide ar lītuotuojam draudzeigu programmu komplektu i dorba " +"viersmys reikim" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Cytys grafiskuos dorba viersmys" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilitys" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH servers" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin attuolynuotuos konfiguracejis servers " + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Teikla utilitys/puorraudzeiba" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Puorraudzeibys reiki, procesu uzskaite, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia paleigi" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Servera konfiguracejis paleigi" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Nūtyka klaida, bet es nazynu, kai tū korekti apstruoduot.\n" +"Turpynuot iz jiusu poša riska." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Dažys svareigys pakūtnis naizadeve pareizi instalēt.\n" +"Ir būjuota jiusu kompaktdisku īkuorta voi instalacejis disks.\n" +"Puorbaudit disku iz instaleituo datora, izmontojūt komandu \"rpm -qpl media/" +"main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Teik uzsuokts sūļs `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s instaleišona %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> puorīt" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Jiusu sistemai tryukst resursu. %s instaleišonys laikā var\n" +"rastīs problemys. Ja tai nūteik, varit pamieginuot teksta režima " +"instaleišonu. Lai tū izdareitu,\n" +"nūspīdit`F1', kod nūteik īluode nu CDROM, tod īvodit `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Pakūtņu grupu izviele" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Atsevišku pakūtņu izviele" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Kūpejais izmārs: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Verseja: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Izmārs: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Svareigums: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Jius varit izavielēt/atsateikt nu ituos pakūtnis" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "tryukuma dieļ %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "deļ naapmīrynuojuma %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "teik mieginuots aktivizēt %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "lai saglobuot %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Jius navarit izavielēt itū pakūtni, par tū ka napīteik vītys tuos " +"instaleišonai" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Tiks instaleitys sekojūšys pakūtnis" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Tiks nūjimtys sekojūšys pakūtnis" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Itei ir obligata pakūtne, nu tuos navar atsateikt" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Jius navarit atsateikt nu ituos pakūtnis. Tei jau ir instaleita" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Jius navarit atsateikt nu ituos pakūtnis. Tū ir napīcīšoms uzlobuot" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Paruodeit automatiski izvālātuos pakūtnis" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalēt" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Īluodēt/Saglobuot izviele" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Teik atjaunynuota pakūtņu izviele" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimala instaleišona" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Programmaturys puorvaļdeišona" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Izavielejit pakūtnis, kū gribit instalēt" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Teik instaleits" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Nav detaļu" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Kūpsavylkums" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfigurēt" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nav konfigurāts" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Atrosti sekojūši instalacejis datu nesieji.\n" +"Ja jius gribit izlaist dažus nu tim, jius tagad varit nūjimt atzeimi nu tim." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Jiusim ir opceja, pyrms instalacejis nūkopēt kompaktdiska saturu uz cītu " +"disku.\n" +"Taidā veidā turpynuosīs nu cītuo diska un pakūtnis byus pīejamys cikom " +"sistema tiks piļneibā uzinstaleita." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopēt vysu kompaktdisku" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Atkluota kliuda" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Lyudzu izavielejit jiusu klaviaturys izkuortuojumu" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalēt/Atjaunynuot" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Itei ir instaleišona voi atjaunynuošona?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Atjaunynuot %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Šifreišonys atslāga deļ %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Nūmainit jiusu kompaktdisku!\n" +"\n" +"Lyudzu īlicit īkuortā Cd-Rom \"%s\", kod tys ir izdareits, nūspūdit Labi\n" +"Ja jiusim nav ituo diska, nūspīdit Atceļt, lai nainstaleitu nu ituo " +"kompaktdiska." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Mekleju pīejamuos pakūtnis" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Lyudzu izavielejit īluodēt voi saglobuot pakūtņu izvieli.\n" +"Formats ir taids pats, kai ar auto_install generātom failim." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Īluodēt" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Saglobuot" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Napareizs fails" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Izvālātais apjūms ir leluoks nakai pīejamuo vīta" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Instalacejis tips" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Jius naizavielēt nivīnu pakūtņu grupu.\n" +"Lyudzu, izavielejit minimalū instalaceju, kaidu jius gribit:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Ar X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Ar pamatdokumentaceju (īteicams!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Patīši minimala instalaceja (īpaši bez urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Sagataveju instaleišonu" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instaleju pakūtni %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Pakūtņu kuortuošonys laikā atkluota kliuda:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Tūmār turpynuot?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Piecinstaleišonys konfigureišona" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Lyudzu, puorsalīcynojit ka Update Modules atsarū īkuortā %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Atjaunynuojumi" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Tiks instaleitys sekojūšys pakūtnis" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Tagad jiusim ir īspieja šurpsyutēt atjaunynuotuos pakūtnis. Šuos pakūtnis " +"tyka atjaunynuotys \n" +"piec šuos distribucejis izlaišonys. Tuos var saturēt\n" +"drūšeibys voi kliudu lobuojumus.\n" +"\n" +"Lai šursyuteitu šuos pakūtnis, jiusim juobyut Interneta \n" +"savīnuojums.\n" +"\n" +"Voi jius gribit instalēt atjaunynuojumus?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s iz %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Aparatura" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Skanis karte" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafiskuo saskarne" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Teiklys & Internets" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Storpnīkserveri" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "konfigurāts" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Drūšeibys leimiņs" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Guņsmyurs" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktivizāts" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "atslāgts" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"Jiusim nav nūkonfigurāts X servers. Voi jius asot puorlīcynuoti, ka jius tū " +"gribit?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Šymā drūšeibys leiminī, pīeeja Windows sadalis failim ir tikai " +"administratoram." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Īlicit tukšu disketi īkuortā %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Sagataveju auto instaleišonys disketi" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Daži sūli nav izpiļdeiti.\n" +"\n" +"Voi tīšom gribit izīt tagad?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Apsveicam" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Puorsuoknēt" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Volūdys izviele" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokaliziešona" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "License" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Pele" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Cītuo diska nūteikšona" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Instaleišonys klase" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Klaviatura" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Drūšeiba" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Diska sadaleišona" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formateišona" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Pakūtņu izviele" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Teik instaleits" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Lītuotuoji" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Suokneituojs" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X konfigureišona" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Kūpsavylkums" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servisi" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Atjaunynuojumi" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Izīt" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Voi spūguļservera URL?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL juosasuoc ar ftp:// voi http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Pīsaslādzu %s teimekļam, lai sajimtu pīejamū spūguļserveru sarokstu..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Dasasliegšona %s teimekļam cīta naveiksmi, lai sajimtu pīejamū " +#~ "spūguļserveru sarokstu" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Izavielejit spūguļserveri, nu kura jimt pakūtnis" diff --git a/perl-install/install/share/po/lv.po b/perl-install/install/share/po/lv.po new file mode 100644 index 000000000..729eb2ee6 --- /dev/null +++ b/perl-install/install/share/po/lv.po @@ -0,0 +1,1651 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Latvian (http://www.transifex.com/MageiaLinux/mageia/language/" +"lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Katalogs" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Meklēju jau iepriekš uzinstalētās pakotnes..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Meklēju uzlabojamās pakotnes" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Sekojošas pakotnes tiks noņemtas, lai varētu uzlabot Jūsu sistēmu: %s\n" +"\n" +"\n" +"Vai tiešām vēlaties noņemt šīs pakotnes?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Kļūda, nolasot failu %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Tīkls" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Pieeja liegta" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Nevar izveidot ekrāna attēlus pirms sadaļu izveides" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Ekrāna attēli būs pieejami pēc instalēšanas %s." + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfigurācija" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Jums ir jāformatē arī %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Dažu jūsu datora dzelžu darbībai nepieciešami ``firmas'' draiveri.\n" +"Papildus informāciju varat atrast šeit: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Iedarbinu tīklu" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Atslēdzu tīklu" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "nepieciešama" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "svarīga" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "ļoti derīga" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "derīga" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "varbūt" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Darbastacija" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Biroja dators" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Biroja programmas: teksta procesori (LibreOffice Writer, Kword), izklājlapas " +"(LibreOffice Calc, Kspread), pdf skatītāji, u.c." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Spēļu dators" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Izklaides programmas: arkāde, galdiņspēles, stratēģija u.c." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimēdiju dators" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Skaņas un video atskaņošanas/rediģēšanas programmas" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Interneta dators" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Tīkla dators (klients)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klienti dažādiem protokoliem, ieskaitot ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Rīki datora konfigurēšanas atvieglošanai" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsoles rīki" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Redaktori, čaulas, failu rīki, termināļi" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Izstrāde" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C un C++ izstrādes bibliotēkas, programmas un include faili" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentācija" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Grāmatas un Howto faili par Linux un Brīvo programmatūru" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Web serveris" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab serveris" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Ugunsmūris/Maršrutizators" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Interneta vārteja" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP serveris" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Datubāzes" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Tīmeklis/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Pasts" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL vai MariaDB datubāzu serveris" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Tīkla datoru serveris" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS serveris, SMB serveris, Proxy serveris, ssh serveris" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafiskā vide" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, galvenā grafiskā vide kopā ar papildus rīku kolekciju" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gnome darbastacija" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Grafiskā vide ar lietotājiem draudzīgu programmu komplektu un darbavirsmas " +"rīkiem" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Citas grafiskās darbavirsmas" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilites" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH serveris" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Atklāta kļūda, bet es nezinu, kā ar to pareizi apieties.\n" +"Turpiniet, ja vēlaties riskēt." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Dažas svarīgas pakotnes neizdevās pareizi instalēt.\n" +"Ir bojāta jūsu kompaktdisku iekārta vai instalācijas disks.\n" +"Parbaudiet disku uz instalēta datora, izmantojot komandu \"rpm -qpl media/" +"main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Uzsāku soli `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s instalēšana %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> pāriet" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Jūsu sistēmai trūkst resursu. %s instalēšanas laikā var\n" +"rasties problēmas. Ja tā notiek, varat pamēģināt teksta instalēšanu.\n" +"Lai to izdarītu, nospiediet`F1', ka notiek ielāde no CDROM, tad ievadiet\n" +"`text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Pakotņu grupu izvēle" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Atsevišķu pakotņu izvēle" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Kopējais izmērs: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versija: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Apjoms: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Svarīgums: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Jūs varat izvēlēties/atteikties no šīs pakotnes" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Jūs nevarat izvēlēties šo pakotni, jo nepietiek vietas tās instalēšanai" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Tiks instalētas sekojošas pakotnes" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Tiks noņemtas sekojošas pakotnes" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Šī ir obligāta pakotne, no tās nevar atteikties" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Jūs nevarat atteikties no šīs pakotnes. Tā jau ir instalēta" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Jūs nevarat atteikties no šīs pakotnes. To ir nepieciešams uzlabot" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Parādīt automātiski izvēlētās pakotnes" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalēt" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Atjaunoju pakotņu izvēli" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimāla instalēšana" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Software Management" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Izvēlieties pakotnes, ko vēlaties instalēt" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalēju" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Kopsavilkums" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfigurēt" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Atklāta kļūda" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Lūdzu izvēlieties jūsu tastatūras izkārtojumu" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalēt" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Nomainiet Cd-Rom!\n" +"\n" +"Lūdzu ielieciet iekārtā Cd-Rom \"%s\", kad tas ir izdarīts, nospiediet Labi\n" +"Ja jums nav šī diska, nospiediet Atcelt, lai neinstalētu no šī Cd-Rom." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Meklēju pieejamās pakotnes" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Ielādēt" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Saglabāt" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Izvēlētais apjoms ir lielāks nekā pieejamā vieta" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Instalācijas tips" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Jūs neizvēlējāties nevienu pakotņu grupu.\n" +"Lūdzu, izvēlieties minimālo instalāciju, kādu vēlaties:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Ar X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Ar pamatdokumentāciju (ieteicams!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Patiesi minimāla instalācija (īpaši bez urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Sagatavoju instalēšanu" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instalēju pakotni %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Pakotņu kārtošanas laikā atklāta kļūda:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Tomēr turpināt?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Pēcinstalēšanas konfigurēšana" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Atjaunināt" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Tiks instalētas sekojošas pakotnes" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s uz %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Dzelži" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Skaņas karte" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Tīkls & Internets" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Drošības Līmenis" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Ugunssiena" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "aizliegts" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Ielieciet tukšu disketi iekārtā %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Sagatavoju auto instalēšanas disketi" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Daži soļi nav izpildīti.\n" +"\n" +"Vai tiešām vēlaties iziet tūlīt?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Apsveicam" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Pārstartēt" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Valodas izvēle" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licence" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Pele" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Cietā diska noteikšana" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastatūra" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Drošība" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalēju" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Lietotāji" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X konfigurēšana" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Kopsavilkums" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servisi" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Iziet" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Pieslēdzos %s tīmeklim, lai saņemtu pieejamo spoguļserveru sarakstu " +#~ "sarakstu..." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Izvēlieties spoguļserveri, no kura ņemt pakotnes" diff --git a/perl-install/install/share/po/mk.po b/perl-install/install/share/po/mk.po new file mode 100644 index 000000000..1de56a093 --- /dev/null +++ b/perl-install/install/share/po/mk.po @@ -0,0 +1,1700 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Danko Ilik <danko@mindless.com>, 2002-2003 +# Danko Ilik <danko@on.net.mk>, 2003 +# Vladimir Stefanov <vladoboss@mt.net.mk>, 2003 +# misterioz <zoki.dimovski@gmail.com>, 2006 +# Зоран Димовски <decata@mt.net.mk>, 2004 +# Зоран Димовски <zoki@email.com>, 2003 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Macedonian (http://www.transifex.com/MageiaLinux/mageia/" +"language/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Дали имате уште додатни медиуми?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Пронајдени се следниве медиуми и ќе се користат во текот на инсталацијата: " +"%s.\n" +"\n" +"\n" +"Дали имате додатен инсталационен медиум за конфигурирање?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Мрежа (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Мрежа (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Мрежа (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Поставување на „NFS“" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" +"Ве молиме внесете го името на домаќинот и директориумот на вашиот „NFS“ " +"медиум" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Име на домаќинот каде е монтиран „NFS“ ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Директориум" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "Не мојажам да ја пронајдам hdlist датотеката на ова огледало" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Барање пакети што се веќе инсталирањен..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Барање пакети за надградба..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Отстранување на пакети поради надградување..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Следниве пакети ќе бидат отстранети за да се овозможи надградба на Вашиот\n" +"систем: %s\n" +"\n" +"\n" +"Дали навистина сакате да се избришат овие пакети?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Грешка при читање на датотеката %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Следниве дискови се преименувани:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (претходно именувано како %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Мрежа" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Ве молиме изберете медиум" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Датотеката веќе постои. Да се запише врз неа?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Недозволен пристап" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Лошо „NFS“ име" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Невалиден медиум %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Не можат да се прават снимки на екран пред партицирање" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Екранските снимки ќе бидат достапни по инсталацијата во %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Инсталација" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Конфигурација" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Мора да го форматирате и %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"На дел од хардверот на Вашиот компјутер му се потребни \"затворени\"\n" +"(proprietary) драјвери за да работи. Некои информации за тоа можете\n" +"да најдете на: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Подигање на мрежата" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Спуштање на мрежата" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Копирање на некои пакети на дискот за понатамошна употреба" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Копирањето е во тек" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "мора да се има" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "важно" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "одлично" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "убаво" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "можеби" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Нема опис" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Се случи фаталната грешка: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d неуспешни трансакциии на инсталацијата" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Работна станица" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Канцелариски" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Канцелариски програми: обработка на текст (LibreOffice Writer, Kword), " +"табеларни пресметки (LibreOffice Calc, Kspread), прегледувачи на „PDF“ итн." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Станица за игри" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Забавни програми: аркадни, на табла, стратегија, итн." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Мултимедијална станица" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Програми за пуштање и уредување на звук и видео" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Интернет станица" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Комплет алатки за читање и пракање е-пошта и вести (mutt, tin..) и " +"прелистување на Интернет" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Мрежен компјутер (клиент)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Клиенти за различни протоколи, вклучувајќи и „ssh“" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Алатки за лесно конфигурирање на вашиот компјутер" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Конзолски алатки" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Уредувачи, школки, алатки за датотеки, терминали" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Развој" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Развивачки датотеки за „C“ и „C++“, програми и „include“ датотеки" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Документација" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Книги и „Како да“ за „Linux“ и слободен софтвер" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "„Linux Standard Base“. Поддршка за апликации од други фирми" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Веб сервер" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Групи" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Сервер" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Интернет gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Пошта/Вести" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "„Postfix“ сервер за пошта, „Inn“ сервер за вести" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Директориумски сервер" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "„FTP“ сервер" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Име на доменот и сервер за мрежни информации" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Сервер за споделување на датотеки и печатач" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "„NFS“ сервер, „Samba“ сервер" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "База на податоци" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "„PostgreSQL“ и „MariaDB“ сервер за бази на податоци" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Пошта" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix сервер за пошта" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "„PostgreSQL“ или „MariaDB“ сервер за бази на податоци" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Мрежен компјутер-сервер" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "„NFS“ сервер, „SMB“ сервер, „Proxy“ сервер, „ssh“ сервер" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Графичка околина" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"„К“ работна околина, основната графичка околина со додатна колекција на " +"придружни алатки" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "„GNOME“ работна станица" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Графичка околина со кориснички пакет на алатки и алатки за работната површина" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Други графички работни околини" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Помошни алатки" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH Сервер" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "„Webmin“" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "„Webmin“ оддалечен сервер за конфигурирање" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Мрежни помошни алатки/надгледување" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Алатки за надгледување, раководење на процеси, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "„Mageia“ волшебници" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Волшебници за конфигурирање на сервер" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Се случи грешка, но не знам како добро да се справам со неа.\n" +"Продолжете на сопствен ризик." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Некои важни пакети не се инсталираа како што треба.\n" +"Нешто не е во ред, или со Вашиот цедером или со цедеата.\n" +"Проверете ги цедеата на инсталиран компјутер користејќи\n" +"\"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Премин на чекор \"%s\"\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Инсталација %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> помеѓу елементи" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Вашиот систем е слаб со ресурси. Може да Ви се појават проблеми\n" +"при инсталирање %s. Ако тоа се случи, пробајте со текстуална инсталација.\n" +"За тоа, притиснете \"F1\" кога ќе се подигне цедеромот, и потоа внесете\n" +"\"text\"." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Групна селекција на пакети" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Подделна селекција на пакети" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Сите се неселектирани" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Вкупна големина: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Верзија:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Големина: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Важност: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Не можете да (не) го изберете овој пакет" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "поради недостасување на %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "поради незадоволување на %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "се обидувам да промовирам %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "за да се задржи %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Не можете да го изберете овој пакет, зашто нема доволно простор да се " +"инсталира" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Ќе бидат инсталирани следниве пакети" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Следниве пакети ќе бидат отстранети" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ова е неопходен пакет, и не може да не се избере" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Не може да не го изберете овој пакет. Веќе е инсталиран" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" +"Не можете да не го изберете овој пакет. Тој мора да се надгради (upgrade)" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Прикажи ги автоматски избраните пакети" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Инсталирај" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Вчитај/зачувај избор" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Освежување на изборот на пакети" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Минимална инсталација" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Менаџмент на софтвер" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Изберете ги пакетите што сакате да се инсталираат" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Инсталирање" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Без детали" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Резиме" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Конфигурирај" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "не е конфигурирано" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Пронајдени се следниве инсталациски медиуми.\n" +"Ако сакате да отстранете некои, можете сега да ги дештиклирате." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Имате опција да ја копирате содржината на CD-ата на дискот, пред самата " +"инсталација.\n" +"Потоа, инсталацијата ќе продолжи од хард дискот и пакетите ќе бидат достапни " +"се додека системот е целосно инсталиран." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Копирај ги сите CD-а" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Се случи грешка" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Изберете распоред на тастатура" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Инсталирај/Надогради" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Дали е ова инсталација или надградба?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Инсталација" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Надгради %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Криптирачки клуч за %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Сменете го CD-то!\n" +"\n" +"Внесете го CD-то со наслов \"%s\" во вашиот уред и притиснете \"Во ред\".\n" +"Ако го немате, притиснете \"Откажи\" за да не инсталирате од ова CD." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Барање достапни пакети..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Ве молиме изберете „вчитај“ или „зачувај“ го изборот на пакети\n" +"Форматот е ист како за генерирани датотеки од „auto_install“." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Вчитај" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Зачувај" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Лоша датотека" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Избраната големина е поголема од слободниот простор" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Тип на инсталација" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Не сте избрале ниту една група пакети.\n" +"Изберете ја минималната инсталација што ја сакате:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Со X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Со основна документација (препорачано!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Вистински минимална инсталација (без urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Подготовка на инсталацијата" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Инсталирање на пакетот %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Се случи грешка во подредувањето на пакетите:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Да продолжиме?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Пост-инсталациона конфигурација" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Ве молиме проверете дали медиумот со модулите за надградување е во уредот %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Надградби" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Ќе бидат инсталирани следниве пакети" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Неуспех при додавање медиум" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Имате можност да преземете надградени пакети. Овие пакети се издадени\n" +"по издавањето на дистрибуцијата. Можно е да содржат поправки на\n" +"грешки или безбедност.\n" +"\n" +"За преземање на овие пакети, потребно е да имате функционална Интернет\n" +"врска.\n" +"\n" +"Дали сакате да ги инсталирате надградбите?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s на %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Хардвер(машински дел)" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Звучна картичка" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Графички интерфејс" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Мрежа и Интернет" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Прокси" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "конфигурирано" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Ниво на сигурност" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "активиран" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "оневозможено" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Се уште го ш конфигурирано Х. Дали навистина сакаш да го направиш ова?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Во ова безбедносно ниво, пристап до датотеките кои се наоѓаат на „Windows“ " +"партицијата е дозволен само на администраторот." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Внесете празна дискета во %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Создавање дискета за авто-инсталација..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Некои чекори не се завршени.\n" +"\n" +"Дали навистина сакате сега да напуштите?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Честитки" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Рестартирај" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Јазик" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Лиценца" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Глушец" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Детекција на хард дискот" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Класа на инсталација" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Тастатура" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Безбедност" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Партиционирање" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Форматирање" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Избирање на пакети" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Инсталирање" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Корисници" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Подигач" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Конфигурирај Х" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Резиме" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Сервиси" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Надградби" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Излез" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL на огледалото?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL-то мора да започнува со „ftp://“ или „http://“" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Контактирање со веб сајтот на %s за добивање на листата на огледала..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Не може да се воспостави врска веб страница на „%s“ за да се добие " +#~ "листата на достапни огледала" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Изберете огледало од кое да се преземат пакетите" diff --git a/perl-install/install/share/po/mn.po b/perl-install/install/share/po/mn.po new file mode 100644 index 000000000..fb259f3e7 --- /dev/null +++ b/perl-install/install/share/po/mn.po @@ -0,0 +1,1611 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Khurelbaatar Lkhagavsuren <hujii247@yahoo.com>, 2003 +# Khurelbaatar Lkhagvasuren <hujii247@yahoo.com>, 2003 +# Sanlig Badral <Badral@openmn.org>, 2004 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Mongolian (http://www.transifex.com/MageiaLinux/mageia/" +"language/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Лавлах" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Сүлжээ" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Хандалт нурлаа" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Хуваалт үүсгэхийн өмнө агшин дэлгэцүүдийг хийж чадахгүй" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Тохиргоо" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "маш аятайхан" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "аятайхан" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "магадгүй" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Тайлбар алга" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Хөгжүүлэл" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Баримтжуулалт" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Интернэт гарц" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP Сервер" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Өгөгдлийн сан" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Мэйл" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Тусдаа дан багц сонгох" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Хувилбар: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Хэмжээ: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d КБ\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Дараах багцууд суулгагдах гэж байна" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Автоматаар сонгогдсон багцуудыг харуулах" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Суулга" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Сонгохыг хүсэж буй багцаа сонгоно уу" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Суулгалт" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Дүгнэлт" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Тохируулах" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Та гарын байрлалаа сонгоно уу" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Суулга" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Процессор ачаалж байна" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Хадгалах" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "Гном" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Сонгогдсон хэмжээ нь боломжтой зайнаас их байна" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Суулгалтын бэлтгэл" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Суулгалтын тохируулгыг батал" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Шинэчлэх" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Дараах багцууд суулгагдах гэж байна" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s -д %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Техник хангамж" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Дууны карт" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Хамгаалалтын төвшин" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "хаалттай" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Та Х-г тохируулаагүй байна. Та үүнийг хийхдээ итгэлтэй байна уу?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Дахин ачаал" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Хэл" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Хулгана" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Хатуу диск хөтлөгч танилт" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Гар" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Нууцлал" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Суулгалт" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Хэрэглэгчид" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Дүгнэлт" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Үйлчилгээ" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Гарах" diff --git a/perl-install/install/share/po/mr.po b/perl-install/install/share/po/mr.po new file mode 100644 index 000000000..c236ff535 --- /dev/null +++ b/perl-install/install/share/po/mr.po @@ -0,0 +1,1608 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Marathi (http://www.transifex.com/MageiaLinux/mageia/language/" +"mr/)\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "विकास" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "जीनोम" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "पुन्हा सुरु करा (रीबूट)" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" diff --git a/perl-install/install/share/po/ms.po b/perl-install/install/share/po/ms.po new file mode 100644 index 000000000..4787605dd --- /dev/null +++ b/perl-install/install/share/po/ms.po @@ -0,0 +1,1620 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>, 2003,2008 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Malay (http://www.transifex.com/MageiaLinux/mageia/language/" +"ms/)\n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Direktori" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rangkaian" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Izin ditolak" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfigurasikan" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Penyalinan sedang dilakukan" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Tiada keterangan" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "StesyenKerja" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Pembangunan" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentasi" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Pelayan Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Pelayan Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Pelayan Direktori" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Pelayan FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Pangkalan Data" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Mel" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utiliti" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Ralat telah berlaku, tetapi saya tidak tahu bagaimana untuk mengawalnya " +"dengan baik.\n" +"Teruskan atas risiko anda." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versi: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Saiz: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "kerana kehilangan %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "kerana ketidakpuasan %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "cuba untuk menaikkan %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "untuk menyimpan %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Pasang" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Pengurusan Perisian" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Memasang" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Ringkasan" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Buat konfigurasi" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Ralat telah berlaku" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Pasang" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Muatan" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Simpan" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Memasang pakej %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Tedapat ralat menyusun pakej:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Teruskan juga?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Ulangcuba" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Langkau pakej ini" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Langkau semua pakej dari media \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Kembali ke pemilihan pakej dan media" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Tedapat ralat memasang pakej %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Tetapan pasca pemasangan" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Kemaskini" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Gagal apabila menambah media" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Sekarang anda mempunyai peluang untuk memuatturun pakej dikemaskini. Pakej " +"ini\n" +"telah dikemaskini selepas edaran dilancarkan. Mereka mungkin\n" +"mengandungi pembetulan pepijat atau keselamatan.\n" +"\n" +"Untuk memuatturun pakej ini, anda perlu mempunyai sambungan Internet yang\n" +"berfungsi.\n" +"\n" +"Adakah anda mahu memasang kemaskini tersebut?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s pada %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Perkakasan" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Kad bunyi" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Antaramuka Bergrafik" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rangkaian & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proksi" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "ditetapkan" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Tahap Keselamatan" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "dimatikan" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Masukkan cakera liut kosong dalam pemacu %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Mencipta cakera liut auto pasang..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Tahniah" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Boot semula" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Bahasa" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lesen" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Tetikus" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Pengesanan cakera keras" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Papan Kekunci" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Keselamatan" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Pempartisyenan" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Memasang" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Pengguna" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Ringkasan" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Perkhidmatan" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Kemaskini" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Keluar" diff --git a/perl-install/install/share/po/mt.po b/perl-install/install/share/po/mt.po new file mode 100644 index 000000000..8229642f3 --- /dev/null +++ b/perl-install/install/share/po/mt.po @@ -0,0 +1,1672 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Ramon Casha <ramon.casha@linux.org.mt>, 2002-2004 +# Ramon Casha <rcasha@waldonet.net.mt>, 2003 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Maltese (http://www.transifex.com/MageiaLinux/mageia/language/" +"mt/)\n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n" +"%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Għandek iżjed sorsi supplimentari?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Network (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Network (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Direttorju" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "Ma nistax insib fajl hdlist fuq din il-mera" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Qed naqra l-pakketti diġà nstallati..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Qed insib pakketti x'naġġorna" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Dawn il-pakketti se jitneħħew biex iħalluk taġġorna s-sistema: %s\n" +"\n" +"\n" +"Żgur li trid tneħħi dawn il-pakketti?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Problema fil-qari tal-fajl %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Network" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permess miċħud" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Ma nistax nieħu ritratti tal-iskrin qabel toħloq il-partizzjonijiet" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Ir-ritratti jkunu disponibbli wara l-installazzjoni f' %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfigurazzjoni" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Trid ukoll tifformattja %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Xi apparat fil-kompjuter tiegħek jeħtieġ drajvers speċjali biex jaħdem.\n" +"Tista' ssib iżjed informazzjoni dwarhom fuq: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Qed intella' n-network" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Qed inniżżel in-network" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "neċessarju" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "importanti" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "tajjeb ħafna" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "tajjeb" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "forsi" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Inqalgħet problema fatali: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d tranżazzjonijiet ta' installazzjoni fallew" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Workstation" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kompjuter tal-Uffiċċju" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programmi tal-uffiċċju: wordprocessors (LibreOffice Writer, Kword), " +"spreadsheet (LibreOffice Calc, Kspread) eċċ" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Logħob" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programmi ta' divertiment: logħob tal-arcaDES, karti, strateġija eċċ" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedja" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programmi għad-daqq u editjar ta' awdjo u video" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Sett għodda biex taqra u tibgħat imejl u \"news\", u biex tibbrawżja l-web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Kompjuter fuq network (klijent)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klijenti għal protokolli differenti, eż. SSH" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Għodda biex tiffaċilita l-konfigurazzjoni tal-kompjuter" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Għodda tal-konsol" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Edituri, shells, għodda tal-fajls, terminals" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Żviluppar" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Libreriji, programmi u fajls għal żviluppar C u C++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentazzjoni" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Kotba u \"HOWTO\" dwar il-Linux u Softwer Ħieles" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Sapport ta' programmi ta' terzi partiti" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Server tal-web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Server Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Gateway tal-internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Server FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Database" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Imejl" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Server tal-imejl Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Server tad-database PostgreSQL jew MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Kompjuter Server tan-Network" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Servers NFS, SMB, Proxy, ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Ambjent Grafiku" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, l-interfaċċja grafika bażi, b'għażla ta' għodda " +"jakkumpanjawha" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Stazzjon GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Ambjent grafiku b' għażla ta' programmi u għodda faċli" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Desktops Grafiċi Oħrajn" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Server SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Inqalgħet problema, imma ma nafx kif nieħu ħsieba sew.\n" +"Tista' tkompli b'riskju tiegħek" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Xi pakketti importanti ma ġewx installati sew.\n" +"Jew id-drajv tas-CDROM, jew is-CD nnifisha huma difettużi.\n" +"Tista' tiċċekkja s-CD fuq kompjuter diġà nstallat permezz tal-kmand \"rpm -" +"qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Dieħel fil-pass \"%s\"\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Installazzjoni %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> bejn l-elementi" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Is-sistema hija nieqsa mir-riżorsi. Jista' jkollok problema biex tinstalla \n" +"l-%s. Jekk jiġri dan, ipprova installazzjoni testwali. Għal dan,\n" +"agħfas F1 meta titla' s-CD, imbagħad ittajpja \"text\"." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Għażla ta' gruppi ta' pakketti" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Agħżel pakketti individwalment" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Xejn magħżul" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Daqs totali: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Verżjoni: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Daqs: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importanza: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Ma tistax tagħżel/tneħħi dan il-pakkett" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "minħabba %s nieqes" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "minħabba %s mhux sodisfatt" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "qed nipprova nippromwovi %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "sabiex inżomm %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Ma tistax tagħżel dan il-pakkett għax ma fadalx biżżejjed spazju għalih" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Dawn huma l-pakketti li se jiġu nstallati" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Dawn huma l-pakketti li se jiġu mneħħija" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Dan il-pakkett huwa kruċjali, ma jistax jitneħħa" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Ma tistax tneħħi l-għażla minn dan il-pakkett, diġà nstallat." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Ma tistax tneħħi l-għażla minn dan il-pakkett. Irid jiġi aġġornat." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Uri l-pakketti magħżula awtomatikament" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installa" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Qed naġġorna l-għażla ta' pakketti" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Installazzjoni minima" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Maniġġjar ta' softwer" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Agħżel il-pakketti li trid tinstalla" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Qed ninstalla" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Ebda dettalji" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Sommarju" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Ikkonfigura" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "mhux konfigurat" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Dawn is-sorsi ta' installazzjoni instabu.\n" +"Jekk trid taqbeż uħud minnhom, tista' tneħħi l-marka issa." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Inqalgħet problema" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Jekk jogħġbok agħżel tqassim tat-tastiera" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installa/Aġġorna" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Din hija installazzjoni ġdida jew aġġornament?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installa" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Aġġorna %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Ċifrarju għal %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Ibdel is-CD-ROM!\n" +"\n" +"Jekk jogħġbok daħħal id-diska mmarkata \"%s\" fid-drajv u agħfas Ok meta " +"tlesti.\n" +"Jekk m'għandekx din id-diska, agħfas \"Ikkanċella\" biex taqbeż il-pakketti " +"li qegħdin fuqha." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Qed insib pakketti disponibbli" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Ikteb" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Id-daqs tal-għażla huwa ikbar mill-ispazju disponibbli" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tip ta' installazzjoni" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Għadek m'għażilt ebda grupp ta' pakketti\n" +"Jekk jogħġbok agħżel installazzjoni minima li trid:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Bl-XWindows" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "B' dokumentazzjoni bażika (rakkomandat)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Installazzjoni verament minima (mingħajr urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Qed nipprepara l-installazzjoni" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Qed jinstalla il-pakkett %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Kien hemm problema fl-ordni tal-pakketti:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Trid tkompli xorta?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Konfigurazzjoni ta' wara l-installazzjoni" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Aġġornamenti" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Dawn huma l-pakketti li se jiġu nstallati" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Problema waqt iż-żieda ta' sors" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Issa għandek l-opportunità li tniżżel pakketti aġġornati. Dawn ġew " +"ippubblikati \n" +"wara li din id-distribuzzjoni inħarġet. Jistgħu jinkludu tiswijiet ta' " +"problemi jew \n" +"sigurtà.\n" +"\n" +"Biex tniżżel dawn il-pakketti, jrid ikollok konnessjoni mal-internet qed " +"taħdem.\n" +"\n" +"Trid tinstalla dawn l-aġġornamenti?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s fuq %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Ħardwer" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Kard awdjo" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfaċċja grafika" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Network u internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxies" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "konfigurat" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Livell ta' sigurtà" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewallr" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "attivat" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "mitfi" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Għadek ma kkonfigurajtx X. Żgur trid hekk?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"F'dan il-livell ta' sigurtà, l-aċċess għall-fajls fuq il-partizzjoni tal-" +"Windows huwa ristrett għall-amministratur." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Daħħal flopi vojta fid-drajv %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Qed jinħoloq flopi awto-installazzjoni" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Xi passi ma ġewx finalizzati.\n" +"\n" +"Trid toħroġ issa?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Prosit" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Irributja" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Agħżel il-lingwa" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Liċenzja" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Maws" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Għarfien tal-ħard disk" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastiera" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sigurtà" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partizzjonament" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Qed ninstalla" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Users" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Ikkonfigura X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Sommarju" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servizzi" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Aġġornamenti" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Oħroġ" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL tal-mera?" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Qed nikkuntattja l-website ta' %s biex nikseb lista tal-mirja disponibbli" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Agħżel mera minn fejn trid iġġib il-pakketti" diff --git a/perl-install/install/share/po/nb.po b/perl-install/install/share/po/nb.po new file mode 100644 index 000000000..0e7f62aa2 --- /dev/null +++ b/perl-install/install/share/po/nb.po @@ -0,0 +1,1708 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Andreas Bergstrøm <abergstr@halden.net>, 2000 +# Eskild Hustvedt <eskild@goldenfiles.com>, 2004 +# Eskild Hustvedt <zerodogg@skolelinux.no>, 2004-2005 +# Karl Morten Ramberg <karl.m.ramberg@gmail.com>, 2017-2020,2022 +# Keld Simonsen <keld@dkuug.dk>, 2004,2007 +# Kenneth Rørvik <kenneth@argon.no-ip.com>, 2003 +# Marius Laache <blakern_@hotmail.com>, 2007 +# Olav Dahlum <odahlum@gmail.com>, 2009-2010 +# Per Øyvind Karlsen <peroyvind@mandrivalinux.org>, 2004-2005 +# Per Øyvind Karlsen <peroyvind@mandriva.org>, 2007 +# Per Øyvind Karlsen <peroyvind@sintrax.net>, 2003-2004 +# Per Øyvind Karlsen <pkarlsen@mandriva.com>, 2005-2006 +# Stig-Ørjan Smelror <smelror@gmail.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>, " +"2017-2020,2022\n" +"Language-Team: Norwegian Bokmål (http://app.transifex.com/MageiaLinux/mageia/" +"language/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Bli med oss!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Gjør det ditt!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Ditt valg!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Kontorverktøy" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Hjemmeunderholdning" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "For barn" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "For familier" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "For utviklere" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Takk!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Vær fri!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Har du flere ekstra medier?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Følgende medier er funnet, og vil bli benyttet under installasjonen: %s.\n" +"\n" +"\n" +"Har du flere installasjonsmedier å sette opp?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Nettverk (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Nettverk (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Nettverk (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-oppsett" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Tast inn vertsnavnet og mappen til ditt NFS-medie" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Vertsnavn mangler" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Mappenavnet må starte med \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Vertsnavn til NFS-monteringen ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Mappe" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Ekstra" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Kan ikke finne pakkelistefil på dette speilet. Kontrollér at adressen er " +"riktig." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Kjerneutgivelse" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Smittetutgivelse" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Ikke-friutgivelse" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Maskinvaren i din maskin trenger enkelte ikke-fri \"firmware\" for at de " +"frie programvaredriverne skal fungere." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Du bør aktivere \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" inneholder de enkelte delene av systemet og dets applikasjoner" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" inneholder ikke-fri programvare\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Det inneholder også \"firmware\" som kreves for at enkelte enheter skal " +"fungere. ( feks noen ATI/AMD grafikkort, noen nettverkskort, noen RAID " +"kort....)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" inneholder programvare som ikke kan distribueres i enkelte land pga " +"programvarepatenter." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Det inneholder også programvare fra \"%s\" ombygging med tilleggsegenskaper." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Her kan du aktivere flere media hvis du vil." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Dette mediet har pakkeoppdateringer for medium \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Ser på pakker som allerede er installert … " + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Finner pakker som skal oppgraderes … " + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Fjerner pakker før oppgradering … " + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"De følgende pakkene vil bli fjernet for å tillate oppgradering av systemet " +"ditt: %s\n" +"\n" +" \n" +"Ønsker du å fjerne disse pakkene?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Feil ved lesing av fil %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "De(n) følgende disken(e) fikk nytt navn:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (tidligere kalt %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Nettverk" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Velg et medium" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Filen eksisterer allerede. Overskriv?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Adgang nektet" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Ugyldig NFS-navn" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Feil på media %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Jeg kan ikke ta skjembilder før partisjonering." + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Skjermbilder vil være tilgjengelig etter installasjon i %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installasjon" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Oppsett" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Du må også formatere %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Noe maskinvare i maskinen din trenger «proprietære» drivere for å virke.\n" +"Du kan finne noe informasjon om disse her: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Henter opp nettverket" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Tar ned nettverket" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Vennligst vent, henter fil" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "kunne ikke legge til medium" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopiér noen pakker på disken for framtidig bruk" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiering pågår" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "må ha" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "viktig" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "veldig bra" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "bra" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "kanskje" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Henter pakkeinformasjon fra XML metadata..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "Ingen xml-info for mediet «%s», bare delvis resultat for pakke %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Ingen beskrivelse" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Noen pakker krevet av %s kan ikke installeres\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "En feil oppstod:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Det oppsto en kritisk feil: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Ikke spør igjen" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d mislykket installasjonstransaksjon" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Installasjon av pakker feilet:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Arbeidsstasjon" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kontorarbeidsstasjon" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Kontorstøtteprogrammer: tekstbehandlere (LibreOffice Writer, Kword), " +"regneark (LibreOffice Calc, Kspread), PDF-framvisere, etc" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Spillstasjon" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Underholdningsprogrammer: arkade, brettspill, strategi, etc" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimediastasjon" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Lyd- og videoavspilling/redigeringsprogrammer" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internettstasjon" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Et sett med verktøy for å lese og sende e-post og nyheter (mutt, tin..) og " +"til å surfe på nettet" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Nettverksmaskin (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klienter for forskjellige protokoller inkludert ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Verktøy for å forenkle oppsettet av maskinen din" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsollverktøy" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Tekstprogrammer, skall, filverktøy, terminaler" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Utvikling" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C- og C++-utviklingsbibliotek, -programmer og inkluderings-filer" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentasjon" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Bøker og veiledninger om Linux og fri programvare" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Støtte for tredjeparts programvare" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Webserver" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Gruppevare" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab-server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Brannmur/ruter" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internett-gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "E-post/Nyheter" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix e-postserver, Inn nyhetsserver" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Katalogserver" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Domenenavn- og nettverksinformasjons-server" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Fil- og Skriverdelingsserver" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS-server, Samba-server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Database" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL- og MariaDB-databaseserver" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "E-post" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix e-postserver" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL eller MariaDB-databaseserver" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Nettverksserver" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-server, SMB-server, Proxy-server, SSH-server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafisk miljø" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma arbeidsstasjon" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, grunnleggende grafisk miljø med en samling av " +"passende verktøy" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME-arbeidsstasjon" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Et grafisk miljø med et brukervennlig sett av programmer og " +"skrivebordsverktøy" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce Arbeidsstasjon" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Et lettere grafisk miljø med brukervennlige applikasjoner og " +"skrivebordsverktøy" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE arbeidsstasjon" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon arbeidsstasjon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Et grafisk miljø basert på GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt Skrivebord" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "En neste generasjons QT portering av lettvekts skrivebordsoppsettet" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment Skrivebord" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Et lettvekts raskt grafisk miljø " + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE-skrivebord" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Et lettvekts raskt grafisk miljø" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Andre grafiske skrivebord" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, etc" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Verktøy" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin Fjernadministrasjonsserver" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Nettverks-verktøy/overvåkning" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Overvårkningsverktøy, prosessbokføring, tcpdump, nmap, … " + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia-veivisere" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Veivisere for å sette opp server" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"En feil oppsto, men jeg vet ikke hvordan jeg skal håndtere dette på en " +"korrekt måte.\n" +"Fortsett på eget ansvar." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Noen viktige pakker ble ikke installert ordentlig.\n" +"Det er noe galt med enten den optiske enheten eller CD-ROM-platen.\n" +"Sjekk platen på en installert maskin med \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Går inn i trinn `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s-installasjon %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> mellom elementene" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg-serverer er treg til å starte. Vennligst vent … " + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Systemet ditt har lite ressurser. Du kan muligens oppleve noen problemer\n" +"ved installering av %s. Hvis dette skjer kan du prøve installasjon i " +"tekstmodus\n" +"i stedet. Trykk `F1' ved oppstart av CD-ROM, skriv så `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Medievalg" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Innsaller %s Plasma skrivebord" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Installer %s GNOME-skrivebord" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Skreddersydd installasjon" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma skrivebord" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME-skrivebord" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Tilpasset skrivebord" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Her er en forhåndsvisning av skrivebordet «%s»." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klikk på bildene for å se en større forhåndsvisning" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Valg pakkegruppe" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Individuelt pakkevalg" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Velg bort alle" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Total størrelse: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versjon: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Størrelse: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Viktighet: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Du kan ikke velge (bort) denne pakken" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "pga. manglende %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "pga. utilfredsstilt %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "prøver å promotere %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "for å beholde %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Du kan ikke velge denne pakken da det ikke er igjen nok plass til å " +"installere den" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Følgende pakker vil bli installert" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Følgende pakker vil bli fjernet" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Dette er en obligatorisk pakke, den kan ikke fjernes" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Du kan ikke fjerne denne pakken. Den er allerede installert" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Du kan ikke fjerne denne pakken. Den må oppgraderes" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Vis automatisk valgte pakker" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installer" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Last inn/lagre utvalg" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Oppdaterer pakkevalg" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Veksle mellom hierarkisk og flat pakkeliste" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimal installasjon" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Programvarehåndtering" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Velg pakkene du ønsker å installere" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Installerer" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Ingen detaljer" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tid som gjenstår:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(beregner … )" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pakke" +msgstr[1] "%d pakker" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Oppsummering" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Sett opp" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "ikke satt opp" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Følgende installasjonsmedia har blitt funnet.\n" +"Hvis du vill hoppe over noen av de kan du velge de vekk nå." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Du har valget mellom å kopiere innholdet på CDene til harddisken før " +"installasjon.\n" +"Den vil da fortsette fra harddisken og pakkene vil forbli tilgjengelige når " +"systemet er fullstendig installert." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopiér hele CDer" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "En feil oppstod" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Velg ditt tastaturoppsett" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Her er den komplette listen over tilgjengelige tastatur" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installer/Oppgrader" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Er dette en installasjon eller en oppgradering?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installér" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Oppgrader %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Krypteringsnøkkel for %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Avbryt installasjonen, start systemet på nytt" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Ny installasjon" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Oppgrader forrige versjon (ikke anbefalt)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Installereren har oppdaget at ditt installerte Linux system ikke kunne bli\n" +"oppgradert til %s på en sikker måte.\n" +"Nyinstallering anbefales\n" +"\n" +"Advarsel: Du bør ta sikkerhetskopi av alle dine personlige data før " +"installering. " + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Setter opp CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Bytt CD!\n" +"\n" +"Sett inn CDen merket «%s» i stasjonen og trykk Ok når du er ferdig.\n" +"Hvis du ikke har den, trykk Avbryt for å unngå installasjon fra denne CDen." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Søker etter tilgjengelige pakker" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Systemet har ikke nok ledig diskplass for installasjon eller oppgradering " +"(%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Velg lagre eller hent pakkevalg.\n" +"Formatet er det samme som for auto_install-genererte filer." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Last inn" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Lagre" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Ødelagt fil" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Skrivebordsvalg" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" +"Her kan du velge skrivebordprofilen for systemet; «KDE», «GNOME» eller " +"«Skreddersydd»." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Valgt størrelse er større enn tilgjengelig plass" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Type installasjon" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Du har ikke valgt noen pakkegrupper.\n" +"Velg den minimale installasjonen du ønsker:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Med X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Installer anbefalte pakker" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Med grunnleggende dokumentasjon (anbefalt!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Virkelig minimal installasjon (uten urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Klargjør oppgradering..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Forbereder installasjon" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Installerer pakke %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Det var en feil ved endring av pakkenes rekkefølge:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Fortsett uansett?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Prøv igjen" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Hopp over denne pakken" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Hopp over alle pakker fra media \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Gå tilbake til valg av media og pakker" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Feil under installering av pakke %s" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Oppsett etter installering" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Forsikre deg om at medie med oppdaterte moduler er i %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Oppdateringer" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Nå har du mulighet til å sette opp online media" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Dette gjør det mulig å installere oppdateringer" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"For å sette opp disse media, må du a en aktiv Internet \n" +"kobling\n" +"\n" +".Ønsker du å sette opp media nå?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Den nedlasteren kunne ikke installeres" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Prøve på nytt?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Feil under forsøk på å legge til medium" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Du har nå muligheten til å laste ned oppdaterte pakker. Dette er pakker som " +"har blitt sluppet etter at distribusjonen ble lansert. Dette kan være enten " +"sikkerhetsoppdateringer eller feilrettelser.\n" +"For å laste ned disse pakkene må du ha en fungerende Internettoppkobling.\n" +"\n" +"Ønsker du å installere oppdateringene?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s på %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Maskinvare" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Lydkort" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafisk grensesnitt" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Nettverk & internett" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxyservere" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "satt opp" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Sikkerhetsnivå" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Brannmur" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktivert" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "deaktiver" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"Du har ikke satt opp det grafiske grensesnittet Xorg. Er du sikker på at du " +"ikke vil gjøre dette?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Forbereder initsialt oppstart program" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Vennligst vær tålmodig, dette kan ta en stund … " + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"I dette sikkerhetsnivået er tilgang til Windows-partisjonen forbeholdt " +"administratoren." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Sett inn en tom diskett i stasjon %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Oppretter diskett for autoinstallasjon … " + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Noen trinn er ikke fullført.\n" +"\n" +"Ønsker du virkelig å avslutte nå?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Gratulerer" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Omstart" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Språk" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Språktilpassing" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lisens" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mus" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Oppdaging av harddisk" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Installasjonsklasse" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastatur" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sikkerhet" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partisjonering" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formaterer" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Velger pakker" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installerer" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Brukere" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Oppstartslaster" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Sett opp X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Oppsummering" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Tjenester" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Oppdateringer" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Avslutt" diff --git a/perl-install/install/share/po/nl.po b/perl-install/install/share/po/nl.po new file mode 100644 index 000000000..c07830293 --- /dev/null +++ b/perl-install/install/share/po/nl.po @@ -0,0 +1,1709 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dennis Holierhoek <dennis.hh@hotmail.com>, 2016 +# dragnadh, 2020 +# Jeroen ten Berge <j.ten.berge@twinbit.nl>, 2002 +# Marcel Pol <marcel@timelord.nl>, 2021 +# Marja van Waes, 2023 +# Marja van Waes <marja@mageia.org>, 2013,2015 +# Niels Gras <niels.gras@wanadoo.nl>, 2000 +# Peter Bosch <peter.bosch@hccnet.nl>, 2002 +# Rob Teng <mandrake.tips@free.fr>, 2005,2008 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Marja van Waes, 2023\n" +"Language-Team: Dutch (http://app.transifex.com/MageiaLinux/mageia/language/" +"nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Sluit u bij ons aan" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Maak het u eigen" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Uw keuze" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Kantoortools" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Home-entertainment" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Voor kinderen" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Voor gezinnen" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Voor ontwikkelaars" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Dank u" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Wees Vrij" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Heeft u nog aanvullende media?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"De volgende media zijn gevonden en zullen worden gebruikt tijdens de " +"installatie: %s.\n" +"\n" +"\n" +"Heeft u een aanvullend installatiemedium in te stellen?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Netwerk (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Netwerk (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Netwerk (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-configuratie" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Vul de hostnaam en map van uw NFS-media in" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Hostnaam ontbreekt" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Map dient te beginnen met \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Hostnaam van het NFS-koppelpunt?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Map" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Aanvullend" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Kan hdlist-bestand op deze spiegelserver niet vinden. Controleer of de " +"locatie klopt." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core-uitgave" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted-uitgave" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree-uitgave" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Bepaalde apparatuur in uw machine behoeft niet-vrije firmware alvorens de " +"vrije stuurprogrammatuur kan werken." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "U dient \"%s\" in te schakelen" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" bevat de diverse onderdelen van de systemen en hun programma's" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" bevat niet-vrije software.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Het bevat ook firmware-bestanden welke nodig zijn om bepaalde apparatuur te " +"laten werken (bijv: bepaalde ATI/AMD-grafische kaarten, bepaalde " +"netwerkkaarten, bepaalde RAID-kaarten, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" bevat software welke niet in alle landen vrijelijk gedistribueerd kan " +"worden als gevolg van software patenten." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Het bevat ook software uit \"%s\" welke herbouwd is met additionele " +"mogelijkheden." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Hier kunt u indien gewenst meerdere media inschakelen." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Dit medium biedt updates voor \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Inventarisatie van reeds geïnstalleerde pakketten…" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Zoeken naar pakketten om op te waarderen…" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Verwijderen van pakketten vóór opwaardering..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"De volgende pakketten zullen verwijderd worden om uw systeem te kunnen " +"opwaarderen: %s\n" +"\n" +"\n" +"Weet u zeker dat u deze pakketten wilt verwijderen?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Fout bij het lezen van bestand %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "De volgende schijf/schijven zijn hernoemd:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (heette voorheen %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Netwerk" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Kies een medium" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Bestand bestaat reeds. Overschrijven?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Slechte NFS-naam" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Ongeldig medium %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Kan geen schermafdruk maken voor het partitioneren" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Schermafdrukken zullen beschikbaar zijn na installatie in %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installatie" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configuratie" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "U dient tevens %s te formatteren" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Sommige apparatuur op uw computer heeft ''fabrikantseigen'' " +"stuurprogramma's \n" +"nodig om te kunnen functioneren. U kunt informatie hierover vinden op: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Bezig met opstarten van het netwerk" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Bezig met stoppen van het netwerk" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Even geduld, bestand wordt opgehaald" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "niet in staat medium toe te voegen" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopiëren van enkele pakketten op diskettes voor toekomstig gebruik" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Bezig met kopiëren" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "must-have" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "belangrijk" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "heel leuk" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "leuk" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "misschien" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Pakketinformatie wordt uit de XML-metadata geëxtraheerd..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Geen XML-info voor medium ‘%s’, slechts gedeeltelijk resultaat voor pakket %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Geen omschrijving" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Sommige door %s gevraagde pakketten kunnen niet worden geïnstalleerd:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Er is een fout opgetreden:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Er is een fatale fout opgetreden: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Vraag niet nogmaals" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d installatie-transacties mislukt" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Installatie van pakketten mislukt:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Werkstation" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kantooromgeving" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Kantoorprogramma's: tekstverwerkers (LibreOffice Writer, Kword), rekenbladen " +"(LibreOffice Calc, Kspread), PDF-lezers, etc" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Game-station" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Amusementsprogramma's: arcade, bordspellen, strategie etc" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedia-station" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Geluids- en video-afspeel- en bewerkingsprogramma's" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet-station" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Verzameling programma's om e-mail en usenet nieuws mee te lezen en te " +"schrijven, en om het Web mee door te bladeren" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Netwerk-computer (client)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clients voor verschillende protcollen waaronder ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Programma's om de configuratie van uw computer te vergemakkelijken" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Hulpprogramma's voor de opdrachtregel" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editors, shells, bestandsbeheer, terminals" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Ontwikkeling" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C and C++ ontwikkelingsbibliotheken, programma's en include-bestanden" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentatie" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Boeken en Howto's over Linux en Vrije Software" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standaard-Basis. Ondersteuning voor programma's van derden." + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Webserver" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab-server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "E-mail/nieuws" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix e-mailserver, Inn newsserver" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Gidsserver" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Domeinnaam- en Network Information Server" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Gedeelde bestands- en printerserver" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS-server, Samba-server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Database" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL en MariaDB database-server" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "E-mail" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix e-mailserver" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL of MariaDB database-server" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Netwerk-computer server" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS server, SMB server, Proxy server, ssh server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafische omgeving" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma-werkstation" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Het K Desktop Environment, de basis-grafische omgeving met een verzameling " +"van bijbehorende programma's" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME-werkomgeving" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Een grafische omgeving met gebruikersvriendelijke verzameling programma's en " +"bureaublad-hulpprogramma's" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce-werkomgeving" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Een lichtere grafische omgeving met een gebruiksvriendelijke set programma's " +"en bureaublad-hulpprogramma's" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE-werkomgeving" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon-werkomgeving" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Een op GNOME gebaseerde grafische omgeving" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt-werkomgeving" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Een 'next generation' QT-port van de lichtgewicht grafische omgeving" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment-werkomgeving" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" +"Een snelle lichtgewicht grafische omgeving met gebruiksvriendelijke set " +"programma's en bureaublad-hulpprogramma's" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE-werkomgeving" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Een snelle lichtgewicht grafische omgeving" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Andere grafische omgevingen" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, enz" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Hulpprogramma's" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin-server voor configuratie op afstand" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Netwerk-hulpprogramma's/observatie" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Observatieprogramma's, bijhouden van processen, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia-wizards" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Wizards om server te configureren" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Er is een fout opgetreden waarvoor de juiste afhandeling onbekend is.\n" +"Als u verdergaat, is dit op eigen risico." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Sommige belangrijke pakketen werden niet juist\n" +"geïnstalleerd. Of uw cd-rom-speler of uw cd-rom is defect.\n" +"Controleer de cd-rom op een geïnstalleerde computer met\n" +"\"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Overgang naar stap `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Installatie %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> tussen elementen" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "De Xorg-server start langzaam. Even geduld…" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Uw systeem heeft weinig systeembronnen beschikbaar. Het kan zijn dat u " +"problemen ondervindt bij het installeren van %s. In dat geval kunt u een " +"tekstinstallatie proberen. Druk 'F1' bij het opstarten van de disc, en toets " +"dan in: 'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Mediaselectie" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Installeer %s Plasma Desktop" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Installeer de %s GNOME Desktop" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Aangepaste installatie" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma-werkomgeving" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Gnome-werkomgeving" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Aangepaste werkomgeving" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Hier is een voorproefje van de '%s'-werkomgeving." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klik op het beeld voor een grotere versie" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Pakketgroepselectie" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Individuele pakketselectie" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Alle gedeselecteerd" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Totale grootte: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versie: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Grootte: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d kB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Belang: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "U kunt dit pakket niet (de)selecteren" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "ten gevolge van ontbrekende %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "ten gevolge van onvoldane %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "proberen om %s te promoveren" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "om %s te kunnen behouden" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"U kunt dit pakket niet selecteren omdat er te weinig ruimte over is om het " +"te installeren" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "De volgende pakketten zullen geïnstalleerd worden" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "De volgende pakketten zullen gedeïnstalleerd worden" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Dit is een verplicht pakket, het kan niet gedeselecteerd worden" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "U kunt dit pakket niet deselecteren. Het is al geïnstalleerd." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "U kunt dit pakket niet deselecteren. Het moet opgewaardeerd worden." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Automatisch geselecteerde pakketten tonen" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installatie" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Selectie laden/opslaan" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Verversen van pakketselectie" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Wissel tussen hiërarchische en platte lijst van pakketten" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimale installatie" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Softwarebeheer" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Kies de pakketten die u wenst te installeren" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Installeren" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Geen details" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Resterende tijd:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(schatten…)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pakket" +msgstr[1] "%d pakketten" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Overzicht" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configureren" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "niet geconfigureerd" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"De volgende installatiemedia zijn gevonden.\n" +"Indien u sommige wilt overslaan, kunt u ze nu deselecteren." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"U heeft de mogelijkheid om de inhoud van de cd's naar de harde schijf te " +"kopiëren vóór installatie.\n" +"De installatie gaat dan door vanaf de harde schijf en de pakketten blijven " +"beschikbaar zodra het systeem volledig geïnstalleerd is." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Hele cd's kopiëren" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Er is een fout opgetreden" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Kies uw toetsenbord-indeling" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Dit is de volledige lijst van beschikbare toetsenborden:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installatie/Opwaardering" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Wilt u opwaarderen of een nieuwe installatie uitvoeren?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installatie" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s opwaarderen" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Vercijferingssleutel voor %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Installatie afbreken, systeem herstarten" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nieuwe installatie" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Bestaande installatie opwaarderen (niet aanbevolen)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Het installatieprogramma heeft vastgesteld dat uw Linux-systeem niet veilig " +"kan worden bijgewerkt naar %s.\n" +"\n" +"Een nieuwe installatie ter vervang van uw vorige wordt aangeraden.\n" +"\n" +"WAARSCHUWING: Maak een eerst een back-up van al uw persoonlijke data voordat " +"u een nieuwe installatie kiest." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "Cd/dvd" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Cd/dvd-configuratie" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Verwissel uw cd-rom!\n" +"\n" +"Gelieve de cd-rom met de naam \"%s\" in uw speler te plaatsen en op Ok te " +"klikken wanneer u gereed bent.\n" +"Als u deze cd niet heeft, klik dan Annuleren om verdere installatie vanaf " +"deze cd te vermijden." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Bezig met zoeken naar beschikbare pakketten" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Uw systeem heeft niet genoeg ruimte over voor installatie of opwaardering " +"(%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"U kunt kiezen of u de pakketselectie wilt laden of opslaan.\n" +"Het formaat is dezelfde als de met auto_install gegenereerde bestanden." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Laden" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Opslaan" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Ongeldig bestand" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "Gnome" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Werkomgevingselectie" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "U kunt de grafische omgeving voor uw werkstation kiezen." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "De geselecteerde grootte is meer dan de beschikbare ruimte" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Type installatie" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"U heeft geen enkele pakketgroep geselecteerd\n" +"Gelieve de minimale installatie die u wenst te kiezen." + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Met X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Installeer aangeraden pakketten" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Met basis-documentatie (aanbevolen!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Werkelijk minimale installatie (in het bijzonder geen urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Voorbereiden van de opwaardering..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Bezig met voorbereiden van installatie" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Bezig met installeren van pakket %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Er is een fout opgetreden bij het sorteren van de pakketten:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Toch verdergaan?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Opnieuw proberen" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Dit pakket overslaan" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Alle pakketten van medium ‘%s’ overslaan" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Terug naar media- en pakketselectie" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Er is een fout opgetreden bij het installeren van pakket %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configuratie na installatiestap" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Zorg ervoor dat de Update Modules-media zich in station %s bevindt" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Herzieningen" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "U kunt nu online media instellen." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Dat maakt beveiligingsherzieningen installeren mogelijk." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Om deze media in te stellen, dient uw internetverbinding \n" +"te werken. \n" +"\n" +"Wilt u de updatemedia instellen?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Dat downloadprogramma kon niet geïnstalleerd worden" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Opnieuw proberen?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Medium toevoegen mislukt" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"U bent nu in de gelegenheid om bijgewerkte pakketten te downloaden.\n" +"Deze pakketten zijn vernieuwd nadat de distributie werd uitgegeven.\n" +"Ze kunnen beveiligings- of programmafoutreparaties bevatten.\n" +"U heeft een werkende internetverbinding nodig om deze pakketten te \n" +"downloaden.\n" +"\n" +"Wenst u de bijgewerkte pakketten te installeren?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s op %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Apparatuur" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Geluidskaart" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafische interface" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Netwerk & internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxy's" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "geconfigureerd" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Beveiligingsniveau" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "geactiveerd" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "uitgeschakeld" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "U heeft X niet geconfigureerd. Weet u zeker dat u dit wilt?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Bezig met voorbereiden van het initiële startprogramma..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Een moment geduld, dit kan even duren…" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"In dit beveiligingsniveau wordt toegang tot de bestanden op de Windows-" +"partitie voorbehouden aan de systeembeheerder." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Plaats een lege diskette in station %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Aanmaken van auto-installatiediskette…" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Enkele stappen zijn nog niet voltooid.\n" +"\n" +"Weet u zeker dat u op dit moment wilt afsluiten?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Gefeliciteerd" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Herstarten" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Taal" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Vertaling" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licentie" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Muis" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Harddisk detectie" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Installatieklasse" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Toetsenbord" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Beveiliging" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partitionering" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatteren" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Pakketten kiezen" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installatie" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Gebruikers" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Opstartlader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X configureren" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Overzicht" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Diensten" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Herzieningen" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Afsluiten" diff --git a/perl-install/install/share/po/nn.po b/perl-install/install/share/po/nn.po new file mode 100644 index 000000000..42bcbaa3f --- /dev/null +++ b/perl-install/install/share/po/nn.po @@ -0,0 +1,1693 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Karl Ove Hufthammer <karl@huftis.org>, 2004-2010 +# Stig-Ørjan Smelror <smelror@gmail.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Norwegian Nynorsk (http://www.transifex.com/MageiaLinux/" +"mageia/language/nn/)\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Har du fleire medium?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Fann desse media, som vert brukte ved installeringa: %s.\n" +"\n" +"\n" +"Har du fleire installasjonsmedium du ønskjer å bruka?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Nettverk (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Nettverk (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Nettverk (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS-oppsett" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Skriv inn vertsnamn og mappe til NFD-media" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Manglar vertsnam" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Mappa må begynna med «/»" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Vertsnamn til NFS-montering:" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Katalog" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Tillegg" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Finn ikkje pakkelistfila på denne spegelen. Sjå til at adressa er rett." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Ser på allereie installerte pakkar …" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Ser etter pakkar å oppgradera …" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Fjernar pakkar for oppgradering …" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Desse pakkane vert fjerna for å kunna oppgradera systemet: %s\n" +"\n" +"\n" +"Er du sikker på at du vil fjerna pakkane?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Klarte ikkje lesa fila «%s»" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Desse diskane fekk nye namn:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "«%s» (tidlegare namn: «%s»)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Nettverk" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Vel medium" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Fila finst allereie. Vil du skriva over ho?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Nekta løyve" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Ugyldig NFS-namn" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Ugyldig medium: %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Kan ikkje ta skjermbilete før partisjonering" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Skjermbilete vert tilgjengelege i «%s» etter installeringa er ferdig" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installering" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Oppsett" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Du må òg formatera «%s»" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Noko av maskinvaren treng godseigde drivarar for å fungera.\n" +"Du finn meir informasjon om desse på: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Koplar til nettverket" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Koplar frå nettverket" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Hentar fil. Vent litt …" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "klarte ikkje leggja til medium" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopierer nokre pakkar til harddisken for seinare bruk" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopierer filer" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "må ha" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "viktig" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "veldig kjekt å ha" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "kjekt å ha" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "kanskje" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Ingen XML-informasjon for mediet «%s». Berre delvis resultat for pakken «%s»." + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Inga skildring" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Nokre pakkar som %s krev kan ikkje installerast:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Det oppstod ein feil:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Det oppstod ein kritisk feil: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Ikkje spør igjen" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "feil med %d installasjonstransaksjonar" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Feil ved installering av pakkar:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Arbeidstasjon" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kontormaskin" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Kontorprogramvare: Teksthandsamarar (LibreOffice Writer, Kword), rekneark " +"(LibreOffice Calc, Kspread), PDF-viseprogram, med meir" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Spelmaskin" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Moroprogram: Arkadespel, brettspel, strategispel, med meir" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimediemaskin" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Program for vising og redigering av film" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internett-maskin" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Program for lesing og sending av e-post, deltaking i temagrupper og surfing " +"på Internett" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Nettverksmaskin (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klientprogramvare for fleire protokollar, som ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Verktøy for enkelt oppsett av datamaskina" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsollverktøy" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Skriveprogram, skal, filverktøy og terminalprogram." + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Utvikling" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Utviklingsbibliotek, program og deklarasjonsfiler for C og C++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Hjelpetekst" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Bøker og hjelpeoppskrifter for Linux og fri programvare" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base – støtte for tredjepartsprogram" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Vevtenar" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Gruppevare" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab-tenar" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Brannmur/rutar" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internett-portnar" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "E-post og temagrupper" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix e-posttenar og Inn temagruppetenar" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Katalogtenar" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-tenar" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Domenenamn og nettverksinformasjonstenar." + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Fil- og skrivardeling-tenar" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS-tenar, Samba-tenar" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Database" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL- og MariaDB-databasetenar" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Vev/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "E-post" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix-e-posttenar" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL- eller MariaDB-databasetenar" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Nettverkstenar" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-tenar, SMB-tenar, mellomtenar, ssh-tenar" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafisk miljø" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "Skrivebordsmiljøet KDE, med ei samling tilhøyrande verktøy" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME-arbeidsstasjon" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Eit grafisk skrivebordsmiljø med brukarvenlege program og skrivebordsverktøy" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE-skrivebord" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Andre grafiske skrivebord" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Verktøy" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-tenar" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin-fjernoppsettenar" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Nettverksverktøy og -overvaking" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Overvakingsverktøy, prosesshandsaming, tcpdump, nmap, med meir" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia-vegvisarar" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Vegvisarar for tenaroppsett" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "Det oppstod ein kritisk feil. Hald fram på eige ansvar." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Nokre viktige pakkar vart ikkje installerte skikkeleg.\n" +"Enten er det CD-ROM-stasjonen eller CD-plata di som øydelagd.\n" +"Kontroller CD-plata på ei anna maskin med kommandoen: rpm -qpl media/main/*." +"rpm\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Køyrer steg «%s»\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s-installering %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "«Tab»/«Alt + Tab» mellom element" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "X.Org-tenaren tek tid å starta. Vent litt …" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Du har lite systemressursar, og kan få vanskar med å installera %s Linux.\n" +"Du kan då installera i tekstmodus i staden for. Trykk «F1» ved oppstart av\n" +"CD-plata, og skriv «text» om du ønskjer dette." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Medieval" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Installer %s GNOME-skrivebord" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Anna installering" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME-skrivebord" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Sjølvvalt skrivebord" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Slik ser skrivebordsmiljøet %s ut." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Trykk på bileta for å forstørra dei" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Pakkegruppeval" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Direkte pakkeval" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Valde vekk alle" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Totalstorleik: %d / %d MiB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versjon: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Storleik: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KiB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Prioritet: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Du kan ikkje velja eller fjerna denne pakken" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "på grunn av manglande «%s»" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "då «%s» ikkje er tilfredsstilt" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "Prøver å prioritera «%s»" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "for å kunna behalda «%s»" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Du kan ikkje velja denne pakken, då det ikkje er nok ledig plass til å " +"installera han." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Desse pakkane vert installerte" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Desse pakkane vert fjerna" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Dette er ein obligatorisk pakke. Du kan ikkje velja han vekk." + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Du kan ikkje velja vekk denne pakken, då han allereie er installert." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Kan ikkje velja vekk pakken. Han må oppgraderast." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Vis automatiske valde pakkar" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installer" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Opna/lagra utval" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Oppdaterer pakkeval" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimal installering" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Programvarehandsaming" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Vel pakkane du ønskjer å installera" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Installerer" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Gøym detaljar" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tid igjen:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(estimerer …)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pakke" +msgstr[1] "%d pakkar" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Samandrag" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Set opp" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "ikkje sett opp" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Fann desse installasjonsmedia.\n" +"Om du ikkje ønskjer å bruka alle, kan du velja vekk dei du ikkje treng no." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Du kan velja å kopiera innhaldet på CD-ane til harddisken før " +"installasjonen.\n" +"Installasjonen vil då helda fram frå harddisken, og pakkane vil vera lett " +"tilgjengeleg òg etter at systemet er installert og sett opp." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopier CD-ane" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Det oppstod ein feil" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Vel tastaturoppsett" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Her er heile lista over tastaturoppsett:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installer/oppgrader" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Vil du installera eller oppgradera?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installer" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Oppgrader «%s»" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Krypteringsnøkkel for «%s»" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Avbryt installering og start systemet på nytt" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nyinstallering" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Oppgrader førre installasjon (ikkje tilrådd)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Byt installasjonsplate.\n" +"\n" +"Set inn plata merkt «%s» og trykk «OK».\n" +"Trykk eventuelt «Avbryt» om du ikkje har denne plata." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Ser etter tilgjengelege pakkar …" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Maskina di har ikkje nok ledig plass for installering eller oppgradering (%d " +"MB > %d MB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Vel å lagra eller henta pakkeval.\n" +"Formatet er likt det laga av «auto_install»." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Last" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Lagra" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Ugyldig fil" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Skrivebordsval" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Du kan velja skrivebordsmiljø." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Valt storleik er større enn tilgjengeleg plass" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Installasjonstype" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Du har ikkje valt noko pakkegruppe.\n" +"Vel kva type minimal installasjon du vil ha:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Med X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Med grunnleggjande hjelpetekstar (tilrådd)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Heilt minimal (òg utan urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Førebur installasjon" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Installerer pakken «%s»" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Det oppstod ein feil ved sortering av pakkar:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Vil du helda fram likevel?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Prøv på nytt" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Hopp over denne pakken" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Hopp over alle pakkar frå mediet «%s»" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Gå tilbake til medie- og pakkevalskjermen" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Det oppstod ein feil ved installering av pakken «%s»." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Oppsett etter installering" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Sjå til at oppdateringsmediet er i stasjon %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Oppdateringar" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Desse pakkane vert installerte" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Prøv på nytt?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Klarte ikkje leggja til nytt medium" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Du kan no lasta ned oppdaterte pakkar. Desse pakkane vart oppdaterte\n" +"etter at distribusjonen var ferdigstilt, og kan innehelda " +"tryggleiksforbetringar eller\n" +"andre feilrettingar.\n" +"\n" +"\n" +"For å lasta ned pakkane må du ha eit nettsamband oppe.\n" +"\n" +"\n" +"Ønskjer du å installera oppdateringane?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s på %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Maskinvare" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Lydkort" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafisk grensesnitt" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Nettverk og Internett" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Mellomtenarar" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "oppsett" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Tryggleiksnivå" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Brannmur" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "påslått" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "avslått" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"Du har ikkje sett opp det grafiske grensesnittet. Er du sikker på at du " +"ikkje vil ha det?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Ver tålmodig. Dette kan ta ei stund …" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Med dette tryggleiksnivået er det berre administratoren som får tilgang til " +"filer på Windows-partisjonen." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Set inn ein tom diskett i stasjon «%s»" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Lagar diskett for automatisk installasjon …" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Ikkje alle steg er gjennomførte.\n" +"\n" +"Er du sikker på at du vil avslutta?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Gratulerer" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Start på nytt" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Språk" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Språkversjon" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lisensvilkår" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mus" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Harddiskoppdaging" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Installasjonsklasse" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastatur" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Tryggleik" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partisjonering" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatering" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Pakkeval" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installering" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Brukarar" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Oppstartslastar" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Set opp X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Samandrag" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Tenester" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Oppdateringar" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Avslutt" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Adresse til spegelen?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Adresser må starta med «ftp://» eller «http://»." + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Kontaktar %s-nettstaden for oversikt over speglar …" + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Klarte ikkje få kontakt med %s-nettstaden for å henta oversikt over " +#~ "tilgjengelege speglar." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Vel spegelen du vil installera pakkar frå" diff --git a/perl-install/install/share/po/pa_IN.po b/perl-install/install/share/po/pa_IN.po new file mode 100644 index 000000000..0a96b7c98 --- /dev/null +++ b/perl-install/install/share/po/pa_IN.po @@ -0,0 +1,1644 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jaswinder Singh Phulewala <jaswinderphulewala@yahoo.com>, 2005 +# Kanwaljeet Singh Brar <kanwaljeetbrar@yahoo.co.in>, 2005 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Panjabi (Punjabi) (India) (http://www.transifex.com/" +"MageiaLinux/mageia/language/pa_IN/)\n" +"Language: pa_IN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "ਕੀ ਤੁਹਾਡੇ ਕੋਲ ਅੱਗੇ ਅਨੁਪੂਰਕ ਮਾਧਿਅਮ ਹੈ?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "ਨੈੱਟਵਰਕ (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "ਨੈੱਟਵਰਕ (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "ਡਾਇਰੈਕਟਰੀ" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "ਇਸ ਪ੍ਰਤੀਬਿੰਬ ਤੇ ਪੈਕੇਜ ਸੂਚੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭ ਸਕੀ। ਜਾਂਚ ਕਰੋ ਕਿ ਸਥਿਤੀ ਠੀਕ ਹੈ।" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "ਪਹਿਲਾਂ ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜਾਂ ਸੀ ਜਾਂਚ ਕਰ ਰਿਹਾ ਹੈ..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "ਨਵੀਨੀਕਰਨ ਲਈ ਪੈਕੇਜਾਂ ਦੀ ਖੋਜ..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"ਹੇਠਲੇ ਪੈਕੇਜ ਤੁਹਾਡੇ ਸਿਸਟਮ ਨਵੀਨੀਕਰਨ ਲਈ ਹਟਾਏ ਜਾਣਗੇ: %s\n" +"\n" +"\n" +"ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹ ਪੈਕੇਜ ਹਟਾਉਣੇ ਚਾਹੁੰਦੇ ਹੋ?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "ਫਾਇਲ %s ਪੜਨ ਵਿੱਚ ਗਲਤੀ" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "ਹੇਠਲੀਆਂ ਡਿਸਕਾਂ ਦੇ ਨਾਂ ਤਬਦੀਲ ਕੀਤੇ ਹਨ:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (ਪਹਿਲਾਂ %s ਨਾਂ ਸੀ)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "ਨੈੱਟਵਰਕ" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "ਵਿਭਾਗੀਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਪਰਦਾ-ਤਸਵੀਰ ਨਹੀਂ ਬਣਾ ਸਕਦਾ" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "ਪਰਦਾ-ਤਸਵੀਰਾਂ %s ਵਿੱਚ ਇੰਸਟਾਲੇਸ਼ਨ ਤੋਂ ਬਾਅਦ ਉਪਲੱਬਧ ਹੋਣਗੀਆਂ" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "ਸੰਰਚਨਾ" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "ਤੁਹਾਨੂੰ %s ਵੀ ਫਾਰਮਿਟ ਕਰਨਾ ਜਰੂਰੀ ਹੈ" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"ਤੁਹਾਡੇ ਕੰਪਿਊਟਰ ਤੇ ਕੁਝ ਜੰਤਰ ਲਈ ਕੰਮ ਕਰਨ ਵਾਸਤੇ ``ਮਲਕੀਅਤ'' ਡਰਾਈਵਰ ਦੀ ਲੋੜ ਹੈ।\n" +"ਤੁਸੀਂ ਇਹਨਾਂ ਬਾਰੇ ਕੁਝ ਜਾਣਕਾਰੀ ਇਸ ਤੇ ਲੱਭ ਸਕਦੇ ਹੋ: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "ਨੈੱਟਵਰਕ ਚਲਾਇਆ ਜਾ ਰਿਹਾ ਹੈ" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "ਨੈੱਟਵਰਕ ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "ਨਕਲ ਜਾਰੀ ਹੈ" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "ਹੋਣਾ ਜਰੂਰੀ ਹੈ" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "ਜਰੂਰੀ" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "ਬਹੁਤ ਵਧੀਆ" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "ਵਧੀਆ" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "ਹੋ ਸਕਦਾ ਹੈ" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "ਕੋਈ ਵੇਰਵਾ ਨਹੀ" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "ਘਾਤਕ ਗਲਤੀ ਆਈ: %s" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d ਇੰਸਟਾਲੇਸ਼ਨ ਸੰਚਾਰ ਅਸਫਲ" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "ਵਰਕਸਟੇਸ਼ਨ" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "ਦਫਤਰ ਵਰਕਸਟੇਸ਼ਨ" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"ਦਫਤਰੀ ਪ੍ਰੋਗਰਾਮ: ਅੱਖਰਕਾਰ (LibreOffice Writer, Kword), ਸਾਰਣੀਕਾਰ (OpenOffice.org " +"Calc, Kspread), PDF ਦਰਸ਼ਕ, ਆਦਿ" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "ਖੇਡ ਸਟੇਸ਼ਨ" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "ਮਨੋਰੰਜਨ ਪ੍ਰੋਗਰਾਮ: ਆਰਕੇਡ, ਬੋਰਡ, ਨੀਤੀ, ਆਦਿ" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "ਮਲਟੀਮੀਡੀਆ ਸਟੇਸ਼ਨ" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "ਸਾਊਂਡ ਅਤੇ ਵੀਡੀਓ ਚਲਾਉਣ/ਸੋਧਣ ਵਾਲੇ ਪ੍ਰੋਗਰਾਮ" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "ਇੰਟਰਨੈੱਟ ਸਟੇਸ਼ਨ" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "ਪੱਤਰ ਅਤੇ ਖਬਰਾਂ ਪੜਨ ਅਤੇ ਭੇਜਣ ਲਈ (mutt, tin..) ਅਤੇ ਵੈਬ ਝਾਤੀ ਲਈ ਸੰਦਾਂ ਦਾ ਸਮੂਹ" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "ਨੈੱਟਵਰਕ ਕੰਪਿਊਟਰ (ਕਲਾਂਈਟ)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "ssh ਸਮੇਤ ਵੱਖ-ਵੱਖ ਪਰੋਟੋਕਾਲਾਂ ਲਈ ਕਲਾਂਈਟ" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "ਤੁਹਾਡੇ ਕੰਪਿਊਟਰ ਦੀ ਸੰਰਚਨਾ ਸਾਫ ਕਰਨ ਲਈ ਸੰਦ" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "ਕੰਸੋਲ ਸੰਦ" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "ਸੰਪਾਦਕ, ਸ਼ੈੱਲ, ਫਾਇਲ ਸੰਦ, ਟਰਮੀਨਲ" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "ਵਿਕਾਸ" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C ਅਤੇ C++ ਵਿਕਾਸ ਲਾਇਬ੍ਰੇਰੀਆਂ, ਪ੍ਰੋਗਰਾਮ ਅਤੇ ਸ਼ਾਮਿਲ ਫਾਇਲਾਂ" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "ਦਸਤਾਵੇਜ਼" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "ਲੀਨਕਸ ਅਤੇ ਮੁਕਤ ਸਾਫਟਵੇਅਰ ਉੱਪਰ ਕਿਤਾਬਾਂ ਅਤੇ Howto's" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "ਲੀਨਕਸ ਮਿਆਰੀ ਮੁੱਢ। ਤੀਜੀ ਪਾਰਟੀ ਕਾਰਜ ਸਹਿਯੋਗ" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "ਵੈਬ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "ਗਰੁੱਪਵੇਅਰ" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "ਫਾਇਲਵਾਲ/ਰਾਊਟਰ" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "ਇੰਟਰਨੈੱਟ ਗੇਟਵੇ" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "ਪੱਤਰ/ਖਬਰ" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix ਪੱਤਰ ਸਰਵਰ, Inn ਖਬਰ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "ਡਾਇਰੈਕਟਰੀ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "ਡੋਮੇਨ ਨਾਂ ਅਤੇ ਨੈੱਟਵਰਕ ਜਾਣਕਾਰੀ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "ਫਾਇਲ ਅਤੇ ਪ੍ਰਿੰਟਰ ਸ਼ੇਅਰਿੰਗ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS ਸਰਵਰ, ਸਾਂਬਾ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "ਡਾਟਾਬੇਸ " + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL ਅਤੇ MariaDB ਡਾਟਾਬੇਸ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "ਵੈਬ/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "ਪੱਤਰ" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix ਪੱਤਰ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL ਜਾਂ MariaDB ਡਾਟਾਬੇਸ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "ਨੈੱਟਵਰਕ ਕੰਪਿਊਟਰ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS ਸਰਵਰ, SMB ਸਰਵਰ, ਪਰਾਕਸੀ ਸਰਵਰ, ssh ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "ਗਰਾਫੀਕਲ ਵਾਤਾਵਰਨ" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "ਕੇ ਵਿਹੜਾ ਵਾਤਾਵਰਨ, ਸਾਥੀ ਸੰਦਾਂ ਦੇ ਭੰਡਾਰ ਨਾਲ ਮੁੱਢਲਾ ਗਰਾਫਿਕਲ ਵਾਤਾਵਰਨ" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "ਗਨੋਮ ਵਰਕਸਟੇਸ਼ਨ" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "ਉਪਭੋਗੀ-ਅਨੁਕੂਲ ਕਾਰਜ ਸਮੂਹ ਅਤੇ ਵਿਹੜਾ ਸੰਦਾਂ ਨਾਲ ਇੱਕ ਗਰਾਫੀਕਲ ਵਾਤਾਵਰਨ" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "ਹੋਰ ਗਰਾਫੀਕਲ ਵਿਹੜੇ" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "ਸਹੂਲਤਾਂ" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin ਰਿਮੋਟ ਸੰਰਚਨਾ ਸਰਵਰ" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "ਨੈੱਟਵਰਕ ਸਹੂਲਤਾਂ/ਪ੍ਰਬੰਧਨ" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "ਪ੍ਰਬੰਧਨ ਸੰਦ, ਕਾਰਜ ਅਕਾਊਂਟਿੰਗ, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "ਸਰਵਰ ਸੰਰਚਨਾ ਲਈ ਤਖਤੀ" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"ਗਲਤੀ ਹੋਈ ਹੈ, ਪਰ ਮੈਂ ਨਹੀਂ ਜਾਣਦਾ ਕਿ ਇਸ ਦਾ ਕਿਸ ਤਰਾਂ ਪ੍ਰਬੰਧਨ ਕਰਨਾ ਹੈ।\n" +"ਆਪਣੇ ਖਤਰੇ ਤੇ ਜਾਰੀ ਕਰੋ।" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"ਕੁਝ ਜਰੂਰੀ ਪੈਕੇਜ ਠੀਕ ਤਰਾਂ ਇੰਸਟਾਲ ਨਹੀਂ ਹੋਏ।\n" +"ਜਾਂ ਤਾਂ ਤੁਹਾਡੀ cdrom ਡਰਾਈਵ ਜਾਂ cdrom ਖਰਾਬ ਹੈ।\n" +"ਇੰਸਟਾਲ ਕੀਤੇ ਕੰਪਿਊਟਰ ਤੇ \"rpm -qpl media/main/*.rpm\" ਵਰਤ ਕੇ cdrom ਦੀ ਜਾਂਚ ਕਰੋ\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "ਪਗ਼ `%s' ਸ਼ੁਰੂ ਹੋ ਰਿਹਾ ਹੈ\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> ਇਕਾਈਆਂ ਵਿੱਚ " + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "ਪੈਕੇਜ ਸਮੂਹ ਚੋਣ" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "ਵੱਖ-ਵੱਖ ਪੈਕੇਜ ਚੋਣ" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "ਸਭ ਨਾ-ਚੁਣੋ" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "ਕੁੱਲ ਅਕਾਰ: %d / %d ਮੈਬਾ" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "ਵਰਜਨ:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "ਅਕਾਰ:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d ਕਿਬਾ\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "ਖਾਸੀਅਤ:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "ਤੁਸੀਂ ਇਹ ਪੈਕੇਜ ਚੁਣ/ਨਾ-ਚੁਣ ਨਹੀਂ ਸਕਦੇ" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s ਗੁੰਮ ਹੋਣ ਕਾਰਨ" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "%s ਲੋੜ ਪੂਰੀ ਨਾ ਹੋਣ ਕਰਕੇ" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s ਵਰਤੋਂ ਦੀ ਸਿਫਾਰਸ਼ ਕੀਤੀ ਜਾਂਦੀ ਹੈ" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s ਰੱਖਣ ਲਈ" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "ਤੁਸੀਂ ਇਹ ਪੈਕੇਜ ਨਹੀਂ ਚੁਣ ਸਕਦੇ ਕਿਉਂਕਿ ਇੱਥੇ ਇਸ ਨੂੰ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਲੋੜੀਂਦੀ ਥਾਂ ਨਹੀਂ ਹੈ।" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "ਹੇਠਲੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "ਹੇਠਲੇ ਪੈਕੇਜ ਹਟਾਏ ਜਾ ਰਹੇ ਹਨ" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "ਇਹ ਲਾਜ਼ਮੀ ਪੈਕੇਜ ਹੈ, ਇਸ ਦੀ ਚੋਣ ਨਹੀਂ ਹਟਾਈ ਜਾ ਸਕਦੀ" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "ਤੁਸੀਂ ਇਸ ਪੈਕੇਜ ਦੀ ਚੋਣ ਨਹੀਂ ਹਟਾ ਸਕਦੇ। ਇਹ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ।" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "ਤੁਸੀਂ ਇਸ ਪੈਕੇਜ ਦੀ ਚੋਣ ਨਹੀਂ ਹਟਾ ਸਕਦੇ। ਇਸ ਦਾ ਨਵੀਨੀਕਰਨ ਜਰੂਰੀ ਹੈ।" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "ਚੁਣੇ ਪੈਕੇਜ ਸਵੈ ਹੀ ਵਿਖਾਓ" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "ਇੰਸਟਾਲ" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "ਪੈਕੇਜ ਚੋਣ ਨਵੀਨੀਕਰਨ ਜਾਰੀ ਹੈ" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "ਘੱਟੋ-ਘੱਟ ਇੰਸਟਾਲ" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "ਸਾਫਟਵੇਅਰ ਪ੍ਰਬੰਧਨ" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਚੁਣੋ" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "ਕੋਈ ਵੇਰਵਾ ਨਹੀਂ" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "ਸਾਰ" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "ਸੰਰਚਨਾ" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "ਸੰਰਚਿਤ ਨਹੀਂ" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"ਹੇਠਲੇ ਇੰਸਟਾਲੇਸ਼ਨ ਮਾਧਿਅਨ ਲੱਭੇ ਹਨ।\n" +"ਜੇ ਤੁਸੀਂ ਇਹਨਾਂ ਵਿੱਚੋਂ ਕੁਝ ਛੱਡਣੇ ਚਾਹੁੰਦੇ ਹੋ, ਤੁਸੀਂ ਹੁਣ ਰੱਦ ਕਰ ਸਕਦੇ ਹੋ।" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"ਤੁਹਾਡੇ ਕੋਲ ਇੰਸਟਾਲੇਸ਼ਨ ਤੋਂ ਪਹਿਲਾਂ CDs ਦੇ ਸੰਖੇਪ ਹਾਰਡ ਡਰਾਈਵ ਤੇ ਨਕਲ ਕਰਨ ਦੀ ਚੋਣ ਹੈ।\n" +"ਇਹ ਫਿਰ ਹਾਰਡ ਡਰਾਈਵ ਤੋਂ ਜਾਰੀ ਕਰੇਗਾ ਅਤੇ ਪੈਕੇਜ ਸਿਸਟਮ ਪੂਰੀ ਤਰਾਂ ਇੰਸਟਾਲ ਹੋਣ ਤੋਂ ਬਾਅਦ ਵੀ ਉਪਲੱਬਧ " +"ਰਹਿਣਗੇ।" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "ਪੂਰੀ CDs ਨਕਲ ਕਰੋ" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "ਇੱਕ ਗਲਤੀ ਆਈ ਹੈ" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣਾ ਕੀਬੋਰਡ ਖਾਕਾ ਚੁਣੋ।" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "ਇੰਸਟਾਲ/ਨਵੀਨੀਕਰਨ" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "ਕੀ ਇਹ ਇੰਸਟਾਲ ਜਾਂ ਨਵੀਨੀਕਰਨ ਹੈ?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "ਇੰਸਟਾਲ ਕਰੋ" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "ਨਵੀਨੀਕਰਨ %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s ਲਈ ਇਨਕ੍ਰਿਪਸ਼ਨ ਕੁੰਜੀ" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"ਆਪਣੀ Cd-Rom ਤਬਦੀਲ ਕਰੋ!\n" +"ਕਿਰਪਾ ਕਰਕੇ \"%s\" ਲੇਬਲ ਵਾਲੀ Cd-Rom ਆਪਣੀ ਡਰਾਈਵ ਵਿੱਚ ਪਾਓ ਅਤੇ ਸਮਾਪਤੀ ਤੇ ਠੀਕ ਹੈ ਦਬਾਓ\n" +"ਜੇ ਤੁਹਾਡੇ ਕੋਲ ਇਹ ਨਹੀਂ ਹੈ, ਇਸ Cd-Rom ਤੋਂ ਇੰਸਟਾਲੇਸ਼ਨ ਰੋਕਣ ਲਈ ਰੱਦ ਕਰੋ ਦਬਾਓ।" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜ ਲੋਡ ਕਰ ਰਿਹਾ ਹੈ..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "ਸੰਭਾਲੋ" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "ਗਨੋਮ" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "ਚੁਣਿਆ ਅਕਾਰ ਉਪਲੱਬਧ ਥਾਂ ਨਾਲੋਂ ਜਿਆਦਾ ਹੈ" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "ਇੰਸਟਾਲ ਦੀ ਕਿਸਮ" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"ਤੁਸੀਂ ਪੈਕੇਜਾਂ ਦਾ ਕੋਈ ਸਮੂਹ ਨਹੀਂ ਚੁਣਿਆ।\n" +"ਕਿਰਪਾ ਕਰਕੇ ਘੱਟੋ-ਘੱਟ ਇੰਸਟਾਲੇਸ਼ਨ ਚੁਣੋ:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X ਨਾਲ" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "ਮੁੱਢਲੀ ਦਸਤਾਵੇਜ਼ੀ ਨਾਲ (ਸਿਫਾਰਸ਼ੀ)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "ਯਕੀਨਨ ਘੱਟੋ-ਘੱਟ ਇੰਸਟਾਲ (ਖਾਸ ਤੌਰ ਤੇ urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਤਿਆਰੀ ਹੋ ਰਹੀ ਹੈ" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਹੀ ਹੈ" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "ਪੈਕੇਜ ਕ੍ਰਮਬੱਧ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "ਕਿਸੇ ਤਰਾਂ ਜਾਰੀ ਰੱਖੋ?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "ਪੋਸਟ-ਇੰਸਟਾਲ ਸੰਰਚਨਾ" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "ਨਵਿਨੀਕਰਨ" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "ਹੇਠਲੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "ਮਾਧਿਅਮ ਸ਼ਾਮਲ ਕਰਨ ਲਈ ਅਸਫਲ" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s, %s ਉੱਪਰ" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "ਜੰਤਰ" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "ਸਾਊਂਡ ਕਾਰਡ" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "ਗਰਾਫੀਕਲ ਇੰਟਰਫੇਸ" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "ਨੈੱਟਵਰਕ ਤੇ ਇੰਟਰਨੈੱਟ" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "ਪਰਾਕਸੀ" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "ਸੰਰਚਿਤ" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "ਸੁਰੱਖਿਆ ਪੱਧਰ" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "ਫਾਇਰਵਾਲ" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "ਸਰਗਰਮ" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "ਅਯੋਗ" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "ਤੁਸੀਂ X ਸੰਰਚਿਤ ਨਹੀਂ ਕੀਤਾ। ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਸ ਨੂੰ ਚਾਹੁੰਦੇ ਹੋ?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "ਇਸ ਸੁਰੱਖਿਆ ਪੱਧਰ ਵਿੱਚ, Windows ਭਾਗ ਵਿਚਲੀ ਫਾਇਲਾਂ ਵਰਤਣ ਲਈ ਪ੍ਰਬੰਧਕ ਨੂੰ ਮਨਾਹੀ ਹੈ।" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "ਡਰਾਈਵ %s ਵਿੱਚ ਖਾਲੀ ਫਲਾਪੀ ਪਾਓ" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "ਸਵੈ ਇੰਸਟਾਲ ਫਲਾਪੀ ਬਣਾ ਰਿਹਾ ਹੈ..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"ਕੁਝ ਪਗ਼ ਮੁਕੰਮਲ ਨਹੀਂ ਕੀਤੇ।\n" +"\n" +"ਕੀ ਤੁਸੀਂ ਹੁਣ ਯਕੀਨਨ ਬਾਹਰ ਜਾਣਾ ਹੈ?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "ਮੁਬਾਰਕਾਂ" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "ਮੁੜ-ਚਾਲੂ" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "ਬੋਲੀ" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "ਲਾਈਸੈਂਸ" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "ਮਾਊਸ" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "ਹਾਰਡ ਡਰਾਈਵ ਖੋਜ" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "ਕੀ-ਬੋਰਡ" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "ਸੁਰੱਖਿਆ" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "ਵਿਭਾਗੀਕਰਨ" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "ਉਪਭੋਗੀ" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "ਬੂਟ-ਲੋਡਰ" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X ਸੰਰਚਨਾ" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "ਸਾਰ" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "ਸੇਵਾਵਾਂ" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "ਨਵਿਨੀਕਰਨ" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "ਬਾਹਰ" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "ਪ੍ਰਤਿਬਿੰਬ ਦਾ URL?" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "ਪੈਕੇਜ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਪ੍ਰਤੀਬਿੰਬ ਚੁਣੋ" diff --git a/perl-install/install/share/po/pl.po b/perl-install/install/share/po/pl.po new file mode 100644 index 000000000..c25205a7b --- /dev/null +++ b/perl-install/install/share/po/pl.po @@ -0,0 +1,1730 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Amazis.net sp. z o.o. - Tomasz Bednarski <tomasz.bednarski@amazis.pl>, 2009 +# Amazis.net sp. z o.o. - Tomasz Bednarski <tomasz.bednarski@mandriva.pl>, 2008 +# Daniel Napora <napcok@gmail.com>, 2013,2015 +# Maciej Walkowiak <m.walkowiak@computer.org>, 2005 +# Mandriva Poland <biuro@mandriva.pl>, 2006 +# Paweł Jabłoński <pj@linux-mandrake.com>, 2001-2002 +# Szymon Scholz <szymonscholz@gmail.com>, 2016 +# Tomasz Bednarski - Amazis.net <tomasz.bednarski@amazis.pl>, 2007 +# Tomasz Bednarski - Amazis.net <tomasz.bednarski@mandriva.pl>, 2008 +# Tomasz Bednarski <bednarski@skrzynka.pl>, 2005 +# Tomasz Bednarski - Mandriva Poland <tomasz.bednarski@mandriva.pl>, 2006-2007 +# Tomasz Bednarski Mandriva Poland <tomasz.bednarski@mandriva.pl>, 2006 +# Tomasz Bednarski <tomasz.bednarski@mandriva.pl>, 2005 +# tomek, 2005 +# Szymon Scholz <szymonscholz@gmail.com>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Daniel Napora <napcok@gmail.com>\n" +"Language-Team: Polish (http://www.transifex.com/MageiaLinux/mageia/language/" +"pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Dołącz do nas!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Uczyń ją swoją!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Twój wybór!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Narzędzia biurowe" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Domowe centrum rozrywki" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Dla dzieci" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Dla rodziny!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Dla developerów!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Dziękujemy!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Bądź wolny!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Czy posiadasz inne dodatkowe nośniki?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Znaleziono następujące nośniki, które zostaną wykorzystane podczas " +"instalacji: %s.\n" +"\n" +"\n" +"Czy chcesz skonfigurować dodatkowe nośniki instalacyjne?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Sieć (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Sieć (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Sieć (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Konfiguracja NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Wprowadź nazwę komputera i katalog nośnika NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Brak nazwy hosta" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Oznaczenie katalogu musi się zaczynać od znaku \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Nazwa komputera udostępniające udziały NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Katalog" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Dodatkowe" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Nie można znaleźć listy pakietów na tym serwerze. Sprawdź poprawność " +"lokalizacji." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Niektóre urządzenia w twoim komputerze wymagają nie-wolnego firmware, aby " +"wolne sterowniki mogły działać." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Warto włączyć \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" zawiera różne komponenty systemu oraz aplikacje" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" zawiara nie-wolne oprogramowanie.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Zawiera również firmware niezbędne do działania niektórych urządzeń (jak: " +"niektóre karty ATI/AMD, niektóre karty sieciowe, kontrolery RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" zawiara oprogramowanie, które w niektórych krajach nie może być " +"dystrybuowane ze względu na patenty." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "Zawiera również oprogramowanie z \"%s\" " + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Możesz włączyć więcej nośników jeśli chcesz." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Ten nośnik zawiera aktualizacje pakietów dla nośnika \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Wyszukiwanie już zainstalowanych pakietów..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Wyszukiwanie pakietów do uaktualnienia..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Usuwanie pakietów w celu wykonania aktualizacji..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Aby umożliwić aktualizację systemu, usunięte będą następujące pakiety: %s\n" +"\n" +"\n" +"Czy naprawdę chcesz usunąć te pakiety?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Błąd odczytu pliku %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Zmieniono nazwy następujących dysków:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (wcześniejsza nazwa: %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Sieć" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Proszę wybrać nośnik" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Plik już istnieje. Nadpisać?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Dostęp zabroniony" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Niepoprawna nazwa NFS" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Nieprawidłowy nośnik %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Nie można pobrać zrzutu ekranu przed partycjonowaniem" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Zrzuty ekranu będą dostępne po instalacji w %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalacja" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfiguracja" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Należy także sformatować %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Część sprzętu w Twoim komputerze wymaga \"firmowych\" sterowników.\n" +"Więcej informacji na ten temat uzyskasz z %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Uruchamianie sieci" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Zatrzymywanie sieci" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Proszę czekać. Pobieranie pliku" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "dodanie nośnika było niemożliwe" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopiowanie wybranych pakietów do późniejszego wykorzystania" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiowanie w toku" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "trzeba posiadać" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "ważny" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "bardzo fajny" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "fajny" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "taki sobie" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Pobieram informacje o pakietach z meta-danych XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Brak pliku z informacjami o programach znajdujących się na nośniku \"%s\". " +"Wynik dla pakietu %s jest częściowy" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Brak opisu" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Niektóre pakiety wymagane przez %s nie mogą zostać zainstalowane:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Wystąpił błąd:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Wystąpił poważny błąd: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Nie pytaj ponownie" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d transakcji instalacyjnych zakończonych niepowodzeniem" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Instalowanie pakietów nie powiodło się:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Stacja robocza" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Stacja biurowa" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programy biurowe: procesory tekstu (LibreOffice Writer, Kword), arkusze " +"kalkulacyjne (LibreOffice, Kspread), przeglądarki pdf, itd." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Stacja rozrywkowa (gry)" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programy rozrywkowe: gry przygodowe, planszowe, strategie, itd." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Stacja multimedialna" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programy do odtwarzania/edycji dźwięku i obrazu" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Stacja internetowa" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Zestaw narzędzi do odczytu i przesyłania poczty i grup dyskusyjnych (mutt, " +"tin...) oraz przeglądania sieci" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Komputer sieciowy (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Programy klienckie dla różnych protokołów włączając ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Narzędzia do łatwego zarządzania komputerem" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Narzędzia konsolowe" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Edytory, powłoki, narzędzia plikowe, terminale" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Programowanie" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Biblioteki programistyczne C i C++, programy i pliki nagłówkowe" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentacja" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Książki i dokumenty HOWTO o Linuksie i Otwartym Oprogramowaniu" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Obsługa aplikacji firm trzecich" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Serwer WWW" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "System do pracy grupowej" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Serwer Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Zapora sieciowa/router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Bramka internetowa" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Poczta/wiadomości" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Serwer pocztowy Postfix, serwer grup Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Serwer katalogowy" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Serwer FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Serwer nazw domenowych i informacji sieciowych" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Serwer udostępniania plików i drukarek" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Serwer NFS, serwer Samby" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Baza danych" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Serwer bazodanowy PostgreSQL i MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Poczta" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Serwer pocztowy Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Serwer bazodanowy PostgreSQL i MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Serwer sieciowy" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Serwer NIS, serwer SMB, serwer pośrednika, serwer ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Środowisko graficzne" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Stacja Robocza Plazmy" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Środowisko graficzne KDE, podstawowe środowisko graficzne ze zbiorem " +"narzędzi towarzyszących" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Stacja GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Środowisko graficzne z przyjaznym dla użytkownika zbiorem aplikacji i " +"narzędzi graficznych" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Lekkie środowisko graficzne z przyjaznym dla użytkownika zbiorem aplikacji i " +"narzędzi graficznych" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Pulpit MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Pulpit Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Środowisko graficzne bazujące na Gnome" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Pulpit LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Nowa generacja lekkiego środowiska graficznego przeportowanego na QT" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" +"Lekkie i szybkie środowisko graficzne z przyjaznym dla użytkownika zbiorem " +"aplikacji i narzędzi graficznych" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Pulpit LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Lekkie i szybkie środowisko graficzne" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Inne środowiska graficzne" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, itd." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Narzędzia" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Serwer SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Serwer konfiguracji zdalnej Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Narzędzia sieciowe/monitorowanie" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Narzędzia do monitorowania, księgowania procesów, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Druidy Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Druidy do konfiguracji serwera" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Wystąpił jakiś błąd i nie wiadomo, jak poprawnie go obsłużyć.\n" +"Kontynuuj na własną odpowiedzialność." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Pewne istotne pakiety nie zostały poprawnie zainstalowane.\n" +"Prawdopodobnie uszkodzona jest płyta lub napęd CDROM.\n" +"Sprawdź płytę w innym komputerze używając polecenia:\n" +"\"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Przechodzę do kroku `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Instalacja %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> pomiędzy elementami" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Serwer Xorg rozpoczyna działanie. Proszę czekać..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"System ma mało zasobów. Mogą wystąpić problemy z instalacją\n" +"%s. Jeśli tak się dzieje, spróbuj instalacji w trybie tekstowym.\n" +"Aby tak zrobić, naciśnij F1 podczas startu z CD i wpisz 'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Wybór nośników" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Zainstaluj %s Pulpit Plazmy" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Zainstaluj środowisko graficzne %s GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instalacja dowolna" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Pulpit Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Pulpit GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Dowolny pulpit" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Przegląd pulpitu '%s'." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Kliknij obrazek, aby zobaczyć większy podgląd" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Wybór grup pakietów" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Samodzielny wybór pakietów" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Odznacz wszystko" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Rozmiar: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Wersja: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Rozmiar: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Ważność: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Nie można zmienić statusu tego pakietu" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "z powodu brakującego %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "na skutek niespełnienia %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "próba aktualizacji wersji %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "w celu utrzymania %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Nie możesz wybrać tego pakietu. Nie ma już miejsca, by go zainstalować" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Zostaną zainstalowane następujące pakiety" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Zostaną usunięte następujące pakiety" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ten pakiet jest wymagany, nie można go pominąć" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Nie można odznaczyć tego pakietu. Został już zainstalowany" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Nie można odznaczyć tego pakietu. Musi zostać zaktualizowany" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Pokaż automatycznie wybrane pakiety" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Zainstaluj" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Wczytanie/Zapis zaznaczenia" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Uaktualnianie listy wybranych pakietów" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimalna instalacja" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Zarządzanie oprogramowaniem" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Wybierz pakiety do zainstalowania" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalowanie" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Bez szczegółów" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Pozostały czas:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(szacowanie...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "pakiet" +msgstr[1] "%d pakietów" +msgstr[2] "%d pakietów" +msgstr[3] "%d pakietów" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Różne" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfiguruj" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nie skonfigurowano" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Znaleziono poniższe nośniki instalacyjne.\n" +"Jeśli chcesz pominąć któreś z nich, możesz je teraz odznaczyć." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Istnieje możliwość skopiowania przed instalacją zawartości płyt CD na dysk " +"twardy.\n" +"Instalacja będzie kontynuowana z dysku twardego a skopiowane pakiety będą " +"dostępne po zakończeniu instalacji." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Skopiuj wszystkie płyty CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Wystąpił błąd" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Wybierz układ klawiatury" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Oto pełna lista dostępnych klawiatur:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalacja/Uaktualnienie" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Czy to instalacja czy uaktualnienie?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Zainstaluj" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Uaktualnienie %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Klucz szyfrujący dla %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Anuluj instalację, uruchom komputer ponownie" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nowa instalacja" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Zaktualizuj istniejącą instalację (nie zalecane)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Instalator wykrył, że obecna instalacja systemu Mageia nie może\n" +"zostać bezpiecznie zaktualizowana do wersji %s.\n" +"\n" +"Zalecana jest nowa instalacja, która zastąpi poprzednią.\n" +"\n" +"Uwaga: wykonaj kopie wszystkich osobistych plików zanim wybierzesz\n" +"opcję \"Nowa instalacja\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Konfiguracja CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Zmień płytę CD!\n" +"\n" +"Włóż płytę \"%s\" do napędu i naciśnij Ok. Jeśli jej nie posiadasz, naciśnij " +"Anuluj, aby pominąć instalację pakietów z tej płyty." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Wyszukiwanie dostępnych pakietów..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Za mało miejsca na dysku dla przeprowadzenia instalacji lub aktualizacji " +"(%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Wybierz odczyt lub zapis listy wybranych pakietów.\n" +"Format jest identyczny z dyskiem automatycznej\n" +"instalacji." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Wczytaj" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Zapisz" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Nieprawidłowy plik" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plazma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Wybór pulpitu" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Możesz wybrać profil swojego pulpitu: " + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Wybrany rozmiar przekracza dostępne miejsce" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Typ instalacji" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Nie wybrano żadnej grupy pakietów.\n" +"Wybierz minimalną żądaną instalację:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Z X Window" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Zainstaluj sugerowane pakiety" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Z podstawową dokumentacją (zalecane!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Naprawdę minimalna instalacja (w szczególności bez urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Przygotowywanie aktualizacji..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Przygotowywanie instalacji" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instalowanie pakietu %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Wystąpił błąd porządkowania pakietów:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Kontynuować?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Ponów próbę" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Pomiń ten pakiet" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Pomiń wszystkie pakiety z nośnika \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Wróć do wyboru nośników i pakietów" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Wystąpił błąd podczas instalowania pakietu %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Konfiguracja poinstalacyjna" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Upewnij się, że nośnik Update Modules znajduje się w napędzie %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Aktualizacje" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Teraz masz okazję zainstalować media online." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "To pozwala zainstalować aktualizacje bezpieczeństwa." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"By zainstalować te media, potrzebujesz sprawnego połączenia \n" +"internetowego.\n" +"Czy chcesz zainstalować aktualizację tych mediów?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Zostaną zainstalowane następujące pakiety" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Ponowić próbę?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Niepowodzenie podczas dodawania nośnika" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Masz teraz możliwość pobrania zaktualizowanych pakietów, które\n" +"zostały wydane po udostępnieniu dystrybucji. Mogą zawierać one poprawki\n" +"poprawiające poziom bezpieczeństwa lub naprawiające błędy.\n" +"\n" +"Aby pobrać te pakiety, wymagane jest połączenie internetowe.\n" +"\n" +"Czy chcesz zainstalować uaktualnienia ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s na %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Sprzęt" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Karta dźwiękowa" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfejs graficzny" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Sieć i Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Serwery pośredniczące" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "skonfigurowano" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Poziom bezpieczeństwa" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Zapora sieciowa" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktywowano" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "wyłączono" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Nie masz skonfigurowanego systemu X Window. Czy na pewno chcesz tego?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Przygotowywanie programu rozruchowego..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Proszę o cierpliwość, to może potrwać chwilę..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"W tym poziomie zabezpieczeń, dostęp do plików na partycji Windows jest " +"ograniczony do administratora." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Włóż pustą dyskietkę do stacji %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Tworzenie dyskietki automatycznej instalacji..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Pewne etapy instalacji nie zostały zakończone\n" +"\n" +"Czy na pewno chcesz teraz zakończyć?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Gratulacje" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Uruchom ponownie" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Wybór języka" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalizacja" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licencja" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mysz" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Wykrywanie dysków" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Rodzaj instalacji" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Klawiatura" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Bezpieczeństwo" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partycjonowanie" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatowanie" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Wybór pakietów" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalowanie" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Użytkownicy" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Program rozruchowy" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Konfiguracja X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Różne" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Usługi" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Aktualizacje" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Wyjdź" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Adres URL dla serwera zwierciadlanego?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Adres URL musi zaczynać się od ftp:// lub http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Łączenie ze stroną %s w celu pobrania listy dostępnych serwerów..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "Łączenie ze stroną %s w celu pobrania listy dostępnych serwerów" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Wybierz serwer lustrzany, z którego chcesz pobrać pakiety" diff --git a/perl-install/install/share/po/pt.po b/perl-install/install/share/po/pt.po new file mode 100644 index 000000000..5989bc4f2 --- /dev/null +++ b/perl-install/install/share/po/pt.po @@ -0,0 +1,1717 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# alfalb_mansil, 2014 +# fc2d9c36d73e741383fbbf46a4aac49f_013445b, 2014 +# Fernando Moreira <fmoreira@netc.pt>, 1999 +# Jorge Costa <Jorgercosta@netc.pt>, 2001 +# Jose Carlos D. S. Saraiva <jose.d.s.saraiva@clix.pt>, 2004 +# zecas <jjorge@free.fr>, 2003-2005 +# José JORGE <jose.jorge@oreka.com>, 2002-2003 +# 425fe09b3064b9f906f637fff94056ae_a00ea56 <0fa3588fa89906bfcb3a354600956e0e_308047>, 2015 +# Manuela Silva <mmsrs@sky.com>, 2020 +# Manuela Silva <mmsrs@sky.com>, 2013-2016 +# Manuela Silva <mmsrs@sky.com>, 2021,2023 +# MMSRS, 2015 +# 425fe09b3064b9f906f637fff94056ae_a00ea56 <0fa3588fa89906bfcb3a354600956e0e_308047>, 2015 +# Pedro <simplew8@gmail.com>, 2012 +# Rui <xymarior@yandex.com>, 2018-2019 +# Sérgio Marques <smarquespt@gmail.com>, 2019 +# Zé <ze@mandriva.org>, 2004-2006,2008,2010-2012 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Manuela Silva <mmsrs@sky.com>, 2021,2023\n" +"Language-Team: Portuguese (http://app.transifex.com/MageiaLinux/mageia/" +"language/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " +"1000000 == 0 ? 1 : 2;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Junte-se a Nós!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Torne-o seu!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "A sua escolha!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Ferramentas de Escritório" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Entretenimento em Casa" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Para os miúdos!" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Para a família!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Para os responsáveis pelo desenvolvimento!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Obrigado!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Seja livre!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Tem mais alguma média suplementar?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"A seguinte média foi encontrada e será usada durante a instalação: %s.\n" +"\n" +"\n" +"Tem alguma média de instalação suplementar para configurar?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rede (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rede (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rede (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Configuração NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Por favor indique o nome da máquina e o directório da sua média NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Nome da máquina em falta" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "O directório deve começar por \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Nome da máquina da montagem NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Directório" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Suplementar" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Não é possível encontrar o ficheiro hdlist neste espelho. Certifique-se que " +"a localização está correcta." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Lançamento 'Core'" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Lançamento 'Tainted'" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Lançamento 'Nonfree'" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Algum ''hardware'' na sua máquina precisa de ''firmwares'' proprietários " +"para que os controladores de programas livres funcionem." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Deverá ativar \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" contém as várias partes do seu sistema e das suas aplicações" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" contém programas proprietários.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Também contém 'firmware' necessário para que alguns dispositivos funcionem " +"(exemplo: algumas placas gráficas ATI/AMD, algumas placas de rede, algumas " +"placas RAID...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" contém programas que não pode ser distribuídos em alguns países " +"devido às patentes existentes." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Também contém programas de \"%s\", recriado com capacidades adicionais." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Se desejar, pode ativar aqui mais fontes." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Este disco disponibiliza as atualizações do pacote para \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "A verificar os pacotes já instalados..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "A procurar pacotes para actualizar..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "A remover pacotes antes de actualizar..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Os seguintes pacotes serão removidos para poder actualizar o seu sistema: " +"%s\n" +"\n" +"\n" +"Deseja realmente remover estes pacotes ?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Erro ao ler o ficheiro %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Os seguintes discos foram renomeados:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (anteriormente conhecido por %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rede" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Por favor escolha uma fonte" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "O ficheiro já existe. Deseja substituir o ficheiro?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permissão negada" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Nome NFS inválido" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Fonte inválida %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Não é possível capturar imagens do ecrã antes de particionar" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "As capturas de ecrã estarão disponíveis após instalar em %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalação" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configuração" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Deve também formatar %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Algum material no seu computador precisa de controladores ``proprietários''\n" +"para funcionar. Pode encontrar mais informações em: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "A ligar rede" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "A desligar rede" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Por favor aguarde, estamos a obter o ficheiro" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "não foi possível adicionar a fonte" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "A copiar alguns pacotes no disco para uso futuro" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Cópia em progresso" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "recomendado" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "importante" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "muito bom" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "bom" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "talvez" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "A obter informação do pacote nos meta-dados XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Não há informação xml da fonte \"%s\", apenas um resultado parcial do pacote " +"%s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nenhuma descrição" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Alguns pacotes pedidos por %s não podem ser instalados:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Ocorreu um erro:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Ocorreu um erro fatal: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Não voltar a perguntar" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d transacções de instalação falhadas" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Instalação dos pacotes falhada:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Estação de Trabalho" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Estação de Trabalho de Escritório" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programas Office: processadores de texto (LibreOffice Writer, Kword), folhas " +"de cálculo (LibreOffice Calc, Kspread), visualizadores PDF, etc" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Estação de Jogo" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programas de divertimento: arcada, tabuleiros, estratégia, etc" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Estação multimédia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Aplicações de reprodução/edição de som e vídeo" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Estação internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Conjunto de ferramentas para ler e enviar ''e-mail'' e notícias (mutt, " +"tin...) e para explorar a Web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Computador de Rede (cliente)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clientes para diferentes protocolos incluindo ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Ferramentas para facilitar a configuração do seu computador" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Ferramentas de Consola" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" +"Editores, Linha de Comandos (shell), ferramentas de ficheiros, terminais" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Desenvolvimento" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C e C++ bibliotecas de programação, programas e ficheiros 'include'" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentação" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "\"Livros e Como\" sobre o Linux e Programas Livres" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Base Padrão do Linux (LSB). Suporte a aplicações terceiras." + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Servidor Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Servidor Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Correio/Noticias" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Servidor de ''e-mail'' Postfix , servidor de noticias Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Servidor de Directório" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Servidor FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Nome do Domínio e Servidor de Informação da Rede" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Servidor de Partilhas de Ficheiros e Impressão" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Servidor NFS, Servidor Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Base de Dados" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Servidores de base de dados - PostgreSQL e MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Correio Electrónico" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Servidor de correio electrónico Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Servidores de base de dados - PostgreSQL e MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Servidor/Computador de Rede" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Servidor NFS, servidor SMB, servidor proxy, servidor SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Ambiente gráfico" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma Workstation" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, ambiente gráfico com uma coleção de ferramentas de " +"acompanhamento" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME Workstation" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Ambiente gráfico com um conjunto de aplicações e ferramentas de alta " +"qualidade" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce Workstation" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Ambiente gráfico mais leve com um conjunto de aplicações e ferramentas " +"simples" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Estação de Trabalho MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Estação de Trabalho Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Um ambiente gráfico baseado no GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Estação de trabalho LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Ambiente gráfico leve, criado para a próxima geração de Qt" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Estação de trabalho Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Ambiente gráfico leve e rápido com seguidores dedicados" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Ecrâ LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Ambiente gráfico rápido e leve" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Outros Ambientes Gráficos" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, etc." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilidades" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Servidor SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Servidor de Configuração Remota Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Utilidades de Rede/Monitorização" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" +"Monitorização de ferramentas, contabilidade de processos, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Assistentes Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Assistentes para configurar o servidor" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Ocorreu um erro e não nos é possível determinar como o corrigir.\n" +"Pode continuar, mas poderão surgir problemas." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Alguns pacotes importantes não foram devidamente instalados.\n" +"Pode ser que exista algum problema com o CD ou com a unidade.\n" +"Verifique se existem erros no CD, executando o comando \"rpm -qpl media/main/" +"*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "A entrar na etapa '%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Instalação %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> entre elementos" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "O servidor Xorg está a demorar para iniciar. Por favor aguarde..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"O seu sistema tem poucos recursos. Pode encontrar problemas ao tentar " +"instalar %s.\n" +"Se isso ocorrer, pode tentar uma instalação em modo texto.\n" +"Para isso, prima 'F1' ao arrancar do CD e depois digite 'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Seleção de fonte" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Instalar Plasma Desktop %s" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instalar GNOME Desktop %s" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instalação personalizada" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma Desktop" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME Desktop" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Ecrâ Personalizado" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Aqui está uma pré-visualização do ecrã '%s'." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Clique nas imagens para ver uma previsão maior." + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Selecção dos Grupos de Pacotes" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Selecção individual de pacotes" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Desmarcar Tudo" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Tamanho total: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versão: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Tamanho: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importância: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Não pode seleccionar/desseleccionar este pacote" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "porque %s está em falta" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "porque %s não foi satisfeito" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "a tentar promover %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "para manter %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Não pode selecionar este pacote porque não existe espaço suficiente para o " +"instalar" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Os seguintes pacotes irão ser instalados" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Os seguintes pacotes irão ser removidos" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Este é um pacote obrigatório e não pode ser desmarcado" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Não pode desmarcar este pacote. Já se encontra instalado." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Não pode desmarcar este pacote. Tem que ser atualizado." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Mostrar pacotes selecionados automaticamente" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalar" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Carregar/Gravar selecção" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "A atualizar seleção de pacotes" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Alternar entre a lista de pacotes hierárquicos e planos" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Instalação mínima" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Gestão de Programas" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Escolha os pacotes que deseja instalar" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalação" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Sem detalhes" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tempo restante:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(a estimar...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pacote" +msgstr[1] "%d pacotes" +msgstr[2] "%d pacotes" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Sumário" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configurar" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "não configurado" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"As seguintes fontes de instalação foram encontrada.\n" +"Se quer evitar alguma, pode desmarcá-la agora." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Tem a opção de copiar o conteúdo do CD para o disco rígido antes da " +"instalação.\n" +"Continuará a partir do disco rígido e os pacotes permanecerão disponíveis " +"assim que o sistema estiver instalado." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copiar CDs inteiros" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Ocorreu um erro" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Por favor escolha o tipo de teclado" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Aqui está a lista completa dos teclados disponíveis:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalar/Actualizar" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Isto é uma instalação ou uma actualização?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalar" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Actualizar %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Senha de encriptação para %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Cancelar instalação, reiniciar o sistema" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nova Instalação" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Actualizar instalação anterior (não recomendado)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"O instalador detetou que o seu sistema Linux instalado não pode\n" +"ser atualizado com segurança para %s.\n" +"\n" +"Recomenda-se que substitua a sua instalação anterior.\n" +"\n" +"Aviso: deve efetuar uma cópia de segurança de todos os seus dados pessoais " +"antes de escolher \"Nova instalação\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "A configurar CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Mude o seu CD!\n" +"Por favor, insira o Cd-Rom \"%s\" na sua unidade e clique em \"Ok\".\n" +"Se não tiver este CD, clique em \"Cancelar\" para evitar a instalação a " +"partir deste Cd-Rom." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Está à procura de pacotes disponíveis..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"O seu sistema não tem espaço suficiente em disco para instalar ou atualizar " +"(%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Por favor escolha carregar ou guardar a seleção de pacotes.\n" +"O formato é o mesmo dos ficheiros gerados por auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Carregar" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Gravar" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Ficheiro danificado" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Selecção de Ecrã" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Pode escolher o seu perfil de ambiente de trabalho." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "O tamanho selecionado é maior do que o espaço disponível" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipo de instalação" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Não escolheu qualquer grupo de pacotes.\n" +"Por favor escolha o tipo de instalação mínima que deseja:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Com X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Instalar os pacotes recomendados " + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Com documentação básica (recomendado!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Instalação mínima (especialmente sem urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "A preparar a atualização ..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "A preparar instalação" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "A instalar o pacote %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Ocorreu um erro ao ordenar os pacotes:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Continuar mesmo assim?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Tentar novamente" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Saltar este pacote" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Ignorar todos os pacotes da fonte \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Voltar à média e selecção de pacotes" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Ocorreu um erro ao instalar o pacote %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configuração pós-instalação" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Por favor certifique-se de que a fonte Módulos de atualização está no " +"dispositivo %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Actualizações" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Agora tem oportunidade de configurar uma fonte online." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Isto permite instalar as atualizações de segurança." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Para configurar estas fontes, terá de ter uma ligação \n" +"à Internet a funcionar.\n" +"\n" +"Deseja configurar uma fonte de atualização?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Esse downloader não pôde ser instalado" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Repetir?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Falha ao adicionar a fonte" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Agora, tem a possibilidade de transferir os pacotes de atualização.\n" +"Estes pacotes foram atualizados depois do lançamento da distribuição.\n" +"Estes podem ter correções de segurança ou de erros.\n" +"\n" +"Para transferir estes pacotes, precisará de uma ligação à Internet.\n" +"\n" +"Deseja instalar as atualizações?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s em %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Material" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Placa de Som" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interface gráfico" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rede e Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxies" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "configurado" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nível de Segurança" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "activado" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "desactivado" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Não configurou o X. Tem certeza que deseja fazer isto?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "A preparar o programa inicial de arranque..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Seja paciente, isto pode demorar algum tempo..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Neste nível de segurança, o acesso aos ficheiros na partição Windows está " +"limitado ao administrador." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Insira uma disquete vazia no dispositivo %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "A criar disquete de auto-instalação..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Algumas etapas não foram concluídas.\n" +"\n" +"Deseja mesmo sair agora?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Parabéns" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Reiniciar" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Idioma" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Tradução" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licença" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Rato" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Detecção de discos rígidos" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Classe da instalação" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Teclado" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Segurança" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Particionamento" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatação" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Escolha de pacotes" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalação" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Utilizadores" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Arranque" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Configuração X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Sumário" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Serviços" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Actualizações" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Sair" diff --git a/perl-install/install/share/po/pt_BR.po b/perl-install/install/share/po/pt_BR.po new file mode 100644 index 000000000..26c679fb7 --- /dev/null +++ b/perl-install/install/share/po/pt_BR.po @@ -0,0 +1,1717 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Andrei Bosco Bezerra Torres <andrei_bosco@yahoo.com.br>, 2000,2003 +# Arthur Renato Mello <renato@conectiva.com.br>, 2005 +# Arthur R. Mello <renato@conectiva.com.br>, 2005 +# Bruno Dorfman Buys <brunobuys@zipmail.com.br>, 2002 +# Carlinhos Cecconi <carlinux@terra.com.br>, 2003-2004 +# Cristiano Otto Von Trompczynski <cris@mandriva.com>, 2005 +# Deivi Lopes Kuhn <deivikuhn@yahoo.com.br>, 2003-2004 +# Felipe Arruda <felipemiguel@gmail.com>, 2006-2008 +# Gilberto F. da Silva, 2022-2023 +# 3f37d448649cd548fa5a733e33387c2a_dee4ccf, 2014-2019 +# Michael Martins, 2017 +# Michael Martins, 2017,2019,2024 +# Michael Martins, 2019,2024 +# Ricardo de Castilho <cast_brasil@ig.com.br>, 2003 +# Sergio Rafael Lemke <sergio@mandriva.com.br>, 2009-2010 +# Tiago da Cruz Bezerra <tiagocruz18@uol.com.br>,2002 2003, 2004 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Tiago da Cruz Bezerra <tiagocruz18@uol.com.br>,2002 2003, " +"2004\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/MageiaLinux/" +"mageia/language/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " +"1000000 == 0 ? 1 : 2;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Junte-se a nós!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Faça do seu jeito!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Sua escolha!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Ferramentas de escritório" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Entretenimento doméstico" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Para as crianças" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Para a família!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Para os desenvolvedores!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Obrigado!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Seja livre!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Tem mais mídias adicionais?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"As seguintes mídias foram encontradas e serão usadas durante a instalação: " +"%s.\n" +"\n" +"\n" +"Tem alguma mídia de instalação adicional para configurar?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rede (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rede (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rede (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Configuração NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Insira o nome do host e o diretório de suas mídias NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Nome do host ausente" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "O diretório deve começar com \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Nome do host da montagem NFS ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Diretório" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Adicional" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Não foi possível encontrar um arquivo de lista de pacotes neste espelho. " +"Certifique-se de que o local esteja correto." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Alguns componentes de hardware em sua máquina necessitam de firmwares não " +"livres para que os drivers de software livre funcionem." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Você deve ativar \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" contém as várias partes dos sistemas e suas aplicações" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" contém software não livre.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Ela também contém firmwares necessários para o funcionamento de certos " +"dispositivos (por exemplo: algumas placas de vídeo ATI/AMD, algumas placas " +"de rede, algumas placas RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" contém software que não pode ser distribuído em todos os países " +"devido a patentes de software." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Ela também contém software de reconstrução de \"%s\" com recursos adicionais." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Aqui você pode ativar mais mídias, se quiser." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Essa mídia fornece atualizações de pacotes para a mídia \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Verificando pacotes já instalados..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Encontrando pacotes para atualizar..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Removendo pacotes antes da atualização..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Os seguintes pacotes serão removidos para permitir a atualização do seu " +"sistema: %s\n" +"\n" +"\n" +"Deseja realmente remover estes pacotes?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Erro ao ler o arquivo %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "O(s) seguinte(s) disco(s) foi(ram) renomeado(s):" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (anteriormente chamado de %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rede" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Escolha uma mídia" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "O arquivo já existe. Sobrescrevê-lo?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permissão negada" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Nome NFS incorreto" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Mídia %s ruim" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Não é possível fazer capturas de tela antes do particionamento" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "As capturas de tela estarão disponíveis após a instalação em %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalação" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configuração" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Você também deve formatar %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Alguns hardwares em seu computador precisam de drivers ``proprietários'' " +"para funcionar.\n" +"Você pode encontrar algumas informações sobre eles em: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Abrindo a rede" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Derrubando a rede" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Aguarde, baixando arquivo" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "não foi possível adicionar a mídia" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Copiando alguns pacotes em discos para uso futuro" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Cópia em andamento" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "deve ter" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "importante" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "muito bom" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "bom" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "talvez" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Obtendo informações do pacote a partir dos metadados XML ..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Nenhuma informação xml para a mídia \"%s\", apenas resultado\n" +"parcial para o pacote %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Sem descrição" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Alguns pacotes solicitados por %s não podem ser instalados:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Ocorreu um erro:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Ocorreu um erro fatal: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Não pergunte novamente" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d transações de instalação falharam" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Falha na instalação dos pacotes:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Estação de trabalho" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Escritório" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programas de escritório: processadores de texto (LibreOffice Writer, Kword), " +"planilhas (LibreOffice Calc, Kspread), visualizadores de PDF, etc" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Jogos" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programas de diversão: arcade, tabuleiros, estratégia, etc" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimídia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programas de reprodução/edição de som e vídeo" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Conjunto de ferramentas para ler e enviar email e notícias (mutt, tin...) e " +"para navegar na web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Computador de rede (cliente)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clientes para diferentes protocolos, incluindo ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Ferramentas para facilitar a configuração de seu computador" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Ferramentas de console" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editores, shells, ferramentas de arquivos, terminais" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Desenvolvimento" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Bibliotecas de desenvolvimento C e C++, programas e arquivos incluídos" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentação" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Livros e tutoriais sobre Linux e Software Livre" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Suporte a aplicativos de terceiros" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Servidor web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Servidor Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/roteador" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Gateway de internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Email/notícias" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Servidor de email Postfix, servidor de notícias Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Servidor de diretórios" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Servidor FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Servidor de nome de domínio e informações de rede" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Servidor de compartilhamento de arquivos e impressoras" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Servidor NFS, servidor samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Banco de dados" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Servidor de banco de dados PostgreSQL e MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Email" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Servidor de email Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Servidor de banco de dados PostgreSQL ou MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Servidor de computador de rede" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Servidor NFS, servidor SMB, servidor proxy, servidor SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Ambiente gráfico" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"O K Desktop Environment, o ambiente gráfico básico com uma coleção de " +"ferramentas que o acompanham" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Um ambiente gráfico com um conjunto de aplicativos e ferramentas de desktop " +"amigáveis ao usuário" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Um ambiente gráfico mais leve com um conjunto de aplicativos e ferramentas " +"de desktop amigáveis ao usuário" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Um ambiente gráfico baseado em GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Desktop LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" +"A próxima geração do ambiente de desktop leve do Mageia Linux, totalmente " +"reescrito em Qt" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Desktop Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Um ambiente gráfico leve e rápido com seguidores dedicados" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Desktop LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Um ambiente gráfico leve e rápido" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Outros desktops gráficos" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, etc" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilitários" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Servidor SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Servidor de configuração remota Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Utilitários de rede/monitoramento" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" +"Ferramentas de monitoramento, contabilidade de processos, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Assistentes Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Assistentes para configurar o servidor" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Ocorreu um erro, mas não sei como lidar com isso de forma adequada.\n" +"Continue por sua conta e risco." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Alguns pacotes importantes não foram instalados corretamente.\n" +"Ou sua unidade de cdrom ou seu cdrom está com defeito.\n" +"Verifique o cdrom em um computador usando \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Entrando na etapa `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Instalação %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> entre elementos" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "O servidor Xorg está lento para iniciar. Aguarde..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Seu sistema está com poucos recursos. Você pode ter algum problema para\n" +"instalar %s. Se isso ocorrer, você pode tentar uma instalação\n" +"de texto. Para isso, pressione `F1' ao inicializar no CDROM e digite `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Seleção de mídias" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Instalar o desktop Plasma %s" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instalar o desktop GNOME %s" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instalação personalizada" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Desktop Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Desktop GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Desktop personalizado" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Aqui está uma prévia do desktop '%s'." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Clique nas imagens para ver uma pré-visualização maior" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Seleção de grupo de pacotes" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Seleção de pacote individual" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Desmarcar tudo" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Tamanho total: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versão: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Tamanho: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importância: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Você não pode selecionar/desmarcar este pacote" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "devido à falta de %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "devido a %s não satisfeito" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "tentando promover %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "para manter %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Você não pode selecionar este pacote porque não há espaço suficiente para " +"instalá-lo" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Os seguintes pacotes serão instalados" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Os seguintes pacotes serão removidos" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Esse é um pacote obrigatório, não pode ser desmarcado" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Você não pode desmarcar este pacote. Ele já está instalado" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Você não pode desmarcar este pacote. Ele deve ser atualizado" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Mostrar pacotes selecionados automaticamente" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalar" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Carregar/salvar seleção" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Atualizando a seleção de pacotes" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Alternar entre a lista de pacotes hierárquica e plana" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Instalação mínima" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Gerenciamento de software" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Escolha os pacotes que deseja instalar" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalando" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Sem detalhes" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tempo restante:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(estimando...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pacote" +msgstr[1] "%d pacotes" +msgstr[2] "%d pacotes" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Resumo" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configurar" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "não configurado" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"As seguintes mídias de instalação foram encontradas.\n" +"Se quiser pular algumas delas, pode desmarcá-las agora." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Você tem a opção de copiar o conteúdo dos CDs para o disco rígido antes da " +"instalação.\n" +"Ele continua a partir do disco rígido e os pacotes permanecem disponíveis " +"quando o sistema estiver totalmente instalado." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copiar CDs inteiros" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Ocorreu um erro" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Escolha o layout do seu teclado" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Aqui está a lista completa de teclados disponíveis:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalar/atualizar" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Isso é uma instalação ou uma atualização?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalação" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Atualizar %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Chave de criptografia para %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Cancelar a instalação, reiniciar o sistema" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nova instalação" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Atualizar a instalação anterior (não recomendado)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"O instalador detectou que seu sistema Linux instalado não pode\n" +"ser atualizado com segurança para %s.\n" +"\n" +"É recomendada uma nova instalação substituindo a anterior.\n" +"\n" +"Atenção: você deve fazer backup de todos os seus dados pessoais\n" +"antes de escolher \"Nova instalação\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Configurando o CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Troque seu Cd-Rom!\n" +"Insira o Cd-Rom chamado \"%s\" em sua unidade e pressione\n" +"Ok quando terminar.\n" +"Se não tiver, pressione Cancelar para evitar a instalação deste Cd-Rom." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Procurando pacotes disponíveis..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Seu sistema não tem espaço suficiente para instalação ou atualização (%dMB > " +"%dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Escolha carregar ou salvar seleção de pacote.\n" +"O formato é o mesmo dos arquivos gerados pelo auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Carregar" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Salvar" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Arquivo ruim" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Seleção de desktop" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Você pode escolher o perfil de desktop de sua estação de trabalho." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "O tamanho selecionado é maior que o espaço disponível" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipo de instalação" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Você não selecionou nenhum grupo de pacotes.\n" +"Escolha a instalação mínima desejada:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Com X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Instalar pacotes recomendados" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Com documentação básica (recomendado!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Instalação realmente mínima (especialmente sem urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Preparando atualização..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Preparando a instalação" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instalando o pacote %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Ocorreu um erro ao solicitar os pacotes:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Continuar mesmo assim?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Tentar novamente" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Pular este pacote" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Pular todos os pacotes da mídia \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Voltar para a seleção de mídia e pacotes" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Ocorreu um erro ao instalar o pacote %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configuração pós-instalação" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Certifique-se de que as mídias dos módulos de atualização estejam na unidade " +"%s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Atualizações" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Agora você tem a oportunidade de configurar as mídias online." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Isso permite instalar atualizações de segurança." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Para configurar essas mídias, você precisa estar conectado à internet.\n" +"\n" +"Deseja configurar as mídias de atualização?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Esse gerenciador de downloads não pôde ser instalado" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Tentar novamente ?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Falha ao adicionar a mídia" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Agora você tem a oportunidade de baixar pacotes atualizados. Esses\n" +"pacotes foram atualizados após o lançamento da distribuição.\n" +"Eles podem conter correções de segurança ou bugs.\n" +"\n" +"Para baixar esses pacotes, você precisar estar conectado à internet.\n" +"\n" +"Deseja instalar as atualizações?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s em %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Placa de som" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interface gráfica" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rede & internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxys" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "configurado" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nível de segurança" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "ativado" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "desativado" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Você não configurou o X. Tem certeza de que realmente deseja isso?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Preparando o programa de inicialização..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Seja paciente, isso pode demorar um pouco..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Neste nível de segurança, o acesso aos arquivos na partição do Windows é " +"restrito ao administrador." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Insira um disquete virgem na unidade %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Criando o disquete de instalação automática..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Algumas etapas não foram concluídas.\n" +"\n" +"Deseja realmente sair agora?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Parabéns" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Reiniciar" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Idioma" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Idioma" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licença" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mouse" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Detecção de disco rígido" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Classe de instalação" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Teclado" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Segurança" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Particionamento" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatação" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Escolha de pacotes" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalação" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Usuários" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Gerenciador de inicialização" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Configurar o X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Resumo" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Serviços" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Atualizações" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Sair" diff --git a/perl-install/install/share/po/ro.po b/perl-install/install/share/po/ro.po new file mode 100644 index 000000000..e930d0dbe --- /dev/null +++ b/perl-install/install/share/po/ro.po @@ -0,0 +1,1725 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dan <djmarian4u@hotmail.com>, 2016 +# Florin Cătălin RUSSEN <cfrussen@yahoo.co.uk>, 2013-2015 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Dan <djmarian4u@hotmail.com>\n" +"Language-Team: Romanian (http://www.transifex.com/MageiaLinux/mageia/" +"language/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Alăturați-vă nouă!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Personalizați după plac!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Alegerea voastră!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Unelte de birotică" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Divertisment" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Pentru copii" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Pentru întreaga familie!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Pentru dezvoltatori!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Vă mulțumim!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Fiți liberi!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Mai aveți și alte medii suplimentare?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Următoarele medii au fost găsite și vor fi utilizate în timpul instalării: " +"%s.\n" +"\n" +"\n" +"Aveți un mediu de instalare suplimentar pe care doriți să-l configurați?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rețea (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rețea (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rețea (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Configurare NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Introduceți numele gazdei și directorului mediului NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Lipsește numele gazdei" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Directorul trebuie să înceapă cu \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Numele de gazdă al montajului NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Director" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Suplimentar" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Nu s-a găsit lista de pachete pe acest server alternativ. Asigurați-vă că " +"adresa este corectă." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Ediția de bază" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Ediția nuanțată" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Ediția proprietară" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Anumite componente materiale din configurația de față necesită un microcod " +"proprietar pentru funcționarea corectă a piloților." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Ar trebui să activați „%s”" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "„%s” conține diverse părți din sistem și aplicațiile sale" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "„%s” conține aplicații proprietare.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Conține și microcod necesar pentru buna funcționare a anumitor dispozitive " +"(ex: unele plăci grafice ATI/AMD, unele plăci de rețea, unele plăci " +"RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"„%s” conține aplicații care nu pot fi distribuite în toate țările din cauza " +"brevetelor." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Conține și aplicații din „%s” recompilate cu funcționalități suplimentare." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Aici puteți activa mai multe medii dacă doriți." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Acest mediu furnizează actualizări pentru mediul „%s”" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Se caută pachetele deja instalate..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Se caută pachetele de actualizat..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Se înlătură pachetele înainte de actualizare..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Următoarele pachete vor fi înlăturate pentru a permite actualizarea " +"sistemului: %s\n" +"\n" +"\n" +"Chiar doriți înlăturarea acestor pachete?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Eroare la citirea fișierului %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Următoarele discuri au fost redenumite:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (denumit anterior %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rețea" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Alegeți un mediu" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Fișierul există deja. Se suprascrie?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permisiune respinsă" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Nume NFS greșit" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Mediu incorect %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Nu se pot face capturi de ecran înainte de partiționare" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Capturile de ecran vor fi disponibile după instalare în %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalare" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configurare" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Trebuie să formatați și %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Unele componente din calculator au nevoie de piloți „proprietari” pentru a " +"funcționa.\n" +"Puteți găsi cîteva informații despre aceștia la: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Se pornește rețeaua" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Se oprește rețeaua" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Așteptați, se preia fișierul" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "mediul nu poate fi adăugat" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Se copiază unele pachete pe discuri pentru utilizare ulterioară" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Copiere în curs" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "obligatoriu" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "important" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "foarte simpatic" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "simpatic" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "eventual" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Se obțin informațiile despre pachet din metadatele XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Nu există informații XML pentru mediul „%s”, numai rezultate parțiale pentru " +"pachetul %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nici o descriere" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Unele pachete cerute de %s nu pot fi instalate:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "S-a produs o eroare:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "A apărut o eroare fatală: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Nu mai întreba" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d operațiuni de instalare eșuate" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Instalarea pachetelor a eșuat:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Stație de lucru" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Calculator de birou" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programe de birotică: procesoare de text (LibreOffice Writer, Kword), calcul " +"tabelar (LibreOffice Calc, Kspread), vizualizatoare de fișiere PDF, etc." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Stație de jocuri" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programe de amuzament: jocuri de acțiune, table, strategie etc." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Stație multimedia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programe de editare/redare sunet și video" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Stație de Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Set de unelte pentru citire/trimitere de poștă și știri (mutt, tin..) și " +"navigare pe Internet" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Calculator în rețea (client)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clienți pentru diverse protocoale, inclusiv ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Unelte pentru a vă ușura configurarea calculatorului" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Unelte de consolă" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editoare, interpretoare, terminale, unelte de fișiere" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Dezvoltare" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Biblioteci de dezvoltare C și C++, programe și fișiere include" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentație" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Cărți și ghiduri despre Linux și programele libere" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Baza standard Linux. Suport pentru aplicații terțe." + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Server Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Lucru colaborativ" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Server Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Parafoc/Ruter" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Pasarelă Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Poștă/Știri" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Serverul de poștă Postfix, serverul de știri Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Server de anuar" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Server FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Server de DNS și NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Server de fișiere și de partajare a imprimantei" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Server NFS, server Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Bază de date" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Server de baze de date MariaDB și PostgreSQL" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Poștă electronică" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Serverul de poștă electronică Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Serverul de baze de date MariaDB sau PostgreSQL" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Server în rețea" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Server NFS, SMB, Proxy, SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Mediu grafic de lucru" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Stația de lucru Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Mediul de birou K, mediul grafic de bază cu o colecție de unelte asociate" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Stație de lucru Gnome" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Un mediu grafic cu un set de aplicații prietenoase și unelte de birou" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Un mediu grafic lejer cu un set de unelte de birou și de aplicații " +"prietenoase" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Stație de lucru MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Stație de lucru Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Un mediu grafic bazat pe GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Birou LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Un port QT de generație nouă a mediului lejer de birou" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Un mediu grafic rapid și lejer cu adepți dedicați" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Birou LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Un mediu grafic lejer și rapid" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Alte medii grafice" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, etc." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utilitare" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Server SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Serverul de configurare distantă Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Utilitare rețea/Supraveghere" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Unelte de supraveghere, evidența proceselor, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Asistenții Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Asistenți pentru configurarea de server" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"S-a produs o eroare, dar nu poate fi interpretată în mod corect.\n" +"Continuați pe propriul risc." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Cîteva pachete importante nu s-au instalat corect.\n" +"Ori unitatea ori discul optic este defect.\n" +"Verificați discul optic pe un alt sistem cu comanda „rpm -qpl media/main/*." +"rpm”\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Se începe etapa „%s”\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s instalare %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> între elemente" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Serverul Xorg este încet la pornire. Așteptați vă rog..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Sistemul are resurse puține. Este posibil să aveți probleme în timpul " +"instalării %s.\n" +"În acest caz puteți încerca o instalare în mod text. Pentru aceasta, apăsați " +"„F1”\n" +"la pornirea de pe CD-ROM, apoi introduceți „text”." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Selectare mediu" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Instalează biroul %s Plasma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instalează biroul %s GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instalare personalizată" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Birou Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Birou GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Birou personalizat" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Iată o previzualizare a biroului „%s”." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Apăsați pe imagini ca să le vedeți mai mari" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Selectare grupuri de pachete" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Selectare individuală a pachetelor" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Deselectează tot" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Mărime totală: %d / %d Mo" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versiune: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Mărime: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d Ko\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importanță: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Nu puteți selecta/deselecta acest pachet" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "datorită lipsei lui %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "datorită dependenței nesatisfăcute %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "se încearcă promovarea lui %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "pentru a păstra %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Nu puteți selecta acest pachet pentru că nu este destul spațiu pentru a-l " +"instala" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Următoarele pachetele vor instalate" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Următoarele pachete vor fi înlăturate" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Acesta este un pachet indispensabil și nu poate fi deselectat" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Nu puteți deselecta acest pachet. Este deja instalat" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Nu puteți deselecta acest pachet. Trebuie actualizat." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Arată pachetele selectate automat" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalare" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Încarcă/Salvează selecția" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Actualizare pachete selectate" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Instalare minimalistă" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Gestionare aplicații" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Alegeți pachetele pe care doriți să le instalați" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Se instalează" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Fără detalii" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Timp rămas: " + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(se estimează...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pachete" +msgstr[1] "%d pachet" +msgstr[2] "%d pachete" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Sumar" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configurează" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "neconfigurat" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Au fost găsite următoarele medii de instalare.\n" +"Dacă doriți să săriți peste unele din ele, le puteți deselecta acum." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Aveți opțiunea să copiați conținutul CD-urilor pe discul dur înainte de " +"instalare.\n" +"Se va continua de pe discul dur, iar pachetele vor rămîne disponibile după " +"instalarea sistemului." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copiază CD-urile în întregime" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "S-a produs o eroare" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Alegeți dispunerea tastaturii" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Iată lista tuturor tastaturilor disponibile:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalare/Actualizare majoră" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Este vorba de o instalare sau de o actualizare majoră?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalare" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Actualizare majoră către %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Cheia de criptare pentru %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Anulează instalarea, repornește sistemul" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Instalare nouă" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Actualizare majoră peste instalarea precedentă (nerecomandat)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Instalatorul a detectat că sistemul Mageia Linux instalat actual nu va " +"putea\n" +"fi actualizat în siguranță la %s.\n" +"\n" +"Se recomandă o instalare nouă care să o înlocuiască pe cea precedentă.\n" +"\n" +"Atenție: trebuie să vă faceți o copie de siguranță cu toate datele " +"personale\n" +"înainte de a alege \"Instalare nouă\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Configurare CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Schimbați CD-ul!\n" +"\n" +"Introduceți CD-ul etichetat „%s” și apoi apăsați Ok cînd sînteți gata.\n" +"Dacă nu-l aveți, apăsați „Anulează” pentru a evita instalarea de pe acest CD." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Se caută pachetele disponibile..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Sistemul nu dispune de suficient spațiu pentru o instalare sau actualizare " +"majoră (%dMo > %dMo)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Alegeți încărcarea sau salvarea selecției de pachete.\n" +"Formatul este același cu fișierele generate de auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Încarcă" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Salvează" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Fișier eronat" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Selectarea biroului" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Puteți alege profilul biroului stației voastre de lucru." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Dimensiunea selectată este mai mare decît spațiul disponibil" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tip de instalare" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Nu ați selectat nici un grup de pachete.\n" +"Alegeți instalarea minimalistă pe care o doriți:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Cu X11" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Instalează pachetele recomandate" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Cu documentația de bază (recomandat!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Instalare cu adevărat minimalistă (special fără urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Se pregătește actualizarea majoră..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Se pregătește instalarea" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Se instalează pachetul %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "S-a produs o eroare la ordonarea pachetelor:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Să se continue totuși?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Reîncearcă" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Ignoră acest pachet" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Ignoră toate pachetele din mediul „%s”" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Înapoi la selectarea mediilor și a pachetelor" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "S-a produs o eroare la instalarea pachetului %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configurare post-instalare" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Asigurați-vă că mediul cu modulele de actualizare este în unitatea %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Actualizări" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Acum aveți posibilitatea să configurați mediile online." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Aceasta vă permite să instalați actualizările de securitate." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Pentru a configura aceste medii va trebui să aveți o conexiune la\n" +"Internet funcțională.\n" +"\n" +"Sigur doriți să configurați mediile de actualizare?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Următoarele pachetele vor instalate" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Reîncercați?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Adăugare de mediu eșuată" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Aveți posibilitatea să descărcați pachete actualizate. Aceste pachete\n" +"au fost actualizate după ce a fost lansată distribuția. Acestea pot conține\n" +"actualizări de securitate sau corectări de erori.\n" +"\n" +"Pentru a descărca aceste pachete, veți avea nevoie de o conexiune la " +"Internet\n" +"\n" +"Doriți să instalați actualizările?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s pe %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Componente materiale" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Placă de sunet" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfață grafică" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rețea & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Servere proxy" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "configurat" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nivel de securitate" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Parafoc" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "activat" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "dezactivat" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Nu ați configurat X11. Sigur doriți acest lucru?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Se pregătește pornirea programului inițial..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Aveți răbdare, va dura ceva timp..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"La acest nivel de securitate, accesul la fișierele de pe partiția Windows " +"este permis doar administratorului." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Introduceți o dischetă goală în unitatea %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Se creează discheta de auto-instalare..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Cîteva etape nu au fost terminate.\n" +"\n" +"Chiar vreți să abandonați acum?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Felicitări" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Repornește" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Limbă" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Localizare" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licență" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Maus" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Detectarea discului dur" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Clasă de instalare" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastatură" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Securitate" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partiționare" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatare" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Alegerea pachetelor" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalare" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Utilizatori" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Încărcător de sistem" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Configurare X11" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Sumar" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servicii" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Actualizări" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Ieșire" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Adresa URL a serverului alternativ?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Adresa URL trebuie să înceapă cu ftp:// sau http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Se contactează situl %s pentru obținerea listei de servere alternative " +#~ "disponibile ..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Nu s-a putut contacta situl %s pentru obținerea listei de servere " +#~ "alternative disponibile" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Alegeți un server alternativ de pe care să descărcați pachetele" diff --git a/perl-install/install/share/po/ru.po b/perl-install/install/share/po/ru.po new file mode 100644 index 000000000..1d128f22a --- /dev/null +++ b/perl-install/install/share/po/ru.po @@ -0,0 +1,1712 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# akdengi <kazancas@gmail.com>, 2008 +# Alexander Kazancev <kazancas@mandriva.ru>, 2008-2009 +# Alexander Kazancev <kazancas@gmail.com>, 2008 +# Alexander Kuzmenkov <rc@mezon.ru>, 2007 +# AlexL <loginov.alex.valer@gmail.com>, 2016,2018,2023 +# Alice Lafox <alice@lafox.com.ua>, 2003 +# Alice Lafox <alice@lafox.net>, 2004-2005 +# Boris Zhalilo <daviongm@gmail.com>, 2014 +# Анатолий Валерианович <ffox909@mail.ru>, 2014 +# Валентин Сайков <saikov.vb@gmail.com>, 2015 +# Анатолий Валерианович <ffox909@mail.ru>, 2014 +# Victor, 2022 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: AlexL <loginov.alex.valer@gmail.com>, 2016,2018,2023\n" +"Language-Team: Russian (http://app.transifex.com/MageiaLinux/mageia/language/" +"ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Присоединяйтесь к нам!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Подстройте систему под себя!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Выбор за Вами!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Офисные инструменты" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Домашняя развлекательная система" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Для детей" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Для семьи!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Для разработчиков!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Спасибо!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Будьте свободными!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Есть дополнительный носитель?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Был найден следующий носитель, который будет использован во время установки: " +"%s.\n" +"\n" +"\n" +"Если ли дополнительный носитель для настройки?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Сеть (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Сеть (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Сеть (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Настройка NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Укажите имя компьютера и каталог ресурса NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Не указано имя компьютера" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Имя каталога должно начинаться с \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Имя компьютера для монтирования NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Каталог" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Дополнительный" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Невозможно найти список пакетов на этом зеркале. Проверьте правильность " +"адреса." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Для работы части оборудования на компьютере следует установить " +"микропрограммы с закрытым кодом, необходимые для работы драйверов с открытым " +"кодом." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Следует включить «%s»" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "В «%s» содержатся различные части системы и её программ" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "В «%s» содержатся несвободные программы.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Там также содержатся пакеты с микрокодом, необходимым для работы некоторых " +"устройств (например, некоторых видеокарт ATI/AMD, некоторых сетевых карт, " +"некоторых карт RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"В \"%s\" содержатся пакеты с программным обеспечением, которое нельзя " +"свободно распространять в некоторых странах из-за нарушения патентных прав " +"на это программное обеспечение." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Также в \"%s\" содержатся пакеты, собранные с дополнительными возможностями, " +"использование которых ограничивается патентами." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Здесь вы можете включить дополнительные хранилища, если это вам нужно." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "В этом источнике содержатся обновления пакетов из источника \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Выполняется поиск установленных пакетов..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Выполняется поиск пакетов для обновления..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Удаляются пакеты перед обновлением..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Следующие пакеты должны быть удалены, чтобы можно было обновить систему: %s\n" +"\n" +"\n" +"Удалить эти пакеты?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Ошибка при чтении файла %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Следующие диски были переименованы:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (ранее назывался %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Сеть" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Выберите носитель" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Файл уже существует. Переписать его?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Доступ запрещён" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Неверное имя NFS" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Неверный источник %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Невозможно создать скриншоты перед разметкой диска" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "После установки скриншоты будут находиться в каталоге %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Установка" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Настройка" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Также необходимо отформатировать %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Для работы некоторых устройств компьютера требуются «несвободные» драйверы.\n" +"Информация о них доступна на сайте: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Поднимается сеть" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Опускается сеть" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Подождите, идёт загрузка" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "не удалось добавить источник" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "На диск копируются пакеты для использования в будущем" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Идёт копирование" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "должен быть" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "важный" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "весьма желательно" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "желательно" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "может быть" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Получения данных о пакетах из метаданных XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"для источника «%s» отсутствует xml-info; для пакета %s получен только " +"частичный результат" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Описания нет" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Некоторые пакеты, запрошенные %s, не могут быть установлены:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Произошла ошибка:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Произошла критическая ошибка: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Больше не спрашивать" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d установочных транзакций не удались" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Не удалось установить пакет:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Рабочая станция" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Офисная рабочая станция" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Офисные программы: текстовые процессоры (LibreOffice Writer, Kword), " +"электронные таблицы (LibreOffice Calc, Kspread), программы для просмотра PDF " +"и т. д." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Игровой компьютер" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Развлекательные программы: аркады, настольные игры, стратегии и т. д." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Мультимедийный компьютер" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Программы для воспроизведения/редактирования звука и видео" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Компьютер для Интернета" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Набор программ для работы с корреспонденцией (mutt, tin...) и веб-серфинга" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Сетевой компьютер (клиент)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Клиенты для различных протоколов, включая ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Утилиты для облегчения настройки компьютера" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Инструменты консоли" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Редакторы, командные оболочки, файловые утилиты, терминалы" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Разработка" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Библиотеки для разработки на C и C++, программы и заголовочные файлы" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Документация" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Книги и документация по Linux и свободному программному обеспечению" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Поддержка приложений сторонних разработчиков" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Веб-сервер" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "ПО для совместной работы" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Сервер Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Файервол/Маршрутизатор" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Интернет-шлюз" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Почта/Новости" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Почтовый сервер Postfix, сервер новостей Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Служба каталогов" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Сервер FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Сервер доменных имен и сетевые информационные службы (NIS)" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Сервер общего доступа к файлам и принтерам" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Сервер NFS, сервер Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "База данных" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Сервер баз данных PostgreSQL и MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Веб/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Почта" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Почтовый сервер Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Сервер баз данных PostgreSQL или MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Сетевой сервер" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Cервер NFS, сервер SMB, прокси-сервер, сервер SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Графическое окружение" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Рабочая станция Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, основная графическая среда с набором сопроводительных " +"инструментов" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Рабочая станция Gnome" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Графическая среда с удобным для пользователя набором приложений и утилит " +"рабочего стола" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Рабочая станция Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Более лёгкая графическая среда с удобным набором приложений и инструментов" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Рабочая станция MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Рабочая станция Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Графическое окружение на основе GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Рабочий стол LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Усовершенствованный QT-порт легковесной среды рабочего стола" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Рабочий стол Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Легкая и быстрая графическая среда" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Рабочий стол LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Быстрая и нетребовательная к ресурсам графическая оболочка" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Другие графические рабочие столы" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm и т.п." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Утилиты" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Сервер SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Сервер удалённой настройки Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Сетевые утилиты/Мониторинг" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Утилиты мониторинга, учёт процессов, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Мастеры настройки Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Мастеры настройки сервера" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Произошла ошибка, но я не знаю, как её корректно обработать.\n" +"Продолжайте на свой собственный страх и риск." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Некоторые важные пакеты установились некорректно.\n" +"Повреждён привод CDROM или компакт-диск.\n" +"Проверьте вставленный в компьютер диск с помощью команды \"rpm -qpl media/" +"main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Выполняется переход на этап `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Установка %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> между элементами" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg-сервер долго запускается. Подождите..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Системе не хватает ресурсов. Во время установки %s могут\n" +"возникнуть проблемы. В этом случае можно попробовать установку в\n" +"текстовом режиме. Для этого после загрузки с диска нажмите `F1',\n" +"а затем наберите 'text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Выбор источника" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Установить %s рабочий стол Plasma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Установить %s рабочий стол GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Выборочная установка" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Рабочий стол Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Рабочий стол GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Другой рабочий стол" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Это предварительный вид рабочего стола «%s»." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Нажмите на картинку, чтобы увеличить её" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Выбор групп пакетов" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Выбор отдельных пакетов" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Снять выделение со всех" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Общий размер: %d/%d МБ" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Версия:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Размер:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d КБ\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Важность: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Этот пакет нельзя выбрать/отменить" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "из-за отсутствия %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "из-за неудовлетворенных %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "выполняется попытка активизировать %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "чтобы сохранить %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Этот пакет нельзя выбрать, т.к. для его установки не хватает места" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Будут установлены следующие пакеты " + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Будут удалены следующие пакеты " + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Этот пакет является обязательным, его нельзя пропустить" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Этот пакет нельзя убрать, потому что он уже установлен" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Этот пакет нельзя убрать, потому что он должен быть обновлен" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Показывать автоматически выбранные пакеты" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Установить" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Загрузить/Сохранить выбор" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Обновляется выбор пакетов" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Переключение между иерархическим и плоским списком пакетов" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Минимальная установка" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Управление ПО" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Выберите пакеты, которые нужно установить" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Установка" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Убрать подробности" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Оставшееся время:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(вычисляется...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d пакет" +msgstr[1] "%d пакеты" +msgstr[2] "%d пакеты" +msgstr[3] "%d пакеты" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Сводка" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Настройка" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "не настроен" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Найдены следующие источники для установки.\n" +"Если нужно пропустить некоторые из них, сейчас с них можно снять флажки." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Содержимое компакт-диска перед установкой можно скопировать на жёсткий " +"диск.\n" +"После этого установка продолжится с жёсткого диска, и пакеты будут доступны " +"после полной установки системы." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Целиком скопировать компакт-диски" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Произошла ошибка" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Выберите раскладку клавиатуры" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Полный список доступных раскладок:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Установка/Обновление" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Это установка или обновление?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Установка" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Обновление %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Ключ шифрования для %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Отмена установки, перезагрузка системы" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Новая установка" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Обновление предыдущей установки (не рекомендуется)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Установщик обнаружил, что существующая установка Mageia не\n" +"может быть безопасно обновлена на %s.\n" +"\n" +"Рекомедуется заново установить систему, заменив существующую.\n" +"\n" +"Внимание: вы должны сделать копию всех ваших персональных данных, перед " +"выбором \"Новая\n" +"Установка\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Настройка CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Смените компакт-диск!\n" +"\n" +"Вставьте в привод компакт-диск под названием \"%s\", а затем нажмите 'ОК'.\n" +"Если у вас его нет, нажмите 'Отмена', чтобы отказаться от установки с этого " +"диска." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Поиск доступных пакетов..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"В вашей системе недостаточно свободного дискового пространства для установки " +"или обновления (%d МБ > %d МБ)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Выберите загрузку или сохранение выбора пакетов.\n" +"Формат файлов такой же, как и у созданных при автоматической установке." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Загрузить" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Сохранить" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Неверный файл" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Выбор рабочего стола" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Можно выбрать профиль настольной среды." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Выбранный размер превышает доступное место" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Тип установки" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Не была выбрана ни одна группа пакетов.\n" +"Выберите тип минимальной установки:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "С Х-сервером" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Установить рекомендуемые пакеты" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "С основной документацией (рекомендуется)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Действительно минимальная установка (даже без urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Подготавливается обновление..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Подготовка к установке" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Устанавливается пакет %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "При загрузке пакетов возникла ошибка:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Всё равно продолжить?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Повторить" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Пропустить этот пакет" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Пропустить все пакеты из источника \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Вернуться к выбору источника и пакетов" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "При установке пакета %s возникла ошибка." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Настройка после установки" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Проверьте наличие носителя 'Update Modules' в устройстве %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Обновления" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Теперь вы можете настроить сетевые хранилища пакетов." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Это дает возможность устанавливать обновления безопасности." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Для настройки хранилищ пакетов вам понадобится работающее\n" +"интернет соединение.\n" +"Хотите настроить хранилище пакетов для обновления?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Этот загрузчик не может быть установлен" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Повторить попытку?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Не удалось добавить источник" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Сейчас можно загрузить обновлённые пакеты. Эти пакеты были обновлены после\n" +"выхода дистрибутива. В них могут находиться исправления уязвимостей\n" +"и других ошибок.\n" +"\n" +"Для загрузки этих пакетов необходимо наличие рабочего подключения\n" +"к Интернету.\n" +"\n" +"Установить эти обновления?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s на %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Оборудование" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Звуковая карта" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Графический интерфейс" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Сеть и Интернет" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Прокси" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "настроен" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Уровень безопасности" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Файервол" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "включен" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "отключен" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Х-сервер ещё не настроен. Вы точно уверены в своих действиях?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Подготовка начального загрузчика..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Подождите, это может занять некоторое время..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"На данном уровне безопасности доступ к файлам на разделе Windows разрешён " +"только администратору. " + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Вставьте чистую дискету в дисковод %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Создается дискета автоматической установки..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Некоторые этапы не завершены.\n" +"\n" +"Вы действительно хотите выйти?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Поздравляем" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Перезагрузка" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Выбор языка" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Локализация" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Лицензия" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Мышь" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Поиск жёсткого диска" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Тип установки" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Клавиатура" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Безопасность" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Разметка диска" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Форматирование" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Выбор пакетов" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Установка" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Пользователи" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Загрузчик" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Настройка Х-сервера" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Сводка" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Службы" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Обновления" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Выход" diff --git a/perl-install/install/share/po/sc.po b/perl-install/install/share/po/sc.po new file mode 100644 index 000000000..974b481cb --- /dev/null +++ b/perl-install/install/share/po/sc.po @@ -0,0 +1,1625 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Antoni Pistis <antonio.pistis@virgilio.it>, 2005 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Sardinian (http://www.transifex.com/MageiaLinux/mageia/" +"language/sc/)\n" +"Language: sc\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Arretza (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Arretza (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Arretza (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Assètiu NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Directory" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Càstiu is pakitus jai aposentaus..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Agatu is pakitus po ajorronai..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Srèxinu is pakitus ki dui funt po ajorronai..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Faddina ligendi su file %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Apu arrenominau is discus ki sighint:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (innantis nominau %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Arretza" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Sçobera unu suportu, po praxeri" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Su file esistit jai. Nci scriu apitzus?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permissu dennegau" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "No fait a fai fotografias innantis de pratzidurai" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "As a podi biri is fotografias apustis de s'aposentada in %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Assètiu" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Depis formatai %s puru" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"A cancu parti hardware serbint driver ``proprietàrius''po traballai.\n" +"Podis agatai cancu sceda apitzus a: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Alluu s'arretza" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Studu s'arretza" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Còpia in cursu" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nisçuna descriidura" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Faddina mortali: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d transatzionis de aposentadura faddias" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Workstation" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Adelantamentu" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documentadura" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Server Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Traballu in Grupu" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Server Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Gateway po Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Curreu/Noas" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Server de curreu Postfix, server de noas Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Server de Directory" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Server FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Server NFS, server Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Database" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Server po Database PostGreSQL e MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Curreu" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Server de curreu Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Server po Database PostGreSQL e MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Ambienti Gràfigu" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME Workstation" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Atras scrianias gràfigas" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Server SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Faddina. No sciu comenti ndi bessiri beni.\n" +"Sighi a perìgulu tuu." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Aposentadura de %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> intr''e elementus" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Sçoberu pakitus unu a unu" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Mesura totali: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versioni: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Mesura: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Importu: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "No podis scerai/disiscerai custu pakitu" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "ca amancat %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "ca no est satisfatu %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "provu a sçoberai %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "po podi apoderai %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"No podis sçoberai custu pakitu, ca no dui at spàtziu abasta po d'aposentai" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Megu a aposentai is pakitus ki sighint" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Megu a srexinai is pakitus ki sighint" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Custu est unu palitu necessàriu, no fait a du disiscerai" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "No fait a disiscerai custu pakitu. Est jai aposentau" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "No fait a disiscerai custu pakitu. Bolit ajorronau" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Amosta in automàtigu is pakitus sçoberaus" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Aposenta" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Càrriga/Sarva su sçoberu" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Ajorronu su sçoberu de is pakitus" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Aposentadura minimali" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Maniju de is programas" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Sçobera is pakitus ki bolis aposentai" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Seu aposentendi" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Arresùmini" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Assètia" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "no assetiau" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Còpia totu is CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Faddina" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Sçobera su skema de su tecrau" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Aposenta/Ajorrona" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Est una aposentadura o una ajorronadura?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Aposenta" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Ajorrona %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Crai de cuadura po %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Càmbia su Cd-Rom!\n" +"Intra su Cd-Rom etiketau \"%s\" in su ligidori e craca Ok candu as fatu.\n" +"Ki no du tenis, craca Annudda po scampai s'aposentadura de custu Cd-Rom." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Càrriga" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Sarva" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "File malu" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipu de aposentadura" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Cun X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Apariçu s'aposentadura" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Faddina in s'ordinadura de is pakitus:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Sigu comuncas?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Assètiu pusti-aposentadura" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Ajorronus" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Megu a aposentai is pakitus ki sighint" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Faddina açungendi su mèdiu." + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s in %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Skeda de Sonu" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfaci Gràfiga" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Arretza & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxy" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "assetiau" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Arrasu de Siguresa" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "abivau" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "disabivau" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "No as assetiau ancora X. Siguru ses ca bolis custu?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Intra unu floppy sbuidu in su trastu %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Cumprimentus" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Torra a allui" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Lìngua" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Permissu" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Sòrixi" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Controllu de su discu tostau" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tecrau" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Siguresa" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Pratzimentu" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Seu aposentendi" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Umperadoris" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Assètia X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Arresùmini" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Serbìtzius" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Ajorronus" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Bessi" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL de su sprigu?" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Cuntatu su jassu web de %s po tenni sa lista de is sprigus..." diff --git a/perl-install/install/share/po/sk.po b/perl-install/install/share/po/sk.po new file mode 100644 index 000000000..012d69bd8 --- /dev/null +++ b/perl-install/install/share/po/sk.po @@ -0,0 +1,1715 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jajo Pajo, 2016 +# Jajo Pajo, 2016 +# Jan Matis <damned@hq.alert.sk>, 2000 +# Michal Holes <Michal@Holes.sk>, 2004-2005 +# Milan Baša <minkob@mail.t-com.sk>, 2015 +# Pavol Cvengros <orpheus@hq.alert.sk>, 2000 +# Tibor Pittich <Tibor.Pittich@phuture.sk>, 2002-2005 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Jajo Pajo\n" +"Language-Team: Slovak (http://www.transifex.com/MageiaLinux/mageia/language/" +"sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n " +">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Pridajte sa k nám!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Zosobnite si!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Vaša voľba!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Kancelárske nástroje" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Domáca zábava" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Pre deti" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Pre rodinu" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Pre vývojárov" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Ďakujeme Vám!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Cíťte sa voľný!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Máte ešte nejaké ďalšie doplňujúce médiá?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Boli nájdené ďalšie médiá ktoré budú použité počas inštalácie: %s.\n" +"\n" +"\n" +"Máte nejaké doplňujúce médium na konfiguráciu?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Sieť (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Sieť (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Sieť (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Nastavenie NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Zadajte prosím meno hostiteľa a priečinok pre vaše NFS médium" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Chýba meno hostiteľa" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Adresár musí začínať s \"/\" " + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Meno hostiteľa pre NFS bod pripojenia ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Adresár" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Doplňujúci" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "Nie je možné nájsť súbor hdlist na tomto zrkadliacom servery" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Niektoré hardvérové súčasti na vašom počítači potrebujú nie slobodný (non " +"free) firmvér na to, aby mohli fungovať niektoré slobodné (free) ovládače. " + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Mali by ste povoliť \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" obsahuje rôzne časti systémov a ich aplikácie " + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" obsahuje nie slobodný (non free) softvér.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Obsahuje tiež firmvér potrebný rôznymi zariadeniami k ich práci (napr. ATI/" +"AMD grafické karty, niektoré sieťové karty, RAID karty, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" obsahuje softvér ktorý nemôže byť distribuovaný v každej krajine " +"kvôli softvérovým patentom." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "Tiež obsahuje prebudovaný softvér z \"%s\" s dodatočnými možnosťami." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Tu môžete povoliť ďalšie zdroje ak si prajete." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Tento zdroj poskytuje aktualizácie pre zdroj \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Hľadám balíky, ktoré sú už nainštalované..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Hľadám balíky pre aktualizáciu..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Odstránenie balíkov pred aktualizáciou..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Nasledovné balíky budú musieť byť odinštalované aby bolo možné vykonať " +"aktualizáciu vášho systému: %s\n" +"\n" +"\n" +"Chcete naozaj tieto balíky odinštalovať?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Chyba pri čítaní zo súboru %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Nasledovné disky boli premenované:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (predtým ako %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Sieť" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Vyberte si zdroj" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Súbor už existuje. Prepísať?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Prístup zamietnutý" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Nesprávne NFS meno" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Zlý zdroj %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Nemôžem spraviť kópie obrazovky pred rozdelením disku" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Kópie obrazovky budú po inštalácii dostupné v %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Inštalaácia" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfigurácia" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Taktiež musíte naformátovať %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Niektorý hardvér vo vašom počítači potrebuje ``proprietárne'' ovládače.\n" +"Informácie môžete nájsť na: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Spúšťam prácu so sieťou" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Ukončuje sa práca so sieťou" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Prosím čakajte, získava sa súbor" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "Nie je možné pridať zdroj" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" +"Prebieha kopírovanie niektorých balíčkov na disk kvôli budúcemu použitiu" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Prebieha kopírovanie" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "musíte mať" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "dôležité" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "veľmi zaujímavé" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "zaujímavé" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "možno.." + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Získavanie informácií o balíčku z XML meta-dát..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Žiadne xml informácie pre médium \"%s\", iba čiastočné informácie pre balík " +"%s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Bez popisu" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Niektoré balíky vyžadované %s nemôžu byť nainštalované:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Nastala chyba:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Nastala fatálna chyba: %s" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Nepýtať sa znovu" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d inštalačná transakcia zlyhala" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Zlyhala inštalácia balíkov:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Pracovná stanica" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kancelárska stanica" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Kancelárske programy: editory (LibreOffice Writer, Kword), tabuľkové " +"procesory (LibreOffice Calc, Kspread), pdf prehliadače, atď" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Hracia stanica" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Zábavne programy: stolové, stratégie, atď" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimediálna stanica" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programy na prehrávanie/editovanie zvuku a videa" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internetová stanica" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Nástroje na čítanie a posielanie emailov a news správ (mutt, tin..) a " +"prehliadanie www" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Sieťovy počítač (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klienti pre rôzne protokoly vrátane ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Nástroje na jednoduchú konfiguráciu vášho počítača" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konzolové nástroje" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editory, shelly, súborové nástroje, terminály" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Vývojárska" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C a C++ vývojove knižnice, programy a include súbory" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentácia" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Knihy a návody pre Linux a iný voľný softvér" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Aplikačná podpora od tretej strany" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Web server" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Brána k Internetu" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Mail/News" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix poštový systém, Inn news server" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Adresárový server" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Server doménových mien a sieťový informačný server (NIS)" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Súborový a tlačový server" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS server, Samba server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Databázy" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Databázový server PostgreSQL a MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache a Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Mail" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix mail server" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL, alebo MariaDB databázový server" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Sieťový server" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS server, SMB server, Proxy server, SSH server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafické prostredie" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Pracovná stanica Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Enviroment, grafické prostredie s množstvom pribalených programov" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME pracovná stanica" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Grafické rozhranie s aplikáciami a desktopovými nástrojmi" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "Odľahčené grafické prostredie s uživateľsky príjemnou sadou aplikácií" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE pracovná stanica" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon pracovná stanica" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Grafické prostredie založené na GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Prostredie LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Ďalšia generácia QT portu odľahčenej grafickej plochy" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Odľahčené rýchle grafické prostredie" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE grafická plocha" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Odľahčené rýchle grafické prostredie" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Iné grafické prostredia" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, atď." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Utility" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Vzdialená konfigurácia servera pomocou Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Sieťové utility/Monitoring" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Monitorovacie nástroje, účtovanie procesov, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Sprievodcovia Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Sprievodcovia pre konfiguráciu servera" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Vyskytla sa chyba a neviem ju úplne vyriešiť.\n" +"Pokračujte na vlastnú zodpovednosť." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Niektoré dôležité balíky neboli správne nainštalované.\n" +"Je možné, že sú poškodené váš CD disk alebo mechanika.\n" +"Skontrolujte to napríklad použitím \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Spúšťam krok %s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Inštalácia %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> medzi položkami" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg server štartuje pomaly. Prosím čakajte..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Váš systém má nedostatok prostriedkov. Možno budete mať problémy s\n" +"inštaláciou %s. Ak sa tak stane, skúste textovú inštaláciu. Pre jej\n" +"spustenie stlačte `F1' po naštartovaní z CDROM a zadajte `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Výber zdroja" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Inštalovať %s GNOME gafickú plochu" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Vlastná inštalácia" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma grafická plocha" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME pracovná plocha" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Vlastná pracovná plocha" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Tu je náhľad pracovnej plochy '%s' " + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Kliknite na obrázky pre zväčšenie" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Výber skupín balíkov" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Osobitná voľba balíkov" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Odznačiť všetky" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Celková veľkosť: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Verzia:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Veľkosť:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Dôležitosť:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Nemôžete označiť/odznačiť tento balík" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "kôli chýbajúcemu %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "z dôvodu neuspokojenia %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "pokus o povýšenie %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "kvôli zachovaniu %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Nemôžete označiť tento balík pretože na jeho inštaláciu nie je dosť miesta." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Budú nainštalované nasledovné balíky" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Nasledujúce balíky budú odstránené" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Toto je jeden zo základných balíkov, nemôže byť odznačený" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Nemôžete odznačiť tento balík. Je už nainštalovaný" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Nemôžete odznačiť tento balík. Musí byť aktualizovaný" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Zobraziť automaticky zvolené balíky" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Inštalovať" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Načítať/Uložiť výber " + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Aktualizácia výberu balíkov" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimálna inštalácia" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Správa softvéru" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Zvoľte balíky, ktoré si želáte nainštalovať" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Inštalujem" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Bez detailov" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Zostávajúci čas:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(odhadujem...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d balíka" +msgstr[1] "%d balíkov" +msgstr[2] "%d balíkov" +msgstr[3] "%d balíkov" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Zhrnutie" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfigurovať" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nenakonfigurované" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Nasledovné inštalačné médiá boli nájdené.\n" +"Ak nechcete niektoré z nich použiť, odznačte ich teraz." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Máte možnosť skopírovať obsah CD na pevný disk pred inštaláciou.\n" +"Potom bude inštalácia pokračovať z pevného disku a balíky budú dostupné aj " +"po kompletnej inštalácii." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopírovať kompletné CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Vyskytla sa chyba" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Prosím, zvoľte si rozloženie klávesnice" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Tu je kompletný zoznam dostupných klávesníc:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Inštalácia/Aktualizácia" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Želáte si vykonať inštaláciu alebo aktualizáciu?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Inštalácia" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Aktualizácia %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Kryptovací kľúč pre %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Zrušiť inštaláciu, reštartovať systém" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nová inštalácia" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Aktualizovať predchádzajúcu inštaláciu (nedoporučené)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Inštalátor zistil že váš nainštalovaný Linuxový systém nemôže\n" +"byť bezpečne aktualizovaný na %s.\n" +"\n" +"Doporučujeme novú inštaláciu, ktorá nahradí predchádzajúcu.\n" +"\n" +"Upozornenie: mali by ste si zazálohovať vaše osobné dáta pred tým ako\n" +" vyberiete \"Nová inštalácia\". " + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Nastavenie CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Vymente vaše CD-ROM médium!\n" +"\n" +"Prosím, vložte CD-ROM nazvané \"%s\" do vašej mechaniky a kliknite na OK.\n" +"Ak takýto CD disk nemáte, zvoľte Zrušiť pre zrušenie inštalácie z tohoto CD-" +"ROM disku." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Hľadajú sa dostupné balíky..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Vo vašom systéme nie je dostatok voľného miesta pre inštaláciu alebo " +"aktualizáciu (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Vyberte si načítanie alebo uloženie výberu balíkov.\n" +"Formát je rovnaký ako pre súbory generované ako auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Zaťaženie" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Uložiť" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Zlý súbor" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Výber pracovnej plochy" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Môžete si vybrať váš profil pracovnej plochy." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Zvolená veľkosť je väčšia ako dostupné miesto" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Typ inštalácie" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Nebola vybraná žiadna skupina balíkov\n" +"Prosím, zvoľte si typ minimálnej inštalácie, ktorú si želáte vykonať:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "S X Window System" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Inštalovať doporučené balíky" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "So základnou dokumentáciou (doporučené!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Naozaj minimálna inštalácia (bez urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Pripravuje sa aktualizácia..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Pripravuje sa inštalácia" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Inštaluje sa balík %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Chyba pri zoraďovaní zoznamu balíkov:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Napriek tomu pokračovať?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Opakovať" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Preskočiť tento balík?" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Preskočiť všetky balíky zo zdroja \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Vrátiť sa naspäť na výber zdrojov a balíkov" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Vyskytla sa chyba počas inštalácie balíka %s " + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Poinštalačná konfigurácia" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Presvedčte sa prosím, že aktualizačný zdroj je v mechanike %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Aktualizácie" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Teraz máte možnosť nastaviť online zdroje." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Toto povolí nainštalovať bezpečnostné aktualizácie." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Pre nastavenie tohoto zdroja budete potrebovať funkčné internetové \n" +"pripojenie.\n" +"\n" +"Chcete nastaviť aktualizačný zdroj?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Budú nainštalované nasledovné balíky" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Opakovať?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Chyba pri pridávaní zdroja" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Teraz máte možnosť stiahnuť si aktualizované verzie balíkov. Tieto balíky\n" +"boli vydané až po uvoľnení distribúcie. Môžu obsahovať\n" +"bezpečnostné alebo funkčné opravy.\n" +"\n" +"Pre získanie týchto balíkov je potrebné, aby ste mali fungujúce Internetové\n" +"pripojenie.\n" +"\n" +"Želáte si nainštalovať aktualizácie balíčkov?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s na %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardvér" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Zvuková karta" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafické rozhranie" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Sieť a Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxy" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "nakonfigurované" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Úroveň bezpečnosti" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktivované" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "zakázané" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Nemáte nakonfigurovaný X Window systém. Ste si istí, že to tak chcete?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Pripravuje sa spúšťací program..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Buďte trpezlivý, môže to chvíľu trvať..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"V rámci tejto bezpečnostnej úrovne je prístup k súborom na Windows oblasti " +"umožnený iba pre administrátora." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Vložte čistú disketu do mechaniky %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Pripravuje sa autoinštalačná disketa..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Niektoré kroky nie sú dokončené.\n" +"\n" +"Naozaj chcete teraz skončiť?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Gratulujeme" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Reštart" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Jazyk" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalizácia" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licencia" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Myš" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Detekcia pevného disku" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Inštalačná trieda" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Klávesnica" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Bezpečnosť" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Rozdelenie diskov" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formátovanie" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Výber balíkov" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Inštalujem" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Používatelia" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Zavádzač" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Konfigurácia X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Zhrnutie" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Služby" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Aktualizácie" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Koniec" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL zrkadliaceho servera?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL musí začínať s ftp:// alebo http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Pripájam sa k web stránke %s pre stiahnutie zoznamu zrkadiel..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Zlyhalo pripojenie ku web stránke %s pre stiahnutie zoznamu zrkadiel" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Vyberte zrkadlo, z ktorého si chcete stiahnuť balíky" diff --git a/perl-install/install/share/po/sl.po b/perl-install/install/share/po/sl.po new file mode 100644 index 000000000..21b504d5e --- /dev/null +++ b/perl-install/install/share/po/sl.po @@ -0,0 +1,1701 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Aljoša Ločičnik <aljosa.locicnik@mandrakeprinas.org>, 2005 +# Filip Komar <filip.komar@guest.arnes.si>, 2011-2013,2015-2017 +# Filip Komar <filip.komar@guest.arnes.si>, 2018,2020,2023 +# Gregor Pirnaver <gregor.pirnaver@sdm-si.org>, 2002,2004-2005 +# Jure Repinc <jlp@holodeck1.com>, 2005,2007-2009 +# Matjaž Kaše <matjaz.kase@g-kabel.si>, 2004 +# Matjaž Kaše <matjaz.kase@telemach.net>, 2006 +# Rok Kepa <rokkepa@gmail.com>, 2014 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Filip Komar <filip.komar@guest.arnes.si>, 2018,2020,2023\n" +"Language-Team: Slovenian (http://app.transifex.com/MageiaLinux/mageia/" +"language/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Pridružite se nam!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Osvojite jo!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Vaša izbira!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Pisarniška orodja" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Domača zabava" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Za otroke" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Za družino!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Za razvijalce!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Hvala!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Bodite svobodni!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Ali imate še kak dodaten namestitveni vir?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Zaznani so bili naslednji viri, ki bodo uporabljeni med namestitvijo: %s.\n" +"\n" +"\n" +"Ali imate še kak dodaten namestitveni vir, ki ga je potrebno nastaviti?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Omrežje (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Omrežje (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Omrežje (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Namestitev prek NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Vnesite ime gostitelja in ime mape vašega vira NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Manjka ime gostitelja" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Mapa se mora pričeti z »/«" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Ime gostitelja vira NFS" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Mapa" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Dodatno" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Na tem zrcalnem strežniku ne najdem seznama paketov. Prepričajte se, da je " +"lokacija prava." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Glavni (core) - izdajni" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Patentno zaščiteni (tainted) - izdajni" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Lastniški (nonfree) - izdajni" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Nekateri deli vaše strojne opreme za pravilno delovanje odprtokodnih " +"gonilnikov potrebujejo lastniško strojno programsko opremo." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Priporočljivo je omogočiti vir »%s«" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" +"Vir »%s« vsebuje različne sistemske dele in pripadajočo programsko opremo" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "Vir »%s« vsebuje lastniško programsko opremo.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Vsebuje tudi strojno programsko opremo, ki je potrebna za delovanje " +"nekaterih naprav (npr.: nekatere grafične kartice ATI/AMD, določene mrežne " +"kartice, nekatere kartice RAID) …" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"Vir »%s« vsebuje programsko opremo, ki je zaradi patentne zaščite v " +"nekaterih državah ni možno prosto razširjati." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "Vsebuje tudi pakete iz vira »%s«, a z dodatnimi zmožnostmi." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Tu lahko po želji omogočite več virov." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Ta vir ponuja posodobitve paketov za vir »%s«" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Pregledovanje že nameščenih paketov …" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Iskanje paketov za posodobitev …" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Odstranjevanje paketov pred posodobitvijo …" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Da bi bilo mogoče posodobiti sistem, je treba odstraniti naslednje pakete: " +"%s\n" +"\n" +"\n" +"Ali naj odstranim navedene pakete?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Napaka pri branju datoteke %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Preimenovani so bili naslednji diski:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (prejšnje ime: %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Omrežje" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Izberite vir" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Datoteka že obstaja. Ali naj jo nadomestim?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Nimate dovoljenja" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Napačno ime NFS" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Neustrezen vir %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Posnetkov zaslona ni mogoče zajeti, dokler disk ni razdeljen" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Po namestitvi bodo posnetki zaslona v %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Namestitev" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Nastavitev" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Formatirati morate tudi %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Nekateri deli strojne opreme za pravilno delovanje potrebujejo zaprto-kodne " +"»lastniške« gonilnike.\n" +"Nekaj podatkov o tem dobite na: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Priklapljanje omrežja" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Izklapljanje omrežja" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Počakajte. Pridobivanje datoteke ..." + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "dodajanje vira ni bilo možno" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopiranje nekaterih paketov na disk, za kasnejšo uporabo" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiranje poteka" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "nepogrešljivo" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "pomembno" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "zelo uporabno" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "uporabno" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "morda" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Pridobivanje informacij o paketu iz metapodatkov XML …" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "Za vir »%s« ni metapodatkov, zato rezultati za paket %s niso popolni" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Brez opisa" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Nekaj paketov, ki jih zahteva %s ni mogoče namestiti:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Prišlo je do napake:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Zgodila se je usodna napaka: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Ne sprašuj več" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "Spodletelo je %d namestitvenih transakcij" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Nameščanje paketov ni uspelo:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Delovna postaja" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Pisarniška delovna postaja" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Pisarniški programi: urejavalniki besedil (LibreOffice Writer, KWord), " +"preglednice (LibreOffice Calc, KSpread), pregledovalniki PDF, itd" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Igralna postaja" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programi za zabavo: arkade, deske, strategije, itd" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Večpredstavnostna postaja" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programi za predvajanje in urejanje zvoka in videa" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internetna postaja" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Zbirka orodij za branje in pošiljanje pošte in pošiljanje v novičarske " +"skupine (mutt, tin ...) ter brskanje po spletu" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Omrežni računalnik (odjemalec)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Odjemalci za različne protokole, vključujoč SSH" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Orodja za lažjo nastavitev računalnika" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konzolna orodja" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Urejevalniki, lupine, datotečna orodja, terminali" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Razvoj" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Razvojne knjižnice, programi in datoteke z glavami za C in C++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentacija" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Knjige in priročniki o Linuxu in prostem programju" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Standardna osnova Linuxa (LSB). Podpora programom tretjih oseb" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Spletni strežnik" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Skupinsko delo" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Strežnik Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Požarni zid/usmerjevalnik" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internetni prehod (gateway)" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Pošta/novičarske skupine" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Poštni strežnik postfix in novičarski strežnik Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Imeniški strežnik" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Strežnik FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Strežnik imen domen in omrežnih podatkov" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Strežnik za skupno rabo datotek in tiskalnikov" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Strežnik NFS, strežnik Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Podatkovna zbirka" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Strežnik podatkovnih baz PostgreSQL in MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Splet/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Pošta" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Poštni strežnik Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Strežnik podatkovnih baz PostgreSQL ali MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Omrežni računalnik (strežnik)" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Strežnik NFS, strežnik SMB, posredniški strežnik, strežnik SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafično okolje" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Delovna postaja Plazma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Namizno okolje KDE, moderno grafično okolje z zbirko pripadajočih orodij" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Delovna postaja GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Grafično okolje z naborom uporabniku prijaznih programov in namiznimi orodji" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Delovna postaja Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Majhno grafično okolje z naborom uporabniku prijaznih programov in namiznimi " +"orodji" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Delovna postaja MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Delovna postaja Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Grafično okolje osnovano na GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Namizje LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Nova generacija majhnega in hitrega namiznega okolja prenesenega na QT" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Namizje Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Majhno in hitro grafično okolje s predanimi privrženci" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Namizje LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Majhno in hitro grafično okolje" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Druga grafična namizja" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, FVWM ..." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Pripomočki" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Strežnik SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Strežnik Webmin za oddaljeno nastavljanje" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Omrežni pripomočki/nadzorovanje" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Nadzorna orodja, knjigovodstvo procesov, tcpdump, nmap …" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Magejini čarovniki" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Čarovniki za nastavitev strežnikov" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Prišlo je do napake, ki je sistem ne zna odpraviti na ustrezen način.\n" +"Nadaljujte na lastno odgovornost." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Nekateri pomembni paketi niso bili ustrezno nameščeni.\n" +"Verjetno imate poškodovan namestitveni nosilec ali pa pogon\n" +"za branje. Na računalniku, na katerem je nameščen Linux,\n" +"preverite nosilec z ukazom »rpm -qpl media/main/*.rpm«.\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Pričetek koraka »%s«\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Namestitev %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> med elementi" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Grafični strežnik se zaganja počasi. Počakajte …" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Vaš sistem ni zelo zmogljiv. Lahko, da boste imeli pri namestitvi\n" +"%s težave. V tem primeru lahko poskusite z namestitvijo\n" +"v besedilnem načinu.\n" +"Po zagonu z namestitvenega nosilca pritisnite »F1« in vnesite »text«." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Izbira virov" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Namestitev %s namizja Plazma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Namestitev %s namizja GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Po meri" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Namizje Plazma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Namizje GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Namizje po meri" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "To je ogled namizja »%s«." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Kliknite na sliko, da vidite večji predogled" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Izbira skupin paketov" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Izbira posamičnih paketov" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Odstrani izbiro" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Skupna velikost: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Različica: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Velikost: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Pomembnost: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Tega paketa ne morete izbrati ali izločiti." + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "ker manjka %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "zaradi ne-zadostitve %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "poizkušam uveljaviti %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "da bi obdržal %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Tega paketa ne morete izbrati, ker ni dovolj prostora, da bi ga lahko " +"namestili." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Nameščeni bodo naslednji paketi" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Odstranjeni bodo naslednji paketi" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "To je obvezen paket in ga ni mogoče izločiti." + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Tega paketa ne morete izločiti, ker je že nameščen." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Tega paketa ne morete izločiti, ker ga je treba posodobiti." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Prikaži samodejno izbrane pakete" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Namesti" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Naloži/shrani izbor" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Posodabljanje izbora paketov" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Preklop med hierarhičnim in ploskim pogledom seznama." + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimalna namestitev" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Upravljanje s programi" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Izberite pakete, ki jih želite namestiti" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Nameščanje" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Brez podrobnosti" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Preostali čas:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(izračunavanje …)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paket" +msgstr[1] "%d paketa" +msgstr[2] "%d paketi" +msgstr[3] "%d paketov" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Povzetek" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Nastavitev" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "ni nastavljeno" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Na voljo so naslednji viri za namestitev.\n" +"Če želite, lahko katerega izmed njih sedaj izločite." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Pred namestitvijo lahko vsebino namestitvenih nosilcev prekopirate na trdi " +"disk.\n" +"V tem primeru bo namestitev potekala s trdega diska, paketi pa bodo ostali " +"na voljo tudi po zaključeni namestitvi." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Prekopiraj vsebino nosilcev" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Prišlo je do napake" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Izberite razpored tipkovnice" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Tu je celoten seznam razpoložljivih tipkovnic:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Namestitev/nadgradnja" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Ali želite izvesti namestitev ali nadgradnjo?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Namestitev" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Nadgradnja %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Šifrirni ključ za %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Prekliči namestitev, znova zaženi računalnik" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Nova namestitev" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Nadgradite obstoječo namestitev (ni priporočeno)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Namestitveni program je zaznal, da obstoječe namestitve\n" +"Linuxa ni mogoče varno nadgraditi na različico %s.\n" +"\n" +"Priporočena je nova namestitev, ki nadomesti obstoječo.\n" +"\n" +"Opozorilo: Pred nadaljevanjem z novo namestitvijo napravite\n" +"varnostno kopijo vseh osebnih podatkov." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Nastavljanje enote CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Zamenjajte nosilec!\n" +"\n" +"V pogon vstavite namestitveni nosilec z oznako »%s« in kliknite V redu.\n" +"Če zahtevanega nosilca nimate, kliknite Prekliči, da ga bo namestitev " +"preskočila." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Iskanje razpoložljivih paketov …" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Sistem nima dovolj prostora za namestitev ali nadgradnjo (%d MB > %d MB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Izberite nalaganje ali shranjevanje izbora paketov.\n" +"Format je enak formatu datotek za samodejno namestitev (auto_install)." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Naloži" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Shrani" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Neustrezna datoteka" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plazma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Izbira namizja" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Tu lahko izberete namizno okolje, ki bo nameščeno." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Velikost izbora presega velikost razpoložljivega prostora." + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Vrsta namestitve" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Izbrali niste nobene skupine paketov.\n" +"Izbrati morate vsaj minimalno namestitev:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Z grafičnim okoljem" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Namesti priporočene pakete" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Z osnovno dokumentacijo (priporočeno)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Zares najmanjša možna namestitev (še posebej brez urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Pripravljanje nadgradnje …" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Pripravljanje namestitve" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Nameščanje paketa %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Med razvrščanjem paketov je prišlo do napake:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Ali naj kljub temu nadaljujem?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Poskusi znova" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Spusti ta paket" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Spusti vse pakete z nosilca »%s«" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Nazaj na izbiro nosilcev in paketov" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Prišlo je do napake med nameščanjem paketa %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Nastavitev po namestitvi" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Prepričajte se, da je nosilec »Posodobitev modulov« v pogonu %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Posodobitve" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Sedaj je priložnost za nastavitev spletnih virov." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "S tem bo možno namestiti varnostne posodobitve." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Za nastavitev spletnih virov je potrebna delujoča spletna povezava.\n" +"\n" +"Ali želite nastaviti spletne posodobitvene vire?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Tega programa za prenos ni bilo možno namestiti" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Poskusi znova?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Napaka pri dodajanju vira" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Zdaj imate možnost, da s strežnika prenesete posodobljene pakete.\n" +"Ti paketi so bili posodobljeni po izdaji distribucije. Zelo verjetno " +"vsebujejo varnostne popravke in popravke napak.\n" +"\n" +"Za namestitev teh paketov morate imeti vzpostavljeno internetno povezavo.\n" +"\n" +"Ali želite namestiti posodobitve?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s na %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Strojna oprema" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Zvočna kartica" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafična kartica" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Omrežje in internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Posredniški strežniki" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "nastavljeno" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Stopnja varnosti" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Požarni zid" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktivirano" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "onemogočeno" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Grafičnega strežnika niste nastavili. Ali to zares želite?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Pripravljanje začetnega zagonskega programa …" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Potrpite. To lahko traja dalj časa …" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Na tej varnostni stopnji je dostop do datotek na razdelku za Windows " +"dovoljen samo skrbniku sistema (root)." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "V pogon %s vstavite prazno disketo" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Ustvarjanje diskete za samodejno namestitev …" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Nekateri koraki še niso zaključeni.\n" +"\n" +"Ali res želite končati?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Čestitke" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Ponovni zagon" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Jezik" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Področne nastavitve" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licenca" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Miška" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Zaznava trdih diskov" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Razred namestitve" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tipkovnica" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Varnost" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Razdelitev diska" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatiranje" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Izbiranje paketov" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Nameščanje" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Uporabniki" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Zagonski nalagalnik" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Grafično okolje" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Povzetek" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Storitve" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Posodobitve" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Izhod" diff --git a/perl-install/install/share/po/sq.po b/perl-install/install/share/po/sq.po new file mode 100644 index 000000000..349c22b1c --- /dev/null +++ b/perl-install/install/share/po/sq.po @@ -0,0 +1,1727 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Ardit Dani <ardit.dani@gmail.com>, 2014-2017,2019,2021 +# Naim Daka <naim70@freesurf.ch>, 2002-2003 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2021-01-31 03:49+0000\n" +"Last-Translator: Ardit Dani <ardit.dani@gmail.com>\n" +"Language-Team: Albanian (http://www.transifex.com/MageiaLinux/mageia/" +"language/sq/)\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Bashkohu me ne!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Bëni atë tuajat!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Zgjedhja juaj!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Vegla zyre" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Argëtim shtëpie " + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Për fëmijët" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Për familjen!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Për zhvilluesit!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Faleminderit!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Ekzisto Lirshëm!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "A keni media të mëtejshme shtesë?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Mediat e mëposhtme janë gjetur dhe do të përdoret gjatë instalimit: %s\n" +"\n" +"\n" +"A keni një media shtesë instalimi për konfigurimin?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rrjeti (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rrjeti (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rrjeti (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Ndërtimi NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Ju lutemi shkruani pritësin dhe skedarin tuaj të medias NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Pritësi mungon" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Skedari duhet të fillojë me \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Pritësi i montuesit NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Repertori" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Plotësues" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Nuk mund të gjeni një dokument listë pakete në këtë pasqyrë. Sigurohuni " +"vendi është e saktë." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Lëshim Bërthamë" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Lëshim Prishur" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Lëshim Jofalas" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Disa pajisje-elektronikenë kompjuterin tuaj ka nevojë për disa udhzues jo të " +"lirë në mënyrë që drejtuesit e programevetë lirë të punojnë." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Ju duhet të mundësoni \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" përmban pjesë të ndryshme të sistemet dhe aplikimet e saj" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" përmban programe jo falas.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Ai gjithashtu përmban një program nevojshme për pajisje të caktuara për të " +"vepruar (p.sh: disa karta grafike ATI/AMD, disa kartat e rrjetit, disa karta " +"RAID, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" përmban programe që nuk mund të shpërndahet në çdo vend për shkak të " +"patentave të programit." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "Ai gjithashtu përmban program nga \"%s\" rindërtuar me aftësi shtesë." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Këtu ju mund të mundësoni më shumë media në qoftë se ju dëshironi." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Ky medium ofron përditësime paketë për të mesëm \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Kërkimi i pakove veqse të instaluara..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Gjetja pakove azhurnuese..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Heqja paketave para përmirësimit..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Pakot a radhitura do të zhduken pët të azhurnuar sistemin tuaj: %s\n" +"\n" +"\n" +"Me të vërtetë dëshironi ti zhdukni?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Gabim gjatë leximit të skedares %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Di(s)qet mëposhtme janë riemëruar:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (të emëruar më parë si %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rrjeti" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Ju lutemi zgjidhni një media" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Skedari ekziston. Mbishkruaj atë?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Autorizim i pa pranuar" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Emër keq NFS" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Media keqe %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "E pa mundur grabitja e ekranit (screenshots) para ndarjeve" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" +"Grabitjet e ekranit (screenshots) janë të mundura mbas instalimit në %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalimi" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfigurimi" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Ju duhet njashtu ta formatoni %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Disa periferik prezent në sistemin tuaj u nevojiten pilotë ``pronari'' për\n" +"të funksionuar si duhet. Ju mund të gjeni më shumë informacione përkatëse " +"këtu: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Nisja e rrjetit (network)" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Ndalja e rrjetit (network)" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Ju lutem prisni, rikthim i skedarit" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "e pamundur shtimi instaluesin" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopjimi disa paketa në disqe për përdorim në të ardhmen" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopjimi në progres" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "duhet pa tjetër" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "me rëndësi" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "shumë mirë" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "i mirë" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "ndoshta" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Marrja informacionit paketës nga XML meta-data..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Nuk ka informacion xml për medien \"%s\", vetëm rezultati i pjesshëm për " +"paketën %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Asnjë përshkrim" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Disa paketa të kërkuara nga %s nuk mund të instalohen:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Një gabim ndodhi:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Një gabim fatal është paraqitur: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Mos pyesni përsëri" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "Instalimi i transmetimit të %d dështio" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Instalimi i paketave dështoj:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Stacion punues" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Stacioni Punues në Tryezë" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programe për tryezë: trajtues të teksteve (LibreOffice Writer, Kword), " +"tablues (LibreOffice Calc, Kspread), çfaqës pdf, etj." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Stacion Lojërash" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programe ahengi: lojë arkade, lojë me stenda, strategji, etj" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Stacion Multimedia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programe për lojëra/botime të zërit dhe videos" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Stacion Interneti" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Set mjetesh për të lexuar dhe për të dërguar postë dhe lajme (mutt, tin ..) " +"dhe të shfletoni Internetin" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Kompjuter Rrjeti (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klient për protokole të ndryshme me përfshirje në ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Vegla për të konfiguruar kompjuterin tuaj" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Vegla në konsolë" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Botues, interpretues, vegla skedaresh, terminale" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Zhvillimi" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Bibloteka ndërtuese e C dhe C++, programe dhe skedare me përfshirje" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentacioni" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Libra dhe Howto's për Linux dhe Softver gratis" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Bazë Standarde e Linux. Përkrahë aplikacione të pjesës së tretë" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Server Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Grupimi" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Server Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Murë-i-Zjarrtë/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Portë kaluese Interneti" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Postë/Lajme" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix server poste, Inn server lajme" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Server Skedarësh" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Server FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Server i Emrit (DNS) dhe Server i Informacionit (NIS)" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Server Shpërndarës Skedarësh dhe Printeri" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS Server, Samba server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Bazë e të dhënave" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL dhe MariaDB Database Server" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Mail" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Server i letrave (mail) Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Server PostgreSQL apo MariaDB i bazës së të dhënave" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Server Kompjuter Rrjeti" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Server NFS, server SMB, server Proxy, server ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Mjedis Grafikë" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Stacionpune Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Mjedisi i Tryezës K, dhe grafiku basic, i mjedisit me koleksionimin e veglave" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Stacioni punues Gnome" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Një mjedis grafikë me përdorues-miqësie, një përgjithësi e palikacioneve dhe " +"vegla në tryezë" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Stacioni-Punë Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Një mjedis më i lehtë grafik me një sërë aplikacionesh dhe vegla mjedisi" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Stacionpune MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Stacionpune Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Një mjedis grafik i bazuar në GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt Desktop" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Një port tjetër QT i brezit të mjedisit të lehtë mjedisi" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Mjedisi Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Një mjedis grafik i lehtë, me një ndjekje të dedikuar" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE Desktop" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Një mjedis grafik i lehtë dhe i shpejtë" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Mjedise të Tjera Grafike në Tryezë" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Krijues Windows, Fvwm, etj" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Shërbime" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Server SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin Konfigurim Serveri Distancë" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Rrjeti Vegla/Monitorim" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Vegla monitorimi, llogaritje procesesh, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Udhëzuesi Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Udhëzuesi për konfigurim serverin" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Një gabim është paraqitur, dhe me sa duket është vështir të zgjidhet.\n" +"Ju mund të vazhdoni, mirëpo ju jeni përgjegjës për ndonji gabim eventual." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Disa paketa me rëndësi nuk janë instalur në mënyrë korrekte.\n" +"Është e mundur që cdrom-i apo lexuesi cdrom të jetë në defekt.\n" +"Verifikoni cdrom-in në një kompjuter të instalur, duke shtypur urdhërin " +"\"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Nisja e etapës `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Instalimi i %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab> para /<Alt-Tab> mbrapa" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg server është i ngadalshëm për të filluar. Ju lutem prisni..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Kompjuteri juaj posedon sasi të vogël të memorjes. Ju mund të ndesheni me\n" +"disa probleme gjatë instalimit të %s. Nëse kjo ndodhë, ju\n" +"mund të vazhdoni në një instalim në modë teksti. Për këtë shtypni `F1' kut " +"të ndizet në CDROM, dhe shtypni `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Përzgjedhja Mediave" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Instalo %s Mjedisi Plasma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Instalo %s Mjedisi GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Instalim personalizuar" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Mjedisi Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Mjedisi GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Mjedis Personalizuar" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Këtu është një vrojtim i '%s' mjedisit." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Kliko në imazhe për të parë një vrojtim më të madh" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Përzgjedh Grupet Paketave" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Zgjedh pakot individualisht" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Gjitha të Çzgjedhurat" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Madhësia totale: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versioni: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Madhësia: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Me rëndësi: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Ju nuk mund ti zgjedhni/çzgjedhni këtë pako" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "ka arritur nga mungesa %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "ka arritur gjatë mosmarrëveshjes %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "tentim në gradimin e %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "në urdhër për ta mbajturë %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Nu nuk mund ta zgjidhni këtë pako, sepse nuk ka vend të mjaftueshëm për ta " +"instaluar" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Pakot e radhitura do të instalohen" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Pakot e radhitura do të zhduken" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Kjo është një pako e nevojshme, dhe nuk mund çzgjedhet" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Ju nuk mund ta çzgjedhni këtë pako. Është e instaluar më parë" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Ju nuk mund ti çzgjedhni këtë pako. Duhet të azhurnohet" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Paraqiti automatikisht pakot e zgjedhura" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instalim" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Ngarko/Ruaj përzgjedhje" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Azhurnimi i pakove të zgjedhura" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Kaloni midis listës hierarkike dhe të paketës së sheshtë" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Instalim minimal" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Administrues Programesh" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Zgjedhi pakot të cilat dëshironi t'instaloni" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instalimi" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Asnjë detaj" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Koha e mbetur:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(vlerësim...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paketë" +msgstr[1] "%d paketat" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Përmbledhje" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfiguroje" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "i pa konfiguruar" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Mënyrat e mëposhtme të instalimit janë gjetur.\n" +"Nëse doni të kaloni disa prej tyre, ju mund t'i hiqni ato tani." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Ju keni mundësi të kopjoni përmbajtjen e CD-ve në disk para instalimit.\n" +"Pastaj do të vazhdojë nga disku dhe paketat do të mbeten në dispozicion sapo " +"sistemi të jetë i instaluar plotësisht." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopjo tërë CDtë" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Një gabim është paraqitur" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Ju lutemi zgjedheni tipin tastierës suaj" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Këtu është lista e plotë e tastierave në dispozicion:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalo/Azhurno" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Është ky një instalim apo një azhurnim?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instalimi" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Azhurno %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Çelës i kriptuar për %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Anulo instalimin, rifillo sistemin" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Instalim i Ri" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Përmirëso instalimin e mëparshme (nuk rekomandohet)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Instaluesi ka zbuluar se sistemi juaj i instaluar Linux nuk ka mundur\n" +"të përmirësohet në mënyrë të sigurtë %s.\n" +"\n" +"Rekomandohet instalimi i ri që zëvendëson të mëparshmin.\n" +"\n" +"Kujdes: duhet të ruani të gjitha të dhënat tuaja personale përpara se të " +"zgjidhni \"Instalim\n" +"Ri\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Konfigurimi CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Ndërrojeni Cd-Rom tuaj!\n" +"\n" +"Ju lutemi futni Cd-Rom e emruar \"%s\" në lexuesin tuaj dhe shtypni mbi Ok.\n" +"Nëse ju nuk e posedoni, shtypni mbi kopsën Anulo që më në fund të mos " +"instaloni asgjë nga ky Cd-Rom." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Hetim mbi pakot e lira..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Sistemi juaj nuk ka hapësirë të mjaftueshme në dispozicion për instalim ose " +"azhurnim, (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Ju lutemi zgjidhni ngarko ose ruaj përzgjedhjen e paketës.\n" +"Formati është i njëjtë me skedarët e gjeneruar të auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Ngarko" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Shpëtoje" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Skedarë keq" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Përzgjedhje Desktop" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Ju mund të zgjidhni mjedisin e profilin tuaj të kompjuterit." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Madhësia e zgjedhur është shumë më e gjatë se sa hapësira e lirë" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tipi i instalimit" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Ju nuk e keni zgjedhur asnjë grup të pakove.\n" +"Ju lutemi zgjedheni një instalim minimal të dëshiruar:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Me X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Instalimi paketave rekomanduara" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Me dokumentacion bazues (rekomanduar!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Instalim tejet minimal (në veçanti pa urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Përgatitje përmirësim..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Pregatitje për instalim" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instalimi i pakove %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Një gabim është paraqitur gjatë radhitjes së pakove:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Vazhdo pa marrë parasysh?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Riprovo" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Kalo këtë paketë" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Hiq të gjitha paketat nga mjedisi \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Kthehuni tek zgjedhja e instaluesit dhe paketave" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Kishte një gabim instalimi i paketës %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Konfigurimi i postit-instalues" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Ju lutemi sigurohuni që moduli Përditësimi Moduleve të jetë në disk %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Përditësime" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Ju tani keni mundësinë të krijoni media në internet." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Kjo lejon të instaloni përditësime sigurie." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Për të krijuar ato media, do të duhet të keni një lidhje internet i \n" +"funksional.\n" +"\n" +"Dëshiron të konfigurosh median e përditësimit?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Pakot e radhitura do të instalohen" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Riprovo?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Dështimi kur shton instaluesin" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Tani keni mundësin që të shkarkoni përditësime e krijuara nga\n" +"dalja e tyre në përdorim. Është e mundur që të ketë korrigjime\n" +"të sigurisë dhe rregullime të problemeve bug.\n" +"\n" +"Për ti transferuar pakot e shënuara, ju duhet të posedoni një lidhje \n" +"me rrjetin internet.\n" +"\n" +"A dëshironi të instaloni këto përditësime?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s mbi %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Pjesë-Elektronike" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Kartelë zëri" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Interfaci grafik" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rrjeti & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxies" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "konfiguruar" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nivel i Sigurisë" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Mur i Zjarrt" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktivizuar" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "i nxënë" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"Ju nuk e keni konfiguruar serverin X. A jeni i sigurt, se e dëshironi këtë?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Përgatitja programit fillestar për fillimin..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Kini durim, kjo mund të marrë pak kohë..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Në këtë nivel të sigurisë, qasja në skedarë në ndarjen e Windows është i " +"kufizuar nga administratori." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Futni një disketë të zbrazët në lexuesin e disketave %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Krijimi i një diskete auto instaluese..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Disa etapa nuk kanë përfunduar.\n" +"\n" +"A dëshironi me të vërtetë ti braktisni tani?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Urime" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Rinise (riboot)" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Zgjedheni gjuhën tuaj" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Vendndodhja" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licenca" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mini" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Zbulim i Diskut të Fortë (Hard disk drive)" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" +"_: Mbani këto hyrje të shkurtra\n" +"klasë Instalimi" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastiera" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Siguria" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Shpërndarja" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" +"_: Mbani këto hyrje të shkurtra\n" +"Shpërndarja" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" +"_: Mbani këto hyrje të shkurtra\n" +"Zgjedhja paketave" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instalimi" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Përdoruesit" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Konfigurim i X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Përmbledhje" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Serviset" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" +"_: Mbani këto hyrje të shkurtra\n" +"Përditësime" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Braktise" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL e pasqyrës?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL duhet të filloj me http:// ose https://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Lidhje në sitin %s për të pranuar listën e lirë të pasqyreve..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Dështoi kontaktuari %s faqen për të marrë listën e pasqyrave në " +#~ "dispozicion" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Zgjedheni një pasqyre nga e cila do ti transferoni pakot" diff --git a/perl-install/install/share/po/sr.po b/perl-install/install/share/po/sr.po new file mode 100644 index 000000000..9758561d1 --- /dev/null +++ b/perl-install/install/share/po/sr.po @@ -0,0 +1,1714 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# tomaja <toma.jankovic@gmail.com>, 2019-2020 +# Tomislav Jankovic <tomaja@net.yu>, 2000 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2020-06-23 09:20+0000\n" +"Last-Translator: tomaja <toma.jankovic@gmail.com>\n" +"Language-Team: Serbian (http://www.transifex.com/MageiaLinux/mageia/language/" +"sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Придружи нам се!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Напавите је својом!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Ваш избор!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Канцеларијски алати" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Кућна забава" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "За децу" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "За породицу!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "За програмере!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Хвала вам!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Буди слободан!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Да ли имате још додатних медија?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Следећи медији су пронађени и биће корићени током инсталације: %s.\n" +"\n" +"\n" +"Да ли имате додатних инсталационих медија које треба подесити?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Мрежа (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Мрежа (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Мрежа (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Подешавање NFS-а" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Унесите име домаћина-hostname и директоријум вашег NFS медија" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Недостаје име домаћина-hostname" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Директоријум мора почети са \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Име домаћина-hostname за монтирање NFS ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Директоријум" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Додатни" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Не могу пронађем листу пакета на овом мирору. проверите да ли локација " +"исправна." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Основно Издање" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Непроверено Издање" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "НеСлободно Издање" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Нешто од хардвера на вашој машини захтева неке од власничких firmware-ва да " +"би драјвери отвореног кода радили." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Треба да уљкучите \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" садржи различите делове система и његових апликација" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" задржи власнички софтвер.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Такође садржи firmware-ове потребне за одређене уређаје да би радили (нпр: " +"неке ATI/AMD графичке картице, неке мрежне картице, неке RAID картице, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" садржи софтвер који не може да се дистрибуира у сваку земљу услед " +"софтверских патената." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Такође садржи софтвер са \"%s\" поново креиран са додатним могућностима." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Овде можете пронаћи додатне медије уколико желите." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Овај медиј омогућава надоградњу пакета за медиј \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Тражим већ инсталиране пакете..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Тражим пакете за ажурирање..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Уклањам старе пакете..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Следећи пакети ће бити уклоњени да би систем могао да се ажурира: %s\n" +"\n" +"\n" +"Да ли заиста желите да уклоните ове пакете?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Грешка код отварања датотека %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Следећи диск(ови) ће бити преименовани:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (раније са именом %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Мрежа" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Изаберите медиј" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Датотека већ постоји. Да ли препишем преко постојеће?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Приступ одбијен" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Погрешно NFS име" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Лош медиј %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Не могу да направим снимак пре партиционирања" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Снимци ће бити доступни након инсталације у %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Инсталација" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Конфигурација" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Морате и %s да форматирате" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Неке хардверске компоненте у вашем рачунару захтевају одговарајуће драјвере " +"да би нормално функционисале.\n" +"Информације о њима можете пронаћи на: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Приступам мрежу" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Одступам од мреже" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Сачекајте, добављам пакет" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "не могу да додам медиј" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Копирање неких поакета на дискове ради касније употребе" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Копирање у току" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "морате имати" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "важно" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "веома лепо" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "лепо" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "можда" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Добављање информација о пакету из XML мета података..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "Нема xml инфоа за медиј \"%s\", само делимични резултати за пакет %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Без описа" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Неки пакети потребни за %s не могу бити инсталирани:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Појавила се грешка:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Појавила се фатална грешка: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Не питај ме поново" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d инсталациона трансакција није успела" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Инсталација пакета није успела:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Радна станица" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Радна(Office) станица" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Office програми: текст процесори (LibreOffice Writer, Kword), табеле " +"(LibreOffice Calc, Kspread), pdf прегледници, итд" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Станица за игру" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Забавни програми: аркаде, иге на табли, стратегије, итд" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Мултимедијална станица" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Програми за пуштање звука и видеа" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Интернет станица" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Скуп алата за читање и слање ел.поште и вести (mutt, tin..) и за " +"претраживање Интернета" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Мрежни компјутер (клијент)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Клијенти за различите протоколе укључујући и ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Алати за лако конфигурисање компјутера" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Конзолни алати" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "едитори,шелови, алати за датотеке, терминали" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Развојна" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C и C++ развојне библиотеке, програми и пропратне датотеке" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Документација" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Књиге и Како? (Howto's) за Linux и Бесплатни Софтвер" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Линуксова Стандардна База. Подршка за Third party апликаицје" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Веб Сервер" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Софтвер за групни рад" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Сервер" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Сервер, Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Интернет gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Ел.пошта/вести" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix сервер за ел.пошту,Inn сервер за вести " + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Сервер директоријума" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP Сервер" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Име Домена и Мрежни Информациони Сервер" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Фајл Сервер и сервер за дељење штампача" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS Сервер, Samba Сервер" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Сервер,Базе података" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL или MariaDB сервер за базу података" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Сервер, Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Пошта" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix mail сервер" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL или MariaDB сервер за базу података" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Мрежни Сервер" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS сервер, SMB сервер, Proxy сервер, SSH сервер" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Графичко Окружење" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Плазма Радна станица" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Десктоп окружење, основно графичко окружење са колекцијом пратећих алата" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gnome радна станица" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Графичка окружења за сетом корисничк NFS server, SMB server, Proxy server, " +"NFS server, SMB server, Proxy серверих апликација и десктопалата" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce Радна Станица" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Лакше графичко окружење са групом апликација и десктоп алата прилагођених " +"кориснику" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE Радна станица" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon Радна Станица" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Графичко окружење базирано на GNOME-у" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt Десктоп" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Следећа генерација QT порта лаганог графичког окружења" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment Десктоп" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Лагано брзо графичко окружење са посвећеним праћењем" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE Десктоп" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Лагано брзо графичко окружење" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Други графички десктопови" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, итд." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Алати" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH Сервер" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin сервер за даљинску контролу" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Мрежни алати/Мониторинг" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Алати за мониторинг, управљање процесима, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia Чаробњаци" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Чаробњаци за подешавање сервера" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Грешка, али незнам како да је разрешим.\n" +"Наставите на ваш ризик!" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Неки важни пакети нису добро инсталирани.\n" +"Ваш cdrom уређај или cd су неисправни.\n" +"Проверите cdrom на инсталираном компјутеру користеће \"rpm -qpl media/main/*." +"rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Покрећем корак `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Инсталација %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> између елемената" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg сервер је спор при покретању. Сачекајте..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Ваш систем има мањак снаге. Услед тога можете имати проблема при " +"инсталацији\n" +"%s. Уколико се они појаве, можете пробати текстуалну инсталацију. Да би то " +"постигли,\n" +"притисните `F1' при стартању са CDROM-а, а онда укуцајте `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Избор Медија" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Инсталирај %s Плазма Десктоп" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Инсталирај %s GNOME Десктоп" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Произвољна инсталација" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Плазма десктоп" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME Десктоп" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Произвољни десктоп" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Овде је изглед '%s' десктопа." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Кликни на слику да би видео већи преглед" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Одабир група пакета" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Појединачно бирање пакета" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Деселектуј Све" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Укупна величина: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Верзија: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Величина: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Важност: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Не можете селектовати/деселектовати овај пакет" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "због не постојања %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "због не задовољеног %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "покушавам да прикажем %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "да бих задржао %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Не можете селектовати овај пакет јер нема више слободног простора" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Следећи пакети треба да буду инсталирани" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Следећи пакети ће бити избрисани" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ово је обавезни пакет,и не може бити деселектован" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Можете деселектовати овај пакет јер је већ инсталиран" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Не можете деселектовати овај пакет.Он мора бити ажуриран" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Аутоматски прикажи изабране пакете" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Инсталирај" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Учитај/Сачувај избор" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Ажурирање селекције пакета" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Прeбацивање између хијерархијске и равне листе пакета" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Минимално инсталирај" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Подешавање Софтвера" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Изабери пакете за инсталацију" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Инсталирам" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Без детаља" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Преостало време:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(процењујем...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d пакет" +msgstr[1] "%d пакета" +msgstr[2] "%d пакета" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Сажетак" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Подеси" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "није подешено" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Пронађени су следећи инсталациони медији.\n" +"Уколико желите да прескочите неке од њих, деселектујте их сада." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Имате могућност да копирате садржај CD-ова на хард диск пре инсталације.\n" +"Након тога ће инсталција наставити са хард диска а пакети ће остати доступни " +"и када се заврши инсталација." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Копирање целог CDа" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Хм,појавила се грешка" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Изаберите распоред тастатуре" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Овде је комплетна листа доступних тастатура:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Инсталација/Ажурирање" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Да ли је ово инсталација или ажурирање?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Инсталација" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Ажурирање %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Кључ за енкрипцију за %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Прекини инсталацију, рестартуј систем" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Нова инсталација" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Ажурирање претходне инсталације (није препоручљиво)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Програм за инсталацију је открио да ваш инсталирани Линукс систем не може " +"безбедно \n" +"да се надогради на %s.\n" +"\n" +"Нова инсталација која ће заменити постојећу се препоручује.\n" +"\n" +"Упозорење : требало би да направите резервну копију својих личних података " +"пре него што изаберете \"Нова инсталација\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Подешавање CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Промените ваш Cd-Rom!\n" +"\n" +"Убаците ваш CD означен са \"%s\" у погон и притисните \"У реду\" када сте " +"спремни.\n" +"Уколико га немате притисните Поништи." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Тражим пакете" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Ваш систем нема довољно слободног простора за инсталацију или ажурирање " +"система (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Молим Вас да изаберете учитавање или снимање селекције пакета.\n" +"Формат који се користи је исти као и код auto_install генерисаних фајлова." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Учитај" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Сачувај" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Лош фајл" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Плазма" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Избор Десктопа" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Можете изабрати ваш десктоп профил." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Селектована величина је веђа од слободног простора" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Тип инсталације" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Нисте селектовали ниједну групу пакета.\n" +"Изаберите минималну инсталацију коју желите:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Са X-овима" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Инсталирај препоручене пакете" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Са основном документацијом (препорука!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Стварно минимална инсталација (посебно без urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Припремам надоградњу..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Припремам инсталацију" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Инсталирам пакет %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Грешка у листи пакета:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Свеједно наставити даље ?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Покушај поново" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Прескочи овај пакет" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Прескочи све пакете са медија \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Иди назад на медиј и избор пакета" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Појавила се грешка при инсталацији пакета%s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Постинсталациона конфигурација" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Проверите да ли се у уређају %s налази медиј за ажурирање модула" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Ажурирање" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Сада имате могућност да подесите online медиј." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Ово омогућава инсталацију сигурносних ажурирања." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Да би подесили те медије, биће вам потребна Интернет \n" +"конекција.\n" +"Да ли желите да подесите online медиј?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Следећи пакети треба да буду инсталирани" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Покушај поново?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Грешка при убацивању медија" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Сада имате могућност да download-ујете ажуриране пакете који су\n" +"креирани након изласка дистрибуције.\n" +"Они могу садржавати исправке грешака и сигурносних рупа\n" +"\n" +"Да би скинули ове пакете морате да имате подешену Интернет конекцију.\n" +"\n" +"да ли желите да инсталирате update-ове ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s на %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Хардвер" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Звучна картица" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Графички интерфејс" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Мрежа и Интернет" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Проксији" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "подешено" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Ниво сигурности" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Заштитни зид (Firewall)" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "Активирано" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "онемогућено" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Нисте подесили X. Да ли сте сигурни да желите то?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Припрема иницијалног програма за покретање..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Будите стрпљиви, ово може потрајати..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"У овом сугурносном нивоу приступ фајловима на Windows партицији је дозвољен " +"само администраторима." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Убаците празну дискету у уређај %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Креирам ауто инсталациони флопи" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Неки кораци нису комплетирани.\n" +"\n" +"Да ли стварно желите да завршите ?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Честитке" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Рестарт" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Језик" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Локализација" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Лиценца" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Миш" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Детекција хард диска" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Инсталациона класа" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Тастатура" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Сигурност" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Партиционисање" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Форматирање" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Избор пакета" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Инсталирам" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Корисници" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Стартер" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Конфигурисање X-а" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Сажетак" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Сервиси" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Ажурирање" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Излаз" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "УРЛ мирора?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "УРЛ мора почињати са ftp:// или http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Контактирајте %s web сајт да би добили листу доступних mirror-а..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Неуспешно успостављање везе са %s web сајт ради листе доступних mirror-а" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Изаберите mirror са ког ћете скинути пакете" diff --git a/perl-install/install/share/po/sr@Latn.po b/perl-install/install/share/po/sr@Latn.po new file mode 100644 index 000000000..08b2f9242 --- /dev/null +++ b/perl-install/install/share/po/sr@Latn.po @@ -0,0 +1,1994 @@ +# Cirilicni prevod drakbootdisk.po fajla. +# Copyright (C) 1997-2003 MandrakeSERBIA. +# Tomislav Jankovic <tomaja@net.yu>, 2000. +# +# +msgid "" +msgstr "" +"Project-Id-Version: DrakX\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2004-09-15 13:33+0200\n" +"Last-Translator: Toma Jankovic_<tomaja@net.yu>\n" +"Language-Team: Serbian <i18n@mandrake.co.yu>\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 0.9.6\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, fuzzy, c-format +msgid "Office tools" +msgstr "Radna(Office) stanica" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Da li imate još dodatnih medija?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Sledeći mediji su pronađeni i biće korićeni tokom instalacije: %s.\n" +"\n" +"\n" +"Da li imate dodatnih instalacionih medija koje treba podesiti?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Mreža (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Mreža (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Mreža (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Podešavanje NFS-a" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Unesite ime domaćina-hostname i direktorijum vašeg NFS medija" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Nedostaje ime domaćina-hostname" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Direktorijum mora početi sa \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Ime domaćina-hostname za montiranje NFS ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Direktorijum" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Dodatni" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Ne mogu pronađem listu paketa na ovom miroru. proverite da li lokacija " +"ispravna." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Tražim već instalirane pakete..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Tražim pakete za ažuriranje..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Uklanjam stare pakete..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Sledeći paketi će biti uklonjeni da bi sistem mogao da se ažurira: %s\n" +"\n" +"\n" +"Da li zaista želite da uklonite ove pakete?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Greška kod otvaranja datoteka %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Sledeći disk(ovi) će biti preimenovani:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (ranije sa imenom %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Mreža" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Izaberite medij" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Datoteka već postoji. Da li prepišem preko postojeće?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Pristup odbijen" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Pogrešno NFS ime" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Loš medij %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Ne mogu da napravim snimak pre particioniranja" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Snimci će biti dostupni nakon instalacije u %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Instalacija" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfiguracija" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Morate i %s da formatirate" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Neke hardverske komponente u vašem računaru zahtevaju odgovarajuće drajvere " +"da bi normalno funkcionisale.\n" +"Informacije o njima možete pronaći na: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Pristupam mrežu" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Odstupam od mreže" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopiranje nekih poaketa na diskove radi kasnije upotrebe" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiranje u toku" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "morate imati" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "važno" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "veoma lepo" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "lepo" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "možda" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Bez opisa" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, fuzzy, c-format +msgid "An error occurred:" +msgstr "Hm,pojavila se greška" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Pojavila se fatalna greška: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d instlaciona transakcija nije uspela" + +#: pkgs.pm:929 +#, fuzzy, c-format +msgid "Installation of packages failed:" +msgstr "Instaliram paket %s" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Radna stanica" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Radna(Office) stanica" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Office programi: tekst procesori (LibreOffice Writer, Kword), tabele " +"(LibreOffice Calc, Kspread), pdf preglednici, itd" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Stanica za igru" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Zabavni programi: arkade, ige na tabli, strategije, itd" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedijalna stanica" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programi za puštanje zvuka i videa" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet stanica" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Skup alata za čitanje i slanje el.pošte i vesti (mutt, tin..) i za " +"pretraživanje Interneta" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Mrežni kompjuter (klijent)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klijenti za različite protokole uključujući i ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Alati za lako konfigurisanje kompjutera" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konzolni alati" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "editori,šelovi, alati za datoteke, terminali" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Razvojna" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C i C++ razvojne biblioteke, programi i propratne datoteke" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentacija" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Knjige i Kako? (Howto's) za Linux i Besplatni Softver" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux-ova Standardna Baza. Podrška za Third party aplikaicje" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Veb Server" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Softver za grupni rad" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Server, Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "El.pošta/vesti" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix server za el.poštu,Inn server za vesti " + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Server direktorijuma" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP Server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Ime Domena i Mrežni Informacioni Server" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Fajl Server i server za deljenje štampača" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS Server, Samba Server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Server,Baze podataka" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL ili MariaDB server za bazu podataka" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Server, Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Pošta" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix mail server" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL ili MariaDB server za bazu podataka" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Mrežni Server" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS server, SMB server, Proxy server, SSH server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafičko Okruženje" + +#: share/meta-task/compssUsers.pl:152 +#, fuzzy, c-format +msgid "Plasma Workstation" +msgstr "Radna stanica" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop okruženje, osnovno grafičko okruženje sa kolekcijom pratećih alata" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Gnome radna stanica" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Grafička okruženja za setom korisničk NFS server, SMB server, Proxy server, " +"NFS server, SMB server, Proxy serverih aplikacija i desktopalata" + +#: share/meta-task/compssUsers.pl:164 +#, fuzzy, c-format +msgid "Xfce Workstation" +msgstr "KDE padna stanica" + +#: share/meta-task/compssUsers.pl:165 +#, fuzzy, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Grafička okruženja za setom korisničk NFS server, SMB server, Proxy server, " +"NFS server, SMB server, Proxy serverih aplikacija i desktopalata" + +#: share/meta-task/compssUsers.pl:169 +#, fuzzy, c-format +msgid "MATE Workstation" +msgstr "Gnome radna stanica" + +#: share/meta-task/compssUsers.pl:174 +#, fuzzy, c-format +msgid "Cinnamon Workstation" +msgstr "Radna stanica" + +#: share/meta-task/compssUsers.pl:175 +#, fuzzy, c-format +msgid "A graphical environment based on GNOME" +msgstr "Grafičko Okruženje" + +#: share/meta-task/compssUsers.pl:179 +#, fuzzy, c-format +msgid "LXQt Desktop" +msgstr "IceWm Desktop" + +#: share/meta-task/compssUsers.pl:181 +#, fuzzy, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" +"Grafička okruženja za setom korisničk NFS server, SMB server, Proxy server, " +"NFS server, SMB server, Proxy serverih aplikacija i desktopalata" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, fuzzy, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" +"Grafička okruženja za setom korisničk NFS server, SMB server, Proxy server, " +"NFS server, SMB server, Proxy serverih aplikacija i desktopalata" + +#: share/meta-task/compssUsers.pl:189 +#, fuzzy, c-format +msgid "LXDE Desktop" +msgstr "IceWm Desktop" + +#: share/meta-task/compssUsers.pl:191 +#, fuzzy, c-format +msgid "A lightweight fast graphical environment" +msgstr "" +"Grafička okruženja za setom korisničk NFS server, SMB server, Proxy server, " +"NFS server, SMB server, Proxy serverih aplikacija i desktopalata" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Drugi grafički desktopovi" + +#: share/meta-task/compssUsers.pl:195 +#, fuzzy, c-format +msgid "Window Maker, Fvwm, etc" +msgstr " Window Maker, Enlightenment, Fvwm, itd" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Alati" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH Server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin server za daljinsku kontrolu" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Mrežni alati/Monitoring" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Alati za monitoring, upravljanje procesima, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia Čarobnjaci" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Čarobnjaci za podešavanje servera" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Greška, ali neznam kako da je razrešim.\n" +"Nastavite na vaš rizik!" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Neki važni paketi nisu dobro instalirani.\n" +"Vaš cdrom uređaj ili cd su neispravni.\n" +"Proverite cdrom na instaliranom kompjuteru koristeće \"rpm -qpl media/main/*." +"rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Pokrećem korak `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Instalacija %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> između elemenata" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Vaš sistem ima manjak snage. Usled toga možete imati problema pri " +"instalaciji\n" +"%s. Ukoliko se oni pojave, možete probati tekstualnu instalaciju. Da bi to " +"postigli,\n" +"pritisnite `F1' pri startanju sa CDROM-a, a onda ukucajte `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, fuzzy, c-format +msgid "Media Selection" +msgstr "Odabir grupa paketa" + +#: steps_gtk.pm:257 +#, fuzzy, c-format +msgid "Install %s Plasma Desktop" +msgstr "IceWm Desktop" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, fuzzy, c-format +msgid "Custom install" +msgstr "Minimalno instaliraj" + +#: steps_gtk.pm:280 +#, fuzzy, c-format +msgid "Plasma Desktop" +msgstr "IceWm Desktop" + +#: steps_gtk.pm:281 +#, fuzzy, c-format +msgid "GNOME Desktop" +msgstr "IceWm Desktop" + +#: steps_gtk.pm:282 +#, fuzzy, c-format +msgid "Custom Desktop" +msgstr "IceWm Desktop" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Odabir grupa paketa" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Pojedinačno biranje paketa" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Deselektuj Sve" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Ukupna veličina: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Verzija: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Veličina: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Važnost: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Ne možete selektovati/deselektovati ovaj paket" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "zbog ne postojanja %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "zbog ne zadovoljenog %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "pokušavam da prikažem %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "da bih zadržao %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Ne možete selektovati ovaj paket jer nema više slobodnog prostora" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Sledeći paketi treba da budu instalirani" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Sledeći paketi će biti izbrisani" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ovo je obavezni paket,i ne može biti deselektovan" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Možete deselektovati ovaj paket jer je već instaliran" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Ne možete deselektovati ovaj paket.On mora biti ažuriran" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Automatski prikaži izabrane pakete" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Instaliraj" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Učitaj/Sačuvaj izbor" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Ažuriranje selekcije paketa" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimalno instaliraj" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Podešavanje Softvera" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Izaberi pakete za instalaciju" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Instaliram" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Bez detalja" + +#: steps_gtk.pm:610 +#, fuzzy, c-format +msgid "Time remaining:" +msgstr "Preostalo vreme" + +#: steps_gtk.pm:611 +#, fuzzy, c-format +msgid "(estimating...)" +msgstr "Procenjujem" + +#: steps_gtk.pm:637 +#, fuzzy, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paketa" +msgstr[1] "%d paketa" +msgstr[2] "%d paketa" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Sažetak" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Podesi" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nije podešeno" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Pronađeni su sledeći instalacioni mediji.\n" +"Ukoliko želite da preskočite neke od njih, deselektujte ih sada." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Imate mogućnost da kopirate sadržaj CD-ova na hard disk pre instalacije.\n" +"Nakon toga će instalcija nastaviti sa hard diska a paketi će ostati dostupni " +"i kada se završi instalacija." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopiranje celog CDa" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Hm,pojavila se greška" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Izaberite raspored tastature" + +#: steps_interactive.pm:109 +#, fuzzy, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Ovde je predstavljena cela lista dostupnih rasporeda za tastature" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Instalacija/Ažuriranje" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Da li je ovo instalacija ili ažuriranje?" + +#: steps_interactive.pm:159 +#, fuzzy, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Instaliraj" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Ažuriranje %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Ključ za enkripciju za %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, fuzzy, c-format +msgid "New Installation" +msgstr "Instalacija" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, fuzzy, c-format +msgid "Configuring CD/DVD" +msgstr "Konfiguracija IDE" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Promenite vaš Cd-Rom!\n" +"\n" +"Ubacite vaš CD označen sa \"%s\" u pogon i pritisnite \"U redu\" kada ste " +"spremni.\n" +"Ukoliko ga nemate pritisnite Poništi." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Tražim pakete" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Vaš sistem nema dovoljno slobodnog prostora za instalaciju ili ažuriranje " +"sistema (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Molim Vas da izaberete učitavanje ili snimanje selekcije paketa.\n" +"Format koji se koristi je isti kao i kod auto_install generisanih fajlova." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Učitaj" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Sačuvaj" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Loš fajl" + +#: steps_interactive.pm:455 +#, fuzzy, c-format +msgid "Plasma" +msgstr "IceWm Desktop" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, fuzzy, c-format +msgid "Desktop Selection" +msgstr "Odabir grupa paketa" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Selektovana veličina je veđa od slobodnog prostora" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Tip instalacije" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Niste selektovali nijednu grupu paketa.\n" +"Izaberite minimalnu instalaciju koju želite:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Sa X-ovima" + +#: steps_interactive.pm:583 +#, fuzzy, c-format +msgid "Install recommended packages" +msgstr "Instaliram paket %s" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Sa osnovnom dokumentacijom (preporuka!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Stvarno minimalna instalacija (posebno bez urpmi)" + +#: steps_interactive.pm:637 +#, fuzzy, c-format +msgid "Preparing upgrade..." +msgstr "Pripremam starter..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Pripremam instalaciju" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Instaliram paket %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Greška u listi paketa:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Svejedno nastaviti dalje ?" + +#: steps_interactive.pm:683 +#, fuzzy, c-format +msgid "Retry" +msgstr "Obnovi" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, fuzzy, c-format +msgid "Go back to media and packages selection" +msgstr "Sačuvaj selekciju paketa" + +#: steps_interactive.pm:689 +#, fuzzy, c-format +msgid "There was an error installing package %s." +msgstr "Greška pri instalaciji paketa:" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Postinstalaciona konfiguracija" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Proverite da li se u uređaju %s nalazi medij za ažuriranje modula" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Ažuriranje" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Sledeći paketi treba da budu instalirani" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, fuzzy, c-format +msgid "Retry?" +msgstr "Obnovi" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Sada imate mogućnost da download-ujete ažurirane pakete koji su\n" +"kreirani nakon izlaska distribucije.\n" +"Oni mogu sadržavati ispravke grešaka i sigurnosnih rupa\n" +"\n" +"Da bi skinuli ove pakete morate da imate podešenu Internet konekciju.\n" +"\n" +"da li želite da instalirate update-ove ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s na %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardver" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Zvučna kartica" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafički interfejs" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Mreža i Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proksiji" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "podešeno" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Nivo sigurnosti" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Zaštitni zid (Firewall)" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "Aktivirano" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "onemogućeno" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Niste podesili X. Da li ste sigurni da želite to?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, fuzzy, c-format +msgid "Preparing initial startup program..." +msgstr "Pripremam instalaciju" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"U ovom sugurnosnom nivou pristup fajlovima na Windows particiji je dozvoljen " +"samo administratorima." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Ubacite praznu disketu u uređaj %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Kreiram auto instalacioni flopi" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Neki koraci nisu kompletirani.\n" +"\n" +"Da li stvarno želite da završite ?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Čestitke" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Restart" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Izaberite jezik" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licenca" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Miš" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Detekcija hard diska" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Instalaciona klasa" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tastatura" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Sigurnost" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Particionisanje" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatiranje" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Izbor paketa" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Instaliram" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Korisnici" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Starter" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Konfigurisanje X-a" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Sažetak" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Servisi" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Ažuriranje" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Izlaz" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL mirora?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL mora počinjati sa ftp:// ili http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Kontaktirajte %s web sajt da bi dobili listu dostupnih mirror-a..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Neuspešno uspostavljanje veze sa %s web sajt radi liste dostupnih mirror-a" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Izaberite mirror sa kog ćete skinuti pakete" + +#~ msgid "KDE Workstation" +#~ msgstr "KDE padna stanica" + +#, fuzzy +#~ msgid "XFCE Workstation" +#~ msgstr "KDE padna stanica" + +#, fuzzy +#~ msgid "RazorQT Desktop" +#~ msgstr "IceWm Desktop" + +#~ msgid "Do you have an ISA sound card?" +#~ msgstr "Da li imate ISA zvučnu karticu?" + +#~ msgid "" +#~ "Run \"alsaconf\" or \"sndconfig\" after installation to configure your " +#~ "sound card" +#~ msgstr "" +#~ "Pokrenite \"alsaconf\" ili \"sndconfig\" nakon isntalacije da bi podesili " +#~ "svoju zvučnu karticu" + +#~ msgid "No sound card detected. Try \"harddrake\" after installation" +#~ msgstr "" +#~ "Nije detektovana zvučna kartica. Pokrenite \"harddrake\" nakon instalacije" + +#, fuzzy +#~ msgid "KDE Desktop" +#~ msgstr "IceWm Desktop" + +#~ msgid "KDE" +#~ msgstr "KDE" + +#~ msgid "CD-ROM" +#~ msgstr "CD-ROM" + +#, fuzzy +#~ msgid "" +#~ "The Plasma Desktop, the basic graphical environment with a collection of " +#~ "accompanying tools" +#~ msgstr "" +#~ "K Desktop okruženje, osnovno grafičko okruženje sa kolekcijom pratećih " +#~ "alata" + +#~ msgid "IDE" +#~ msgstr "IDE" + +#~ msgid "Preparing bootloader..." +#~ msgstr "Pripremam starter..." + +#, fuzzy +#~ msgid "" +#~ "A lightweight & fast graphical environment with user-friendly set of " +#~ "applications and desktop tools" +#~ msgstr "" +#~ "Grafička okruženja za setom korisničk NFS server, SMB server, Proxy " +#~ "server, NFS server, SMB server, Proxy serverih aplikacija i desktopalata" + +#~ msgid "" +#~ "No free space for 1MB bootstrap! Install will continue, but to boot your " +#~ "system, you'll need to create the bootstrap partition in DiskDrake" +#~ msgstr "" +#~ "Nema slobodnog prostora za 1MB bootstrap! Instalacija đe se nastaviti, " +#~ "ali da bi podigli vašsistem, morađete da kreirate bootstrap particiju u " +#~ "DiskDrake-u" + +#~ msgid "" +#~ "You'll need to create a PPC PReP Boot bootstrap! Install will continue, " +#~ "but to boot your system, you'll need to create the bootstrap partition in " +#~ "DiskDrake" +#~ msgstr "" +#~ "Morate kreirati PPC PReP bootstrap! Instalacija đe se nastaviti, ali da " +#~ "bi podigli vaš sistem, morađete da kreirate bootstrap particiju u " +#~ "DiskDrake-u" + +#~ msgid "" +#~ "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " +#~ "will not work for you. The install will continue, but you'll need to use " +#~ "BootX or some other means to boot your machine. The kernel argument for " +#~ "the root fs is: root=%s" +#~ msgstr "" +#~ "Pošto izgleda da imate staromodnu ili nepoznatu mašinu, yaboot starter " +#~ "neđe raditi kod vas.Instalacija će biti nastavljena, ali ćete morati da " +#~ "koristite BootX ili nešto drugo da bi podigli sistem. Argument kernela " +#~ "zaroot fs je: root=%s" + +#~ msgid "Welcome" +#~ msgstr "Dobrodošli" + +#~ msgid "Select All" +#~ msgstr "Selektuj Sve" + +#~ msgid "Bad package" +#~ msgstr "Loš paket" + +#, fuzzy +#~ msgid "Preparing boot images..." +#~ msgstr "Pripremam starter..." + +#~ msgid "" +#~ "_: Keep these entry short\n" +#~ "Networking" +#~ msgstr "Mreža" + +#~ msgid "" +#~ "Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, " +#~ "gnumeric), pdf viewers, etc" +#~ msgstr "" +#~ "Office programi: tekst procesori (kword, abiword), tabele (kspread, " +#~ "gnumeric), pdf preglednici, itd" + +#~ msgid "Downloading file %s..." +#~ msgstr "Preuzimam fajl %s ..." + +#~ msgid "" +#~ "You have selected the following server(s): %s\n" +#~ "\n" +#~ "\n" +#~ "These servers are activated by default. They do not have any known " +#~ "security\n" +#~ "issues, but some new ones could be found. In that case, you must make " +#~ "sure\n" +#~ "to upgrade as soon as possible.\n" +#~ "\n" +#~ "\n" +#~ "Do you really want to install these servers?\n" +#~ msgstr "" +#~ "Vi ste izabrali sledeđe servere: %s\n" +#~ "\n" +#~ "\n" +#~ "Ovi serveri se aktiviraju po osnovnoj postavci. Oni nemaju poznatih " +#~ "sigurnosnih\n" +#~ "nedostataka, ali se ipak mogu pojaviti neki novi. Ukoliko se to desi, " +#~ "morate ih ažurirati\n" +#~ "što je pre moguđe.\n" +#~ "\n" +#~ "\n" +#~ "Da li zaista želite da instalirate ove servise?\n" + +#~ msgid "IceWm Desktop" +#~ msgstr "IceWm Desktop" + +#~ msgid "Contacting the mirror to get the list of available packages..." +#~ msgstr "Kantaktirajte mirror za listu mogućih paketa" + +#~ msgid "Unable to contact mirror %s" +#~ msgstr "Ne mogu da kontaktiram miror %s" + +#~ msgid "Generate auto install floppy" +#~ msgstr "Kreiraj auto instalacionu disketu" + +#~ msgid "" +#~ "The auto install can be fully automated if wanted,\n" +#~ "in that case it will take over the hard disk drive!!\n" +#~ "(this is meant for installing on another box).\n" +#~ "\n" +#~ "You may prefer to replay the installation.\n" +#~ msgstr "" +#~ "Auto instalacija može biti potpuno automatizovana ukoliko želite,\n" +#~ "u tom slučaju preuzeće kontrolu nad hard-diskom!!\n" +#~ "(ovo se odnosi na instalaciju na drugoj mašini).\n" +#~ "\n" +#~ "Možda volite da ponovite instalaciju.\n" + +#~ msgid "Replay" +#~ msgstr "Ponavljanje" + +#~ msgid "Automated" +#~ msgstr "Automatski" + +#~ msgid "Save packages selection" +#~ msgstr "Sačuvaj selekciju paketa" + +#~ msgid "Do you want to use aboot?" +#~ msgstr "Da li želite da koristite aboot ?" + +#~ msgid "" +#~ "Error installing aboot, \n" +#~ "try to force installation even if that destroys the first partition?" +#~ msgstr "" +#~ "Greška pri instalaciji aboot-a, \n" +#~ "Da li da probam da instaliram čak ako to vodi uništenju prve particije?" + +#~ msgid "All" +#~ msgstr "Sve" + +#~ msgid "TV card" +#~ msgstr "TV katica" + +#~ msgid "Boot" +#~ msgstr "Startanje" + +#~ msgid "" +#~ "_: Keep these entry short\n" +#~ "Authentication" +#~ msgstr "Autentifikacija" + +#~ msgid "Arkeia" +#~ msgstr "Arkeia" + +#~ msgid "Flatout" +#~ msgstr "Flatout" + +#~ msgid "Gwenview" +#~ msgstr "Gwenview" + +#~ msgid "3D" +#~ msgstr "3D" + +#~ msgid "CMS" +#~ msgstr "CMS" + +#~ msgid "CRM" +#~ msgstr "CRM" + +#~ msgid "2007 product line" +#~ msgstr "linija proizvoda 2007" + +#~ msgid "Invictus Firewall" +#~ msgstr "Zaštitni zid Invictus" + +#~ msgid "Discovery Live Mode" +#~ msgstr "Discovery Live" + +#~ msgid "How to register" +#~ msgstr "Kako se registrovati" + +#~ msgid "Rpmdrake 2" +#~ msgstr "Rpmdrake 2" + +#~ msgid "Mandriva Online Services" +#~ msgstr "Mandriva Online servisi" + +#~ msgid "New Theme" +#~ msgstr "Nova tema" + +#~ msgid "Web 2.0" +#~ msgstr "Veb 2.0" + +#~ msgid "Kaspersky" +#~ msgstr "Kasperski" + +#~ msgid "LinDVD" +#~ msgstr "LinDVD" + +#~ msgid "Skype" +#~ msgstr "Skype" + +#~ msgid "Transgaming/Cedega" +#~ msgstr "Transgaming/Cedega" + +#~ msgid "DrakVPN" +#~ msgstr "DrakVPN" + +#, fuzzy +#~ msgid "(%d package, %d MB)" +#~ msgid_plural "(%d packages, %d MB)" +#~ msgstr[0] "%d paketa" +#~ msgstr[1] "%d paketa" +#~ msgstr[2] "%d paketa" + +#~ msgid "%d packages" +#~ msgstr "%d paketa" + +#~ msgid "Language" +#~ msgstr "Izaberite jezik" + +#~ msgid "License" +#~ msgstr "Licenca" + +#~ msgid "Installation class" +#~ msgstr "Instalaciona klasa" + +#~ msgid "Formatting" +#~ msgstr "Formatiranje" + +#~ msgid "Choosing packages" +#~ msgstr "Izbor paketa" + +#~ msgid "Users" +#~ msgstr "Korisnici" + +#~ msgid "Networking" +#~ msgstr "Mreža" + +#~ msgid "Configure X" +#~ msgstr "Konfigurisanje X-a" + +#~ msgid "" +#~ "Cannot access kernel modules corresponding to your kernel (file %s is " +#~ "missing), this generally means your boot floppy in not in sync with the " +#~ "Installation medium (please create a newer boot floppy)" +#~ msgstr "" +#~ "Ne mogu da pristupim kernel modulima koji odgovaraju vašem kernelu (fajl " +#~ "%s nmedostaje), što generalno znači da vaš boot floppy nije " +#~ "sinhronizaovan sa Instalacionim medijom (kreirajte noviji boot floppy)" diff --git a/perl-install/install/share/po/sv.po b/perl-install/install/share/po/sv.po new file mode 100644 index 000000000..fb309d782 --- /dev/null +++ b/perl-install/install/share/po/sv.po @@ -0,0 +1,1706 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Fuad Sabanovic <manijak@telia.com>, 2000 +# Kenneth Krekula, 2005 +# Kenneth Krekula <kenneth.krekula@kiruna.se>, 2007 +# Kristoffer Grundström <lovaren@gmail.com>, 2013 +# Kristoffer Grundström <lovaren@gmail.com>, 2013-2016 +# Kristoffer Grundström <lovaren@gmail.com>, 2021-2022 +# Lars Westergren <lars.westergren@home.se>, 2003-2005 +# Magnus Björklöf <bjorklof@nic.fi>, 2003 +# Mattias Dahlberg <voz@home.se>, 2001-2002 +# Mattias Newzella <newzella@linux.nu>, 2001-2003 +# Michael Eklund <willard@null.net>, 2014-2016,2019,2023 +# Thomas Backlund <tmb@mageia.org>, 2011 +# Thomas Backlund <tmb@mandriva.org>, 2004-2006,2008-2009 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Michael Eklund <willard@null.net>, 2014-2016,2019,2023\n" +"Language-Team: Swedish (http://app.transifex.com/MageiaLinux/mageia/language/" +"sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Anslut dig till oss!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Gör det ditt!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Ditt val!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Kontorsverktyg" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Hemunderhållning" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "För barn" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "För familj!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "För utvecklare!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Tack så mycket!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Var fri!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Har du fler installationskällor att lägga till?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Följande media har hittats och kommer att användas under installationen: " +"%s.\n" +"\n" +"\n" +"Har du några tilläggs-medier du vill konfigurera?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Nätverk (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Nätverk (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Nätverk (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Konfigurera NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Ange namn och katalog för ditt NFS-media" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Värdnamn saknas" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Katalogen måste börja med \"/\"" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Värdnamn för NFS-anslutning ?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Katalog" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Tillägg" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "Kan inte hitta hdlist-filen på denna spegel" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"En del hårdvaror i din maskin behöver några icke-fria inre mjukvaror för att " +"de fria drivrutinerna ska kunna fungera." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Du borde aktivera \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" innehåller olika delar för systemet och dess program" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" innehåller nonfree-mjukvara.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Det innehåller också programvaror som behövs för att särskilda enheter ska " +"fungera (t.ex. några grafikkort från ATI/AMD, nätverkskort och RAID-" +"kort, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" innehåller mjukvara som inte kan distribueras i alla länder på grund " +"av mjukvarupatent." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "Det innehåller även mjukvara från \"%s\" med extra möjligheter." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Här kan du aktivera fler medier om du vill." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Det här mediet erbjuder paket-uppdateringar för mediet \"%s\"" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Söker efter paket som redan är installerade..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Söker efter paket att uppdatera..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Tar bort paket före uppgradering..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Följande paket kommer att tas bort för att kunna uppdatera systemet: %s\n" +"\n" +"\n" +"Vill du verkligen ta bort dessa paket?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Fel uppstod när filen %s skulle läsas" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Följande disk(ar) döptes om:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (hette tidigare %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Nätverk" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Välj media" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Filen finns redan. Skriv över?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Åtkomst nekad" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Felaktigt NFS-namn" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Oanvändbart media %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Kan inte ta skärmdumpar före partitionering" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Skärmdumpar kommer att finnas tillgängliga efter installationen i %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Installation" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Konfiguration" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Du måste också formatera %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"En del hårdvara i datorn behöver patenterade drivrutiner för att\n" +"fungera. Du hittar en del information om dem här: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Startar nätverket" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Stoppar nätverket" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Vänligen vänta, hämtar filen" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "kan inte lägga till media" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Kopierar några paket till hårddisken för senare användning" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopiering pågår" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "nödvändigt" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "viktigt" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "väldigt trevligt" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "trevligt" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "tveksamt" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Hämtar paket-information från XML meta-data..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Ingen xml-info för media \"%s\", endast partiellt resultat för paket %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Ingen beskrivning" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Vissa paket som krävs av %s kan inte installeras:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Ett fel inträffade:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Ett allvarligt fel inträffade: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Fråga inte igen" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d installationstransaktioner misslyckades" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Installation av paket misslyckades:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Arbetsstation" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Kontorsarbetsstation" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Kontorsprogram: ordbehandlare (LibreOffice Writer, Kword), kalkylprogram " +"(LibreOffice Calc, Kspread), PDF-visare, etc" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Spelstation" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Underhållande program: arkad, brädspel, strategi, etc" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimediastation" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Redigerings- och uppspelningsprogram för video och ljud" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internetstation" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"En samling verktyg för att läsa och skicka e-post och nyheter (mutt, tin...) " +"och för att utforska Internet" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Nätverksdator (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Klienter för olika protokoll inklusive SSH" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Verktyg för att underlätta konfigurationen av datorn" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsollverktyg" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Editorer, skal, filverktyg, terminaler" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Utveckling" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Utvecklingsbibliotek, program och include-filer för C och C++" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentation" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Böcker och \"Howto's\" om Linux och fri mjukvara" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Stöd för tredjepartsprogram" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Webbserver" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab-server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Brandvägg/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet-gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "E-post/Nyheter" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "E-postservern Postfix, Nyhetsgruppservern Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Katalog-server" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP-server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Domännamnserver och Nätverksinformationsserver" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Fil och skrivarserver" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS och Samba-server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Databas" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL- och MariaDB-databasserver" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Webb/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "E-post" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "E-postservern Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL- eller MariaDB-databasserver" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Nätverksserver" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS-server, SMB-server, Proxyserver, SSH-server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafisk miljö" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Arbetsstation för Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, den grundläggande grafiska miljön med en samling " +"tillhörande verktyg" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Arbetsstation för GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Grafisk miljö med en samling användarvänliga program och skrivbordsverktyg" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Arbetsstation för Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"En lättare grafisk miljö med en användarvänlig uppsättning av program och " +"skrivbordsverktyg" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Arbetsstation för MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Arbetsstation för Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "En grafisk miljö baserad på GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt-skrivbord" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "En nästa generations QT-portering av den lätta skrivbordsmiljön" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment-skrivbord" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "En lättviktig snabb grafisk miljö med ett dedikerat efterföljande" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE-skrivbord" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "En lätt och snabb grafisk miljö" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Andra grafiska skrivbordsmiljöer" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, mfl." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Verktyg" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH-server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Fjärrkonfiguration med Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Nätverksverktyg/övervakning" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Övervakningsverktyg, processhantering, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia-guider" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Guider för att konfigurera servern" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Ett fel uppstod och jag vet inte hur det kan hanteras på ett\n" +"bra sätt.\n" +"Fortsätt på egen risk." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"Några viktiga paket blev inte installerade ordentligt.\n" +"Antingen är cd-enheten eller cd-skivan trasig.\n" +"Du kan kontrollera cd-skivan på en redan installerad\n" +"Mageia-dator med kommandot \"rpm -qpl media/main/*.rpm\".\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Går in i steget \"%s\"\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Installation %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> mellan elementen" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg-servern är långsam i starten. Vänligen vänta..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Systemet har ont om resurser. Du kan få problem med att installera\n" +"%s. Om det blir problem kan du prova den textbaserade\n" +"installationen istället. För att göra det tryck F1 när du startar\n" +"från cd-skivan, skriv sedan \"text\"." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Val av media" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Installera %s Plasma-skrivbordet" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Installera %s GNOME-skrivbordet" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Anpassad installation" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma-skrivbord" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME-skrivbord" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Anpassat skrivbord" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Här är en förhandsvisning av '%s'-skrivbordet." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Klicka på bilderna för att se en större förhandsvisning" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Val av paketgrupper" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Individuellt paketval" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Avmarkera alla" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Total storlek: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Version: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Storlek: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Betydelsegrad: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Du kan inte välja/välja bort det här paketet." + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "för att %s saknas" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "på grund av otillräckliga %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "försöker befordra %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "för att behålla %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Du kan inte välja det här paketet eftersom det inte finns tillräckligt med " +"ledigt utrymme." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Följande paket kommer att installeras" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "De följande paketen kommer att tas bort" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Det här är ett obligatoriskt paket, det kan inte avmarkeras" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Du kan inte välja bort det här paketet. Det är redan installerat." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Du kan inte välja bort det här paketet. Det måste uppdateras." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Visa automatiskt valda paket" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Installera" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Ladda/spara val" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Uppdaterar paketval" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Växla mellan hierarkisk och platt paket-lista" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimal installation" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Programhantering" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Välj de paket som du vill installera" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Installerar" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Inga detaljer" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tid som återstår:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(uppskattar...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d paketet" +msgstr[1] "%d paket" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Sammanfattning" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Konfigurera" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "inte inställt" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Följande installationskällor har hittats.\n" +"Du kan välja bort de du inte vill använda dig av." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Du har möjlighet att kopiera innehållet från CDn till hårddisken innan " +"installationen påbörjas.\n" +"Installationen kommer sedan att fortsätta från hårddisken och paketen kommer " +"fortsättningsvis att vara tillgängliga när systemet är färdiginstallerat." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Kopiera hela CD-skivor" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Ett fel inträffade" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Vänligen välj din tangentbordslayout" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Här är den fullständiga listan över tillgängliga tangentbord:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Installera/Uppgradera" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Är det här en installation eller en uppgradering?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Installera" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Uppgradera %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Krypteringsnyckel för %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Avbryt installationen, starta om systemet" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Ny installation" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Uppgradera tidigare installation (rekommenderas ej)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Installationsprogrammet har märkt att ditt installerade Linux\n" +"system inte kan uppgraderas på ett säkert sätt till %s.\n" +"\n" +"En ny installation som ersätter din tidigare rekommenderas.\n" +"\n" +"Varning: Du bör säkerhetskopiera alla dina personliga filer innan du\n" +"väljer \"Ny installation\"." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Ställer in CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Byt CD-skiva.\n" +"\n" +"Sätt i CD-skivan med namn \"%s\" och klicka på OK.\n" +"Om du inte har den, klicka på Avbryt för att hoppa över\n" +"den delen av installationen." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Söker efter tillgängliga paket..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Ditt system har inte tillräckligt med utrymme kvar för installation eller " +"uppgradering (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Välj ladda eller spara paketval.\n" +"Formatet är detsamma som för auto_install-genererade filer." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Ladda" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Spara" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Trasig fil" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Skrivbordsval" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Du kan välja din arbetsstations skrivbordsprofil." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Vald storlek är större än tillgängligt utrymme." + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Installationstyp" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Du har inte valt några paket-grupper.\n" +"Vänligen välj den minimala installationen som du vill ha:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Med X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Installera rekommenderade paket" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Med grundläggande dokumentation (rekommenderas)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Minimal installation (ingen urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Förbereder uppgradering..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Förbereder installation" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Installerar paket %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Det uppstod ett fel när paketen skulle sorteras:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Fortsätta ändå?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Försök igen" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Hoppa över det här paketet" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Hoppa över alla paket från mediet \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Gå tillbaka till media och paketval" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Det uppstod ett fel vid installation av paketet %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Konfiguration efter installationen" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Vänligen säkerställ att mediet för uppdateringsmoduler finns i enheten %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Uppdateringar" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Du har nu möjlighet att ange online-media" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Det här tillåter installation av säkerhetsuppdateringar." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"För att ange dessa media behöver du en fungerande internetanslutning.\n" +"\n" +"Vill du ange uppdateringsmedia?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Den nerladdningen kunde inte installeras." + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Försök igen?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Fel när media skulle läggas till" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Du har nu möjlighet att ladda hem programuppdateringar. De här\n" +"paketen\n" +"har utkommit efter att denna distributionen släpptes. De kan\n" +"innehålla säkerhetsuppdateringar eller felrättningar.\n" +"\n" +"Du behöver en fungerande Internetanslutning för att kunna ladda ner dessa " +"paket.\n" +"\n" +"Vill du installera uppdateringarna?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s på %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hårdvara" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Ljudkort" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafiskt gränssnitt" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Nätverk & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxy-servrar" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "konfigurerad" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Säkerhetsnivå:" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Brandvägg" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "aktiverad" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "inaktiverad" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Du har inte konfigurerat X. Är du säker på att du vill göra detta?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Förbereder initiellt uppstartsprogram..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Ha tålamod, det här kan ta en stund..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"På den här säkerhetsnivån är tillgång till Windowspartitionen begränsad till " +"administratören." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Sätt in en tom diskett i enhet %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Skapar automatisk installationsdiskett" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Några steg är inte slutförda.\n" +"\n" +"Vill du verkligen avbryta nu?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Grattis" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Starta om" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Välj språk" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Lokalisering" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licens" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mus" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Identifiering av hårddisk" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Installationsklass" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tangentbord" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Säkerhet" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Partitionering" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatering" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Väljer paket" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Installerar" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Användare" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Starthanterare" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Ställ in X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Sammanfattning" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Tjänster" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Uppdateringar" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Avsluta" diff --git a/perl-install/install/share/po/ta.po b/perl-install/install/share/po/ta.po new file mode 100644 index 000000000..50bf04f1b --- /dev/null +++ b/perl-install/install/share/po/ta.po @@ -0,0 +1,1639 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# prabu <prabu_anand2000@yahoo.com>, 2002 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Tamil (http://www.transifex.com/MageiaLinux/mageia/language/" +"ta/)\n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "அடைவு" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "ஏற்கனவே நிறுவப்பட்டுள்ள பொதிகள் பார்ைவயிடப்படுகின்றன" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "மேம்படுத்தப்பட வேண்டிய பொதிகள் அறியப்படுகின்றன" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%s என்ற கோப்ேபா படிப்பதில் பிழை நேர்ந்துள்ளது" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "வலையமைப்பு" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "வகிர்தல் முடிவதற்கு முன் திரைவேட்டு எடுக்க முடியாது" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "நிறுவி முடித்தவுடன் திரைவேட்டுகள் %s என்ற அடைவில் கிடைக்கும்" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "வடிவமைப்புகள்" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "நீங்கள் %s இதனையும் வடிவுட்ட வேண்டும்" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"உங்கள் கணினியில் உள்ள சில வன்ெபாருட்களின் இயக்க நிரலை\n" +"நீங்கள் %s இங்கிருந்து எடுக்கலாம்" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "வலையமைப்பாக்கங்கள் ஏற்றப்படுகிறது" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "வலையமைப்பாக்கங்கள் முடக்கப்படுகிறது" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "நிச்சயம் இருக்க வேண்டியவை" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "முக்கியமானவை" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "மிக அழகானவை" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "அழகானவை" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "தேவைப்பட்டால்" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "இவரிக்க வில்லை" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "வேலைக்களம்" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "அலுவல் கருவிகள்" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "விளையாட்டுகள்" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "விளையாட்டுகள்" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "பல்லூடக கணினி" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "பல்லூடக இயக்கிகள்/உருவாக்க நிரல்கள்" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "இணையக் கணினி" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "வலையமைப்புக் கணினி(வேண்டி)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "ssh முதலிய வலையமைப்புக் கருவிகள்" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "உங்கள் கணினியை எளிதாக வடிவமைக்க உதவுங்கருவிகள்" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "முனையக் கருவிகள்" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "முனையம்,தொகுப்பாளர்கள், கோப்பு மேலாளர்கள் மற்றும் ஓடுகள்" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "உருவாக்கம்" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C மற்றும் C++ நூலக நிரல்கள்" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "உதவிநூல்" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "புத்தகங்கள் மற்றும் எப்படிச் செய்வது போன்ற உதவி நூல்" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "LSB- லினக்ஸ் தரக்கட்டுப்பாட்டுக்கு தேவையான நிரல்கள்." + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "இணையத்தள சேவையகம்" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "குரூப்வேர்" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "கோலாப் சேவகன்" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "நெருப்புச்சுவர்/வழிப்படுத்தி" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "இணைய நுழைவாயில்" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "தரவுதளங்கள்" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "இணையதள/கோப்புப் பாிமாற்றம்" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "அப்பாச்சி, ftpd போன்ற பரிமாற்று நிரல்கள்" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "மின்னஞ்சல்" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL/MariaDB தரவுத்தள பரிமாறிகள்" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "வலையமைப்பக பரிமாறி" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS /சம்பா/பினாமி/ssh பரிமாறிகள்" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "வரைவியல்வழி சூழல்கள்" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "Kசாளரமைப்பு- ஓர் பயன்படுத்துவதற்கு எளிதான வரைவியல்வழி மேலாளர்" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "குேனாம் பணிக்கணினி" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "ஓர் பயன்படுத்துவதற்கு எளிதான வரைவியல்வழி மேலாளர்" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "மற்ற வரைவியல்வழி மேலாளர்கள்" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "உதவிக்கருவிகள்" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"பிழை நேர்ந்துள்ளது மன்னிக்கவும் எனக்கு என்ன செய்வதென்று தெரியவில்ைல\n" +"தொடர்ந்து செல்வது உங்கள் பொறுப்பு" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"சில முக்கிய பொதிகள் நிறுவுவதில் பிழை நேர்ந்துள்ளது\n" +"உங்கள் சிடி அல்லது சிடி இயக்கி பழுதடைந்து இருக்கலாம்.\n" +"உங்கள் சிடியைச் சோதிக்க ஏற்கனவே இயங்குகின்ற கணினியில் \"rpm -qpl media/main/*.rpm என " +"கட்டளையிடவும்\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "தற்ேபாது இந்த `%s நிலைக்கு செல்கிறோம்' \n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "பொதிகள் குழுத் தேர்வு" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "தனித்னி பொதியாக தேர்வுச் செய்" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "மெகா பைட்டில் மொத்த அளவு %d / %d" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "வெளியீடு: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "அளவு: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "முக்கியத்துவம்: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "நீங்கள் இந்த பொதியை தேர்வு/நீக்க முடியாது" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "இடமில்ைல என்பதால் நீங்கள் இந்த பொதியைத் தே`ர்வுச் செய்ய முடியாது" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "கிழ்கானும் பொதிகள் நிறுவுவதற்கு தேர்வுச் செய்யப்பட்டுள்ளது" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "கிழ்கானும் பொதிகள் நீக்கப்படுகிறது" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "இது கட்டாய பொதி. இதனை நீக்க முடியாது" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "இந்த பொதியை.நீக்க முடியாது. இது ஏற்கனவே நிறுவப்பட்டள்ளது" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "இந்த பொதியை.நீக்க முடியாது. இது நிகழ்நிலைப்படுத்த வேண்டிய பொதி" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "தானாக தேர்வுச் செய்யப்பட்டுள்ள பொதிகளைக் காட்டு" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "நிறுவு" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "பொதிகள் தேர்ைவ நிகழ்நிலைப் படுத்து" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "குறைந்தபட்ச நிறுவல்" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "நிரல் மேலாண்மை" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "நிறுவ வேண்டிய பொதிகளை தேர்வுச் செய்யுங்கள் " + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "நிறுவப்படுகிறது" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "உரை" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "வடிவமை" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "வடிவமைக்கப்படவில்ைல" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "பிழை நேர்ந்துள்ளது மன்னிக்கவும்" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "தயவுசெய்து உங்கள் விசைப்பலகை இட அமைவைத் தேர்வு செய்க " + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "நிறுவுதுல்/ேமம்படுத்தல்" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "இது நிறுவுதலா அல்லது ேமம்படுத்தலா?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "நிறுவு" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr " %s ேமம்படுத்து" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"சிடியை மாற்றவும்\n" +"\n" +"தயவுசெய்து \"%s\" என பெயரிடப்பட்ட நிறுவல் சிடியை சிடிராமில் வைக்கவும். வைத்தவுடன் சரி " +"என்ற பொத்தானை கிளிக் செய்யவும்\n" +"இந்த சிடி இல்ைலயென்றால் நீக்கு என்ற பொத்தானை கிளிக் செய்தால் இந்த சிடியிலிருந்து நிறுவல் " +"நின்றுவிடும்" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "இருக்கும் பொதிகள் பார்ைவயிடப்படுகின்றன" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "ஏற்றி" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "சேமி" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "குனோம்" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "நீங்கள் தேர்வு செய்துள்ள அளவு, இருக்குமிடத்ைத விட அதிகமாக உள்ளது" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "நிறுவல் முறை" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"நீங்கள் பொதி குழுக்கள் எதனையும் தேர்வு செய்யவில்ைல.\n" +"தயவுசெய்து உங்களுக்கு தேவையானதை தேர்வு செய்யவும்" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X உடன் வரைவியல்வழியிடல பயன்படுத்த இது தேவை" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "உதவி நூல்களுடன் (குறைந்தபட்சம் இது தேவை!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "மிகச்சிறிய நிறுவல்(urpmi கூட கிடையாது)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "நிறுவுதல் தொடங்குகிறது" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s பொதி நிறுவப்படுகிறது" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "பொதிகளை அடுக்குவதில் பிழை நேர்ந்துள்ளது" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "தொடர்ந்து செல்லலாமா?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "நிறுவியபின் சேய்ய வேண்டிய வடிவமைப்புகள்" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "புதுப்பித்தல்கள்" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "கிழ்கானும் பொதிகள் நிறுவுவதற்கு தேர்வுச் செய்யப்பட்டுள்ளது" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"இந்த பொதிகள் உங்கள் இயக்க நிரல் வெளியிட்ட பின் வெளிவந்தவை\n" +"இவை பொதுவாக பிழைகளை நீக்கவும், பாதுகாப்பு குறைபாடுகளை\n" +"நீக்கவும் வெளியிடப்பட்டவை \n" +"\n" +"இவற்ைற நிறுவ உங்களுக்கு நல்ல இணையத்ெதாடர்பு தேவை\n" +"\n" +"இவற்ைற நிறுவ விருப்பமா ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s இல் %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "வன்பொருள்" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "ஒலியட்ைட" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "வரைவியல்வழி" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "வலையமைப்பும் இணையமும்" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "பாதுகாப்பு நிலை" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "நெருப்புச்சுவர்" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "முடமாக்கப்பட்டுள்ளது" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "வெற்று நெகிழ்வட்ைட %s இயக்கியில் உள்ளிடவும்" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "தானியங்கி நிறுவல்வட்ைட உருவாக்கவும்" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"சில செயல்கள் இன்னும் முடிக்கப்படவில்ைல\n" +"\n" +"நீங்கள் நிச்சயம் நிறுவுதலை விட்டு வெளியேற விரும்புகிறீர்களா?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "வாழ்த்துக்கள்" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "மறுெதாடக்கம்" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "உங்கள் மொழியைத் தேர்வுச் செய்க" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "அனுமதி" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "எலி" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "வன்தட்டு கண்டுபிடித்தல்" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "விசைப்பலகை" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "பாதுகாப்பு" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "வகிர் ெசய்தல்" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "நிறுவப்படுகிறது" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "பயனர்கள்" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "துவங்குநிரல்" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X-ஐ வடிவமைக்கவும்" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "உரை" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "சேவைகள்" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "புதுப்பித்தல்கள்" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "வெளிச்ெசல்" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "பொதிகளை எங்கிருந்து இறக்க விரும்புகிறீர்கள்" diff --git a/perl-install/install/share/po/tg.po b/perl-install/install/share/po/tg.po new file mode 100644 index 000000000..dce57d495 --- /dev/null +++ b/perl-install/install/share/po/tg.po @@ -0,0 +1,1729 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Abrorova Hiromon, 2004 +# Bahromhon Bobojonov <bahrambabajanov@hotmail.com>, 2004 +# Dilshod Marupov <dma165@hotmail.com>, 2003-2004 +# Murod Marupov <abdullovich@khujand.org>, 2004 +# Roger Kovacs <rkovacs@khujand.org>, 2003 +# Victor Ibragimov <victor.ibragimov@gmail.com>, 2017 +# Victor Ibragimov <youth_opportunities@tajikngo.org>, 2005 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Victor Ibragimov <victor.ibragimov@gmail.com>\n" +"Language-Team: Tajik (http://www.transifex.com/MageiaLinux/mageia/language/" +"tg/)\n" +"Language: tg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Ҳамроҳ шавед!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Соҳиб шавед!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Интихоби шумо!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Абзорҳои ҳуҷҷатнигорӣ" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Дилхушии хонагӣ" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Барои кӯдакон" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Барои оила!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Барои барномасозон!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Ташаккур!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Озод бошед!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Шумо боз дигар расонаи иловагӣ доред?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Медиаи зерин пайдо шуд ва ҳангоми насб истифода бурда мешавад: %s.\n" +"\n" +"\n" +"Шумо барои танзим кардани насб ягон медиаи иловагӣ доред?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Шабака (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Шабака (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Шабакаи (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Танзимкунии NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Лутфан, номи мизбон ва директорияи медиаи NFS-и худро ворид намоед" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Номи мизбон намерасад" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Директория бояд бо \"/\\” сар карда шавад" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Номи мизбонро барои васли NFS ворид мекунед?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Директория" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Иловагӣ" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Файли рӯйхати бастаҳоро дар ин оина ёфта наметавонад. Мутмаин шавед, ки " +"ҷойгиршавӣ дуруст аст." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Релизи мағз" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Релизи шахсӣ" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Релизи пулакӣ" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Якчанд сахтафзор дар компютери шумо сахтафзори ғайри ройгонро талаб мекунад, " +"то ки драйверҳои нармафзори ройгон тавонанд кор кунанд." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Шумо бояд \"%s\"-ро фаъол кунед" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" дорои қисмҳои гуногуни системаҳо ва барномаҳои он мебошад." + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" дорои нармафзори ғайри ройгон мебошад.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Он инчунин дорои нармафзоре мебошад, ки барои кори баъзе дастгоҳҳо зарур аст " +"(масалан: баъзе кортҳои графикии ATI/AMD, баъзе кортҳои шабакавӣ, баъзе " +"кортҳои RAID, ва ғайра...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" дорои нармафзоре мебошад, ки дар баъзе кишварҳо ба сабаби патентҳои " +"нармафзор пахш карда намешавад." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Он инчунин дорои нармафзоре аз сохти нави \"%s\" бо қобилиятҳои иловагӣ " +"мебошад." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Агар хоҳед, метавонед медиаи иловагиро фаъол кунед." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Ин медиа навсозиҳои бастаҳоро барои медиаи \"%s\\” таъмин менамояд" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Дар ҳоли ҷустуҷӯи бастаҳои насбшуда..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Дар ҳоли ҷустуҷӯи бастаҳо барои такмил..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Дар ҳоли тозакунии бастаҳо пеш аз такмил..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Барои иҷозати такмили системаи шумо, бастаҳои зерин тоза карда мешаванд: %s\n" +"\n" +"\n" +"Шумо дар ҳақиқат мехоҳед, ки бастаҳои зеринро тоза намоед?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Хатои хониши файли %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Ном(ҳо)и диск(ҳо)и зерин иваз карда шуд(аанд):" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (номи собиқ: %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Шабака" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Лутфан, медиаро интихоб намоед" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Файл аллакай вуҷуд дорад. Онро аз нав сабт мекунед?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Иҷозат нест" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Номи NFS-и нодуруст" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Медиаи %s нодуруст аст" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Таҳия кардани аксҳои экран пеш аз қисмбандӣ ғайриимкон аст" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Аксҳои экран баъд аз насб дар %s дастрас мешаванд" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Насбкунӣ" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Танзимкунӣ" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Шумо инчунин бояд %s-ро формат кунед" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Барои кори баъзе сахтафзор дар компютери шумо драйверҳои “пулакӣ” лозиманд.\n" +"Шумо метавонед маълумотро дар бораи онҳо аз ин ҷо гиред: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Дар ҳоли фаъолсозии шабака" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Дар ҳоли ғайифаъолсозии шабака" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Лутфан, интизор шавед, файл бозёбӣ карда мешавад" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "медиаро илова карда наметавонад" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Нусхабардории баъзе бастаҳо ба диск барои истифодаи оянда" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Дар ҳоли нусхабардорӣ" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "бояд дошта бошад" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "Ҳатмӣ аст" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "хеле хуб" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "хуб" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "мумкин аст" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Дар ҳоли гирифтани маълумоти баста аз метаиттилооти XML..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Ягон иттилооти xml барои медиаи \"%s\\” вуҷуд надорад, танҳо натиҷаи қисмӣ " +"барои бастаи %s пайдо шуд" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Тафсилот нест" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Баъзе бастаҳои дархостшуда аз тарафи %s насб карда намешаванд:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Хатое ба вуҷуд омад:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Хатои ҷиддӣ ба вуҷуд омад: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Дигар напурсед" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d интиқоли насбкунӣ иҷро нашуд" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Насбкунии бастаҳо иҷро нашуд:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Компютери корӣ" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Компютери кории идорӣ" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Барномаҳои ҳуҷҷатнигорӣ: коркарди ҳуҷҷатҳои матнӣ (LibreOffice Writer, " +"Kword), ҷадвалҳои электронӣ (LibreOffice Calc, Kspread), тамошобини PDF ва " +"ғайра" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Компютери бозӣ" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Барномаҳои дилхушӣ: қаторравоқ, бозиҳои рӯи мизӣ, стратегия ва ғайра" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Компютери мултимедиа" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Барномаҳо барои бозӣ/коркарди овоз ва видео" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Компютери интернетӣ" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Маҷмӯи абзорҳо барои хондан ва фиристодани почта ва ахборот (mutt, tin..) ва " +"тамошо дар Интернет" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Компютери шабакавӣ (мизоҷ)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Мизоҷон барои протоколҳои гуногун, аз он ҷумла ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Абзорҳо барои осонсозии танзими компютери шумо" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Абзорҳои консолӣ" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Муҳаррирон, пардозгари фармонҳо, абзорҳои файлӣ, терминалҳо" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Барномарезӣ" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Китобхонаи барномарезии C ва C++, барномаҳо ва файлҳои дохилшаванда" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Ҳуҷҷатҳо" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Китобҳо ва дастурамалҳо барои Linux ва Нармафзори ройгон" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Манбаъи стандартии Linux. Дастгирии барномаҳои тарафҳои сеюм" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Сервери веб" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Нармафзори кори гурӯҳӣ" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Сервери Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Девори оташ/масиргузор" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Гузаргоҳи Интернетӣ" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Почта/Ахборот" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Сервери почтаи Postfix, сервери ахбороти Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Сервери директория" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Сервери FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Номи доменӣ ва сервери иттилооти шабакавӣ" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Сервери мубодилакунии файлҳо ва принтерҳо" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Сервери NFS, сервери Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Пойгоҳи иттилоотӣ" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL ва сервери пойгоҳи иттилоотии MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Почта" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Сервери почтаи Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL ё сервери пойгоҳи иттилоотии MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Сервери компютерии шабакавӣ" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Сервери NFS, сервери SMB, сервери Proxy, сервери ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Муҳити графикӣ" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Компютерии кории Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Муҳити мизи кории KDE (The K Desktop Environment), муҳити графикии асосӣ бо " +"маҷмӯи абзорҳои иловашуда" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Компютери кории GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "Муҳити графикӣ бо маҷмӯи барномаҳои корбарӣ ва абзорҳои мизи корӣ" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Муҳити графикии сабук бо маҷмӯи барномаҳои корбарӣ ва абзорҳои мизи корӣ" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Компютери кории MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Компютери кории Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Муҳити графикӣ дар асоси GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Мизи кории LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Бандари насли нави QT барои муҳити мизи кории сабук" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Муҳити графикии тезкори сабук бо пайгирии муайяншуда" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Мизи кории LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Муҳити графикии тезкори сабук" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Мизҳои кории графикии дигар" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Барномаи Window Maker, Fvwm ва ғайра" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Барномаҳои корбарӣ" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Сервери SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Танзими дурдасти сервер тавассути Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Барномаҳои корбарии шабакавӣ/назоратӣ" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Абзорҳои назоратӣ, коркарди ҳисобҳо, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Устодҳои Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Устодҳо барои танзимкунии сервер" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Хатое ба вуҷуд омад, вале ман намедонам, чӣ тавр бояд ислоҳ карда шавад.\n" +"Мувофиқи таваккали худ давом диҳед." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Баъзе бастаҳои муҳим нодуруст насб карда шудаанд.\n" +"Эҳтимол аст, ки драйви cdrom ё ин ки cdrom-и шумо вайрон аст.\n" +"Кори cdrom-ро дар компютери омода ба воситаи фармони \"rpm -qpl media/main/*." +"rpm\\” санҷед\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Гузариш ба қадами `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Насбкунӣ %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "Мубодилаи байни унсурҳо тавассути <Tab>/<Alt-Tab>" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Сервери Xorg барои оғоз суръати суст дорад. Лутфан, интизор шавед..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Системаи шумо манбаъҳои кофӣ надорад. Баъзе мушкилиҳои насбкунии %s " +"метавонанд пайдо шаванд. Агар ягон мушкилӣ пайдо шавад, шумо метавонед " +"насбкунӣ дар реҷаи матнӣ кӯшиш кунед. Дар ин маврид,\n" +"ҳангоми роҳандозӣ тавассути CDROM тугмаи `F1'-ро пахш кунед ва ба реҷаи " +"матнӣ (text) гузаред." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Интихоби медиа" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Насб кардани мизи кории %s Plasma" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Насб кардани мизи кории %s GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Насбкунии фармоишӣ" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Мизи кории Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Мизи кории GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Мизи кории фармоишӣ" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Пешнамоиши мизи кории '%s'" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Барои дидани пешнамоиш дар сурати калонтар, ба тасвирҳо зер кунед" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Интихоби гурӯҳи бастаҳо" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Интихоби бастаҳои алоҳида" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Лағв кардани интихоби пурра" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Андозаи умумӣ: %d / %d МБ" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Версия: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Ҳаҷм: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d КБ\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Муҳиммӣ: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Шумо наметавонед, ки ин бастаро интиҳоб/лағв кунед:" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "ба сабаби мавҷуд набудани %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "ба сабаби номувофиқати %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "дар ҳоли коргузории %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "барои нигоҳ доштани %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Шумо ин бастаро интихоб карда наметавонед, зеро ки барои насб кардан он ҷой " +"кофӣ нест" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Бастаҳои зерин насб карда мешаванд" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Бастаҳои зерин тоза карда мешаванд" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ин бастаи зарур мебошад, лағви интихоби онро бекор карда намешавад" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" +"Шумо интихоби ин бастаи барномаҳоро рад карда наметавонед. Он аллакай насб " +"карда шудааст" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" +"Шумо интихоби ин бастаро бекор карда наметавонед. Он бояд такмил дода шавад." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Намоиш додани бастаҳои интихобшуда ба таври худкор" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Насб кардан" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Бор кардан/захира кардани интихоб" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Навсозии интихоби бастаҳо" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Насбкунии камин" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Идоракунии нармафзор" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Бастаҳоеро, ки мехоҳед насб кунед, интихоб намоед" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Дар ҳоли насбкунӣ" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Ягон тафсилот нест" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Вақти боқимонда:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(баҳодиҳӣ...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d баста" +msgstr[1] "%d баста" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Ҷамъбаст" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Танзим кардан" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "танзимнашуда" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Медиаи насбкунии зерин пайдо карда шуд.\n" +"Агар шумо хоҳед, ки баъзеи онҳоро истифода набаред, интихоби онҳоро лағв " +"кунед." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Шумо метавонед пеш аз оғози насб муҳтавои дискҳои CD-ро ба диски компютери " +"худ нусха бардоред.\n" +"Ҳамин тавр насб аз драйви диски компютерӣ идома дода мешавад ва баъд аз " +"насби пурра бастаҳо дар система дастрас мешаванд." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Нусхабардории ҳамаи дискҳои CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Хатое ба вуҷуд омад" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Лутфан, тарҳбандии клавиатураи худро интихоб кунед" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Рӯйхати пурраи клавиатураҳои дастрас:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Насбкунӣ/Тақмилдиҳӣ" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Шумо насб мекунед ё такмил медиҳед?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Насбкунӣ" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Такмилдиҳии %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Калиди рамзгузорӣ барои %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Бекор кардани насб, бозоғозии система" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Насби нав" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Такмилдиҳии насби пешакӣ (тавсия дода намешавад)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Насбкунанда муайян кард, ки системаи Linux-и насбшуда ба %s ба таври бехатар " +"такмил дода намешавад.\n" +"\n" +"Насбкунии нав бо имкони ивазкунии насби пешакӣ тавсия дода мешавад.\n" +"\n" +"Огоҳӣ: пеш аз интихоби \"Насби нав\", шумо бояд нусхаи эҳтиётии ҳамаи " +"маълумоти шахсии худ таҳия кунед." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Танзимкунии CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Cd-Rom-и зудро иваз кунед!\n" +"Лутфан, Cd-Rom-ро бо тамғаи \"%s\" ба драйв дарҷ карда, тугмаи ОК-ро пахш " +"намоед.\n" +"Агар шумо онро надошта бошед, тугмаи “Бекор кардан”-ро пахш карда, насбкунии " +"системаро аз драйви Cd-Rom лағв кунед." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Дар ҳоли ҷустуҷӯи бастаҳои дастрас..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Системаи шумо барои насбкунӣ ё такмилдиҳӣ фазои кофӣ надорад (%d МБ > %d МБ)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Лутфан, интихоби бастаро бор кунед ё захира намоед.\n" +"Ин формат ба файлҳои таҳияшудаи auto_install монанд аст." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Бор кардан" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Захира кардан" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Файли нодуруст" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Интихоби мизи корӣ" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" +"Шумо метавонед профили мизи кориро барои компютери кории худ интихоб намоед." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Андозаи интихобшуда аз фазои дастрас зиёд аст" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Навъи насбкунӣ" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Шумо ягон гурӯҳи бастаҳоро интихоб накардед.\n" +"Лутфан, насбкунии камини дилхоҳатонро интихоб намоед:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Бо воситаи X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Насб кардани бастаҳои тавсияшуда" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Бо ҳуҷҷатҳои асосӣ (тавсия дода мешавад!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Насбкунии камини ҳақиқӣ (алалхусус бе urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Омодасозии такмил..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Омодасозии насб" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Насбкунии бастаи %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Ҳангоми дархосткунии бастаҳо хатое ба вуҷуд омад:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Ба ҳар ҳол идома медиҳед?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Аз нав кӯшиш кардан" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Лағв кардани ин баста" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Лағв кардани ҳамаи бастаҳо аз медиаи \"%s\"" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Бозгашт ба медиа ва интихоби бастаҳо" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Ҳангоми насбкунии бастаи %s хатое ба вуҷуд омад." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Танзимкунии баъд аз насб" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Лутфан, мутмаин шавед, ки медиаи навсозии модулҳо дар драйви %s мебошад" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Нав кардан" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Акнун шумо барои танзим кардани медиаи онлайн имконият доред." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Ин амал барои насб кардани навсозиҳои амният иҷозат медиҳад." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Барои насб кардани ин медиа, шумо бояд ба Интернет пайваст шавед.\n" +"\n" +"Шумо мехоҳед, ки медиаи навсозиро танзим кунед?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Бастаҳои зерин насб карда мешаванд" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Такрор мекунед?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Иловакунии медиа иҷро нашуд" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Акнун шумо барои боргирӣ кардани бастаҳои навшуда имконият доред. Ин бастаҳо " +"баъд аз санаи барориши ин дистрибутив нав карда шудаанд. Онҳо метавонанд " +"ислоҳоти хатоҳо ва сатҳи амниятро дар бар гиранд.\n" +"\n" +"Барои боргирӣ кардани ин бастаҳо, шумо бояд ба Интернет пайваст шавед.\n" +"\n" +"Шумо мехоҳед, ки ин навсозиҳоро насб кунед?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s дар %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Сахтафзор" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Корти садо" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Интерфейси графикӣ" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Шабака ва Интернет" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Проксиҳо" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "танзимшуда" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Сатҳи амният" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Девори оташ" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "фаъол" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "ғайрифаъол" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Шумо сервери X-ро танзим накардед. Оё он ба шумо лозим аст?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Омодасозии оғози ибтидоии барнома..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Лутфан, интизор шавед, ин метавонад андак вақт гирад..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Дар ин сатҳи бехатарӣ, дастрасӣ ба файлҳо дар қисматҳои Windows танҳо ба " +"маъмур иҷозат дода мешавад." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Дискетаи холиро ба драйви %s дарҷ кунед" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Эҷодкунии дискетаи насбкунии худкор..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Баъзе қадамҳо иҷро карда нашуданд.\n" +"\n" +"Шумо мехоҳед, ки равандро ба анҷом расонед?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Табрик мекунем" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Бозоғозии система" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Забон" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Маҳаллисозӣ" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Иҷозатнома" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Муш" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Муайянкунии диски компютерӣ" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Синфи насбкунӣ" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Клавиатура" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Амният" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Қисмбандӣ" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Шаклбандӣ" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Интихоби бастаҳо" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Дар ҳоли насб" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Корбарон" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Боркунандаи роҳандозӣ" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Танзими X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Ҷамъбаст" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Хидматҳо" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Навсозиҳо" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Баромад" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL-и оина доред?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL бояд бо ftp:// ё http:// сар карда шавад" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Дар ҳоли пайваст бо вебсайти %s барои ба даст овардани рӯйхати оинаҳои " +#~ "дастрас..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Ҳангоми пайвастшавӣ бо вебсайти %s барои ба даст овардани рӯйхати оинаҳои " +#~ "дастрас хато ба миён омад" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Оинаро барои гирифтани бастаҳо интихоб намоед" diff --git a/perl-install/install/share/po/th.po b/perl-install/install/share/po/th.po new file mode 100644 index 000000000..4c13d92bd --- /dev/null +++ b/perl-install/install/share/po/th.po @@ -0,0 +1,1632 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Rockers <sumorock@hotmail.com>, 2015 +# Rockers <sumorock@hotmail.com>, 2015 +# Wachara Chinsettawong <wachara@yahoo.com>, 2001 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Thai (http://www.transifex.com/MageiaLinux/mageia/language/" +"th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "สารบัญ" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "กำลังหาแพ็คเก็จที่จะทำการอัพเกรด" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "มีปัญหากับการอ่านข้อมูลในไฟล์ %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "ระบบเครือข่าย" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "สิทธิการทำงานถูกปฎิเสท" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "ปรับแต่งค่า" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"hardware บางชนิดต้องการ driver พิเศษ\n" +"คุณสามารถหาข้อมูลได้จาก: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "ระบบเน็ตเวิร์กกำลังจะทำงาน" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "ระบบเน็ตเวิร์กกำลังจะหยุดทำงาน" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "ต้องมี" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "สำคัญ" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "ดีมาก" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "ดี" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "อาจจะ" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "ไม่มีคำอธิบายรายละเอียด" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "มีปัญหาเกิกขึ้น:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Workstation ที่ทำงาน" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Clients for different protocols including ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "เครืองมือที่ช่วยในการปรับแต่งเครื่องชองคุณให้ง่ายขึ้น" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "พัฒนาซอฟท์แวร์ (Development)" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "คู่มือ" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "ฐานข้อมูล" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "จดหมาย" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "การทำงานแบบกราฟฟิก" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Graphical Desktops อื่นๆ" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "อรรถประโยชน์" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"มีความผิดพลาดเกิดขึ้น แต่โปรแกรมไม่สามารถแก้ไขได้\n" +"หากทำงานต่ออาจเกิดความเสียหายได้" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"แพ็กเกจสำคัญบางอย่างไม่ได้ถูกติดตั้งอย่างเรียบร้อย\n" +"cdrom หรือ cdrom drive ของคุณอาจมีการเสียหาย\n" +"กรุณาตรวจสอบ cdrom ในเครื่องคอมพิวเตอร์ที่มีการติดตั้งแล้ว\n" +"โดยใช้ \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "เข้าสู่ขั้นตอน `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> ระหว่างตัวเลือก" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"เครื่องของคุณมีทรัพยากรค่อนข้างต่ำคุณอาจมีปัญหาติดตั้ง \n" +"%s ถ้าเป็นเช่นนั้น กรุณาทดลองติดตั้งแบบ text \n" +"กรุณากด F1 ขณะ boot จาก cdrom แล้วพิมพ์ text" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "เลือกกลุ่มแพ็คเก็จ" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Individual package selection" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "ขนาดรวม: %d / %d MB " + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "เวอร์ชัน:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "ขนาด:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "ความสำคัญ:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "คุณไม่สามารถเลือก/ไม่เลือกแพกเกจนี้" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "คุณไม่สามารถเลือก package นี้เนื่องจากคุณมีพื้นที่ไม่เพียงพอ" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "แพ็คเก็จเหล่านี้กำลังจะถูกติดตั้ง" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "แพ็คเก็จเหล่านี้กำลังจะถูกลบ" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "นี่คือแพกเกจที่ต้องติดตั้ง ไม่สามารถไม่เลือก" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "คุณไม่สามารถไม่เลือกแพกเกจนี้เพราะมันได้ถูกติดตั้งไปแล้ว" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "คุณไม่สามารถไม่เลือกแพกเกจนี้ มันจำเป็นที่จะต้องถูก upgrade" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "ติดตั้ง" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "การบริหารโปรแกรม" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "เลือกแพ็คเก็จที่คุณต้องการติดตั้ง" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "กำลังติดตั้ง" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "เวลาที่เหลือ:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "แพ็คเก็จ %d ชุด" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "รวมความ" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "การปรับแต่ง" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "มีปัญหาเกิดขึ้น" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "ติดตั้ง" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"เปลี่ยน CD-ROM\n" +"\n" +"กรุณาใส่ CD-ROM \"%s\" และกด OK\n" +"ถ้่าคุณไม่มี กรุณากด ยกเลิก (cancel) เพื่อหลีกเลี่ยงการติดตั้งจาก CD-ROM นี้" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "กำลังหาแพ็คเก็จที่มีอยู่" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "โหลด" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "บันทึก" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "กำลังเตรียมการติดตั้ง" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "กำลังติดตั้งแพ็คเก็จ %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "มีปัญหาการลำดับของแพ็คเก็จ:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "ทำงานต่อหรือไม่?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "การคอนฟิกหลังการติดตั้ง" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "อัพเดท" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "แพ็คเก็จเหล่านี้กำลังจะถูกติดตั้ง" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "เกิดข้อผิดพลาดขณะเพิ่มสื่อ" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s บน %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "ฮาร์ดแวร์" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Sound card" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "เน็ตเวิร์คกับอินเตอร์เน็ต" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "ระดับความปลอดภัย" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "ไม่ใช้งาน" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "ให้ใส่แผ่นฟล้อปปี้ลงในไดรว์ %s " + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "กำลังเตรียมการติดตั้งลงบน floppy" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"ขั้นตอนบางขั้นตอนไม่สมบูรณ์\n" +"\n" +"คุณต้องการออกจากการติดตั้งจริงๆหรือไม่?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "ยินดีด้วย" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "เลือกภาษาที่คุณใช้" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "สัญญาอนุญาต" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mouse" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "การตรวจหาฮาร์ดไดรว์" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "คีย์บอร์ด" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "ระบบความป้องกัน" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "กำลังติดตั้ง" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "ผู้ใช้" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "คอนฟิกระบบ X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "รวมความ" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "บริการ" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "เลิกทำงาน" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "เลือกมิลเรอร์ไซต์ที่จะใช้ในการดาวน์โหลดแพ็คเก็จ" diff --git a/perl-install/install/share/po/tl.po b/perl-install/install/share/po/tl.po new file mode 100644 index 000000000..007d9b0d3 --- /dev/null +++ b/perl-install/install/share/po/tl.po @@ -0,0 +1,1671 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Arys P. Deloso <arys@deloso.org>, 2004 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Tagalog (http://www.transifex.com/MageiaLinux/mageia/language/" +"tl/)\n" +"Language: tl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Directory" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Naghahanap ng mga package na naka-install..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Naghahanap ng mga package na i-a-upgrade..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Ang mga sumusunod na mga package ay tatanggalin upang ma-upgrade ang inyong " +"sistema: %s\n" +"\n" +"\n" +"Gusto ninyo ba talagang tanggalin ang mga package na ito?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "May error sa pagbabasa ng file na %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Network" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Pahintulot ipinagkaila" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Hindi makagawa ng mga screenshot bago mag-partisyon" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Ang mga screenshot ay magiging available matapos ang install sa %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Configuration" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Dapat ninyo ring i-format ang %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Ilang hardware sa inyong computer ay nangangailangan ng ``proprietary'' (may " +"nagmamay-ari) na driver para gumana.\n" +"Makakahanap kayo ng ilang inpormasyon tungkol sa kanila sa: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Ginagawang \"up\" ang network" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Ginagawang \"down\" ang network" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "dapat magkaroon" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "importante" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "masyadong mainam" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "mainam" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "baka sakali" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "May nangyaring fatal error: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d transaksyong pag-i-install ay nabigo" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Workstation" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Pang-opisina na Workstation" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Mga pang-opisinang program: mga wordprocessor (LibreOffice Writer, Kword), " +"mga spreadsheet (LibreOffice Calc, Kspread), mga pdf viewer, etc" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Pang-laro na istasyon" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Mga nakakalibang na program: arcade, mga board game, strategy, etc" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Pang-multimedia na istasyon" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Mga program na pang-play/edit ng tunog, musika at video" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Pang-internet na istasyon" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Kumpol ng mga kagamitang pangbasa at pangsulat ng mail at news (mutt, tin..) " +"at pang-browse ng Web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Network Computer (client)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Mga client para sa iba't-ibang mga protocol kasama ang ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Kagamitang pangpadali ng configuration ng inyong computer" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Kagamitang Pang-Console" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Mga editor, shell, file tool, terminal" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Paglinang (Development)" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "mga C at C++ development library, program at include file" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Dokumentasyon" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Mga Libro at Howto tungkol sa Linux at Free Software" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Suporta para sa mga third party application" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Web Server" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Server" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Firewall/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet gateway" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP Server" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS server, Samba server" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Database" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Mail" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix mail server" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL o MariaDB database server" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Network Computer server" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS server, SMB server, Proxy server, ssh server" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Graphical na Kapaligiran" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Ang K Desktop Environment, ang pinakabatayang graphical environment na may " +"koleksyon ng mga kasabay na kagamitan" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME Workstation" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Isang graphical environment na may kumpol ng mga user-friendly (madaling " +"gamitin) na application at kagamitang pang-desktop" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Ibang Mga Graphical Desktop" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH Server" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"May \"error\" na nangyari, pero hindi ko alam kung paano ayusin\n" +"ng maganda. Mapanganib magpatuloy." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Ilang importanteng mga package ay hindi na-install ng maayos.\n" +"May depekto ang inyong CD-ROM drive o ang inyong CD-ROM.\n" +"Suriin ang CD-ROM sa naka-install nang computer gamit ang \"rpm -qpl media/" +"main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Pumpasok sa hakbang na `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Pag-install ng %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> pagitan ng mga elemento" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Ang inyong sistema mababa sa kakayahan. Maaari kayong magkaproblema\n" +"sa pag-install ng %s. Kung mangyari ito, maaari ninyong subukan\n" +"ang \"text install\". Para dito, pindutin ang `F1' kapag nagbo-boot sa " +"CDROM,\n" +"at ipasok ang `text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Pagpili ng Pangkat ng mga Package" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Isa-isang pagpili ng package" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Di-nakapili Lahat" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Kabuuang laki: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Version: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Laki: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Kahalagahan: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Maaari ninyong piliin/di-piliin ang package na ito" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "dahil sa nawawalang %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "dahil sa hindi na-satisfy na %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "sinusubukang i-promote ang %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "para maitago ang %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Hindi ninyo maaaring piliin ang package na ito dahil walang sapat na puwang" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Ang mga sumusunod na package ay ii-install" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Ang mga sumusunod na package ay tatanggalin" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ito ay kinakailangang package, hindi ito maaring di-piliin" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Hindi ninyo maaaring di-piliin ang package na ito. Naka-install na ito" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" +"Hindi ninyong maaaring di-piliin ang package na ito. Dapat i-upgrade ito" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Ipakita kaagad ang mga napiling package" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "I-install" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Ina-update ang pagpili ng package" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Maliitang install" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Pangangasiwa ng Software" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Piliin ang mga package na gusto ninyong i-install" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Nag-i-install" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Walang detalye" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Kabuuan" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Configure" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "hindi na-configure" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "May \"error\" na nangyari" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Piliin ang inyong layout ng keyboard" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "I-install/I-upgrade" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Ito ba ay install o upgrade?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "I-install" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "I-pgrade ang %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Encryption key para sa %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Palitan ang inyong CD-ROM!\n" +"\n" +"Pakisuksok ang CD-ROM na may tatak na \"%s\" sa inyong drive at pindutin\n" +"ang Ok pagkatapos. Kung wala kayo nito, pindutin ang Cancel para iwasang\n" +"mag-install mula sa CD-ROM na ito." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Naghahanap ng mga available na package..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "I-save" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Ang piniling laki ay mas malaki sa available na puwang" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Uri ng install" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Wala pa kayong napiling pangkat ng mga package.\n" +"Pakipili ang maliitang pag-i-install na gusto ninyo:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "May X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "May pinakabatayang dokumento (inirerekomenda!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Talagang maliitang install (walang urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Inihahanda ang pag-i-install" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Ini-install ang package na %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "May error sa pagsasaayos ng mga package:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Magpatuloy pa rin?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Configuration matapos ang install" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Mga update" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Ang mga sumusunod na package ay ii-install" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Kabiguan kung nagdadagdag ng medium" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Mayroon kayo ngayong pagkakataon na i-download ang mga na-update na " +"package.\n" +"Ang mga package na ito ay na-update matapos mailabas ang distribusyon. " +"Maaari\n" +"silang maglaman ng mga ayos sa seguridad at \"bug\".\n" +"\n" +"Para i-download ang mga package na ito, kakailanganin ninyong magkaroon ng\n" +"gumaganang koneksyon sa Internet.\n" +"\n" +"Gusto ninyong i-install ang mga update ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s sa %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Hardware" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Sound card" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Graphical interface" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Network & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Mga Proxy" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "na-configure" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Level ng Seguridad" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Firewall" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "na-activate" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "na-disable" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"Hindi pa ninyo na-configure ang X. Sigurado kayong gusto ninyong gawin ito?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Sa level ng seguridad na ito, ang access sa mga file na nasa partisyon ng " +"Windows ay limitado sa tagapangasiwa." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Magsuksok ng blangkong floppy sa drive %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Lumilikha ng auto install floppy..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Ilang mga hakbang ay hindi natapos.\n" +"\n" +"Gusto ninyo ba talagang sumuko ngayon?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Maligayang bati" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "I-reboot" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Wika" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lisensiya" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Mouse" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Pagtitiktik ng hard disk drive" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Keyboard" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Seguridad" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Pagpartisyon" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Nag-i-install" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Users" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Bootloader" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "I-configure ang X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Kabuuan" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Mga serbisyo" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Mga update" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Exit" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Nakikipag-alam sa web site ng %s para makuha ang talaan ng mga available " +#~ "na mirror..." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Pumili ng mirror kung saan kukunin ang mga package" diff --git a/perl-install/install/share/po/tr.po b/perl-install/install/share/po/tr.po new file mode 100644 index 000000000..22f470bf8 --- /dev/null +++ b/perl-install/install/share/po/tr.po @@ -0,0 +1,1715 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Atilla ÖNTAŞ <atilla_ontas@hotmail.com>, 2008-2016 +# tarakbumba <tarakbumba@gmail.com>, 2013-2014,2016 +# tarakbumba <tarakbumba@gmail.com>, 2013 +# Erçin EKER <erc.caldera@gmx.net>, 2003 +# Fırat Kutlu <firatkutlu@gmail.com>, 2014 +# Muha Aliss <muhaaliss@gmail.com>, 2021 +# Serdar Sağlam <teknomobil@msn.com>, 2019 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2021-02-20 01:38+0000\n" +"Last-Translator: Muha Aliss <muhaaliss@gmail.com>\n" +"Language-Team: Turkish (http://www.transifex.com/MageiaLinux/mageia/language/" +"tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Bize Katılın!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Sizin olsun!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Sizin seçiminiz!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Ofis araçları" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Ev eğlencesi" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Çocuklar için" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Aile için!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Geliştiriciler için!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Teşekkürler!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Özgür olun!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Başka tamamlayıcı veri kaynağınız var mı?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Şu veri kaynağı bulundu ve kurulumda kullanılacak: %s\n" +"\n" +"\n" +"Yapılandırılacak tamamlayıcı bir veri kaynağınız var mı?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Ağ (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Ağ (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Ağ (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS kurulumu" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "NFS kaynağı için bir sunucu adı ve dizini giriniz." + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Makine adı yok" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Dizin \"/\" ile başlamalıdır." + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS bağı için sunucu adı?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Dizin" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Tamamlayıcı" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Bu yansı üzerinde paket listesi bulunamadı. Yerinin doğru olduğundan emin " +"olun." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Makinenizdeki bazı donanımların özgür yazılım sürücülerinin çalışması için, " +"özgür olmayan üretici yazılımına gereksinimi vardır." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "\"%s\" etkinleştirmelisiniz" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" sistemlerin çeşitli parçalarını ve uygulamalarını içerir" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" özgür olmayan yazılım içerir.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Belirli aygıtların çalışması için gereken üretici yazılımlarını da içerir " +"(örn: bazı ATI/AMD ekran kartları, bazı ağ kartları, bazı RAID kartları, ...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"\"%s\" yazılım patentlerinden dolayı her ülkede dağıtılamayan yazılım içerir." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "İlave yeteneklerle yenilenen \"%s\" adresinden yazılım da içerir." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "İsterseniz burada daha fazla ortam etkinleştirebilirsiniz." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "Bu araç \"%s\" ortamı için paket güncellemelerini sağlar" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Kurulu paketler inceleniyor..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Yükseltilecek paketler bulunuyor" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Yükseltmeye hazırlık olmak üzere paketler kaldırılıyor..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Sisteminizi yükseltmek için şu paketler kaldırılacak: %s\n" +"\n" +"\n" +"Bu paketleri kaldırmak istiyor musunuz?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%s dosyası okunurken hata oluştu" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Şu diskler yeniden adlandırılacak:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (eski adı %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Ağ" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Lütfen bir medya seçin" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Bu dosya zaten var. Üzerine yazılsın mı?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "İzin verilmedi" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Kötü NFS adı" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Kötü veri kaynağı %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Disk bölümlemesi yapılmadan ekran örnekleri alınamaz." + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Ekran örnekleri %s kurulduktan sonra mümkün olacak" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Kurulum" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Yapılandırma" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Ayrıca %s biçemlendirilmelidir" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Bilgisayarınızdaki bazı donanımlar çalışmak için \"tescilli\" sürücüler\n" +"gerektiriyor. Bunlar hakkında bilgi bulabileceğiniz adres: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Ağ bağlanıyor" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Ağ ayrılıyor" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Dosya alınıyor. Lütfen bekleyin" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "ortam eklenemiyor" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Bazı paketler sonradan kullanım için disklere kopyalanıyor" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Kopyalama sürüyor" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "zorunlu" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "önemli" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "çok hoş" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "güzel" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "belki" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "XML meta-data'dan paket bilgileri alınıyor..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"\"%s\" ortamı için xml bilgisi yok, yalnız %s paketi için kısmi bir sonuç," + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Tanımlanmamış" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"%s tarafından istenen bazı paketler kurulamaz:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Bir hata oluştu:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Bir ölümcül hata oluştu: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Yeniden sorma" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d kurulum yönergesi başarısız oldu" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Paket kurulumu başarısız oldu:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "İş istasyonu" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Ofis iş istasyonu" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Ofis programları: kelime işlemciler (LibreOffice Writer, Kword), LibreOffice " +"Calc, Kspread, pdf göstericiler, vb.." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Oyun Konsolu" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Eğlence programları: kart oyunları, taktik ve strateji, vb.." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Çoklu ortam konsolu" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Ses ve video çalma/düzenleme uygulamaları" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet konsolu" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"E-posta alışverişi ve haber grubu istemci programları (pine, mutt, tin..) ve " +"web istemcileri " + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Ağ Makinası (client)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "ssh içeren diğer ağ öğeleri için protokoller" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Sisteminizin ayarlarını düzenleyecek uygulama" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsol Araçları" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Metin düzenleyiciler, kabuklar, dosya araçları, terminaller" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Geliştirme" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C ve C++ geliştirme kütüphaneleri, programlar ve include dosyaları" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Belgeler" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Serbest Yazılım ve Linux üzerine Kitaplar ve Nasıl belgeleri" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standartları Temeli. Üçüncü parti uygulama desteği" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Web Sunucu" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Grup" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab Sunucu" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Güvenlik Kalkanı/Router" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet ağ geçidi" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Posta/Haber" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix posta sunucu, Inn haber sunucu" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Dizin Sunucusu" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP sunucusu" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Alan adı ve Ağ Bilgileri Sunucusu" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Dosya ve Yazdırma Paylaşım Sunucusu" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS sunucu, Samba sunucu" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Veritabanı" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL veya MariaDB veritabanı sunucusu" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache ve Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Posta" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix posta sunucu" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL veya MariaDB veritabanı sunucusu" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Ağ Makinası sunucusu" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS sunucusu, SMB sunucusu, Vekil Sunucu, ssh Sunucu" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafik Ortamı" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma İş istasyonu" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "KDE Masaüstü Ortamı, temel grafik ortamla birlikte birleşik araçlar" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME İş istasyonu" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Kullanıcı dostu uygulamalar ve masaüstü araçlarına sahip görsel bir ortam " + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce İş İstasyonu" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Kullanıcı dostu uygulamalar ve masaüstü araçlarına sahip hafif bir görsel " +"bir ortam " + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE İş istasyonu" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon İş istasyonu" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "GNOME temelli bir grafik ortamı" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt Masaüstü" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "Yeni nesil QT ile derlenmiş hafif masaüstü ortamı" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment Masaüstü" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "Bunlara özgülenmiş hızlı ve hafif bir görsel ortam" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE Masaüstü" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Hafif ve hızlı bir grafiksel ortam" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Diğer Görsel Masaüstleri" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, v.b." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Araçlar" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH Sunucu" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin Uzak Yapılandırma Sunucusu" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Ağ Araçları/İzleme" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "İzleme araçları, işlem sayımı, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia Sihirbazları" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Sunucuyu yapılandırmak için Sihirbazlar" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Bir hata oluştu, ancak sebebi saptanamadı.\n" +"Devam edebilirsiniz, ama risk size ait!" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Bazı paketlerin kurulumu doğru olarak tamamlanmadı.\n" +"CDROM sürücünüz sorunlu ya da CD'niz bozuk olabilir.\n" +"Linux kurulu başka bir makinada \"rpm -qpl media/main/*.rpm\"\n" +"komutuyla CD'nizi kontrol edebilirsiniz.\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "`%s' adımına başlanıyor\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s Kurulum %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "gezinmek için <Tab>/<Alt-Tab>" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg sunucusunun başlaması yavaş. Lütfen bekleyin..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Sistem kaynaklarınız kısıtlı. %s'yi kurarken sorunlarınız\n" +"olabilir. Bu durum oluşursa, metin tabanlı kurulumu deneyebilirsiniz.\n" +"Bunun için CDROM'dan açtıktan sonra `F1'e basın, ve komut satırına\n" +"`text' yazın." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Paket Grubu Seçimi" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "%s Plasma Masaüstünü Kur" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "%s GNOME Masaüstünü Kur" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Kişisel kurulum" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma Masaüstü" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME Masaüstü" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Kişisel Masaüstü" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "'%s' masaüstünün ön izlemesini burada görebilirsiniz." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Daha büyük ön izlemeler görebilmek için resim üzerine tıklayın" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Paket Grubu Seçimi" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Tek tek paket seçimi" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Tümünü Seçimden Çıkar" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Toplam boyut: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Sürüm: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Boyut: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Önem: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Bu paket seçimlik değildir" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s paketinin kayıplığından" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "%s' den dolayı yetersiz" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s yükseltmesi deneniyor" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s'i korumak için" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Yeterli yeriniz kalmadığından bu paketi seçemezsiniz" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Aşağıdaki paketler kurulacaktır" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Aşağıdaki paketler sistemden silinecektir" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Bu zorunlu bir pakettir, seçmemek olmaz" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Bu paketi seçimlerinizden çıkaramazsınız. Zaten kurulmuş." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Bu paketi seçimlerinizden çıkaramazsınız. Yükseltilmek zorunda" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Kendiliğinden seçilen paketleri göster" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Kur" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Seçimi kaydet/yükle" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Paket seçimini güncelleniyor" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Hiyerarşik ve düz paket listesi arasında geçiş yapın" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "En ufak kurulum" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Yazılım Yöneticisi" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Kurmak istediğiniz paketleri seçin" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Kuruluyor" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Ayrıntısız" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Kalan süre :" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(tahminen...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d adet paket" +msgstr[1] "%d adet paket" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Özet" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Yapılandır" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "yapılandırılmamış" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Şu kurulum medyası bulundu.\n" +"Bu bazılarını geçmek isterseniz, şimdi seçimden çıkarabilirsiniz." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Kurulumdan önce CD'lerin içeriğini sabit diskinize kopyalayabilirsiniz.\n" +"Sabit diskten kuruluma devam edilecek ve paketler sistem tamamen " +"kurulduğunda da hazır olacaktır." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "CD'lerin tamamını kopyala" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Bir hata oluştu" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Lütfen klavye düzeninizi seçiniz" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Mevcut tüm klavye düzenlerinin listesi:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Kur/Yükselt" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Bu bir yükleme mi yoksa yükseltme mi ?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Kurulum" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s Yükselt" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s için Parola" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Kurulumu iptal et, sistemi yeniden başlat" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Yeni Kurulum" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Önceki kurulumu güncelle (önerilmez)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Kurulum aracı, halihazırda kurulu olan Mageia sisteminizin güvenli bir\n" +"biçimde %s sistemine yükseltilemeyeceğini algıladı.\n" +"\n" +"Önceki kurulumunuzun yerini alacak yeni bir kurulum önerilir.\n" +"\n" +"Uyarı: \"Yeni Kurulum\"u seçmeden önce tüm kişisel verilerinizi " +"yedeklemeniz\n" +"önerilir." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "CD/DVD Yapılandırılıyor" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Cd-Rom'u değiştirin!\n" +"\n" +"\"%s\" etiketli Cd-Rom'u sürücüye takın ve TAMAM'a basın.\n" +"Eğer Cd-Rom elinizde yoksa bu Cd-Rom'dan kurmamak için VAZGEÇ'e basın." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Mevcut paketler taranıyor" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Sisteminizde kurulum veya yükseltme için yeterli alan yok (% dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Lütfen paket seçimini yükle veya kaydete tıklayınız.\n" +"Otomatik kurulum dosyaları ile aynı biçemde oluşturulacaktır." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Yükle" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Kaydet" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Dosya hatalı" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Masaüstü Seçimi" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "İş istasyonu masaüstü profili seçebilirsiniz." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Seçilen boyut boş disk alanından daha büyük" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Kurulum türü" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Seçilmiş bir paket grubu yok\n" +"Lütfen isteğinize uyan ve en az yer kaplayacak kurulumu seçin:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X ile" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Önerilen paketleri kur" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Temel belgeler olsun (önerilir!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Gerçekten en küçük kurulum (özellikle urpmi yok)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Yükseltme hazırlanıyor..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Kurulum hazırlanıyor" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s paketi kuruluyor" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Paketler düzenlenirken bir hata oluştu:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Yine de devam edilsin mi?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Yeniden Dene" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Bu paketi geç" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "\"%s\" medyasından tüm paketleri geç." + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Medya ve paket seçimine geri dön." + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Paket %s kurulurken bir hata oluştu." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Kurulum sonrası yapılandırma" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Lütfen Update Module medyasının %s sürcüsünde olduğuna emin olun" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Güncellemeler" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Şimdi çevrimiçi ortam ayarlama fırsatınız var." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Bu sayede güvenlik güncellemelerini edinebileceksiniz." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Bu ortamları ayarlamak için çalışan bir İnternet bağlanısına \n" +"ihtiyacınız var.\n" +"\n" +"Güncelleme ortamını ayarlamak istiyor musunuz?" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Aşağıdaki paketler kurulacaktır" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Yeniden dene?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Ortam eklenirken hata oluştu" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Şu anda güncellenmiş paketleri indirme fırsatınız var. Bu paketler\n" +"dağıtımın çıkış tarihinden sonra çıkan güncellemeleri içermektedir.\n" +"Bu güncellemeler önemli hata düzeltmeleri ve güvenlik çözümleri\n" +"içeriyor olabilir.\n" +"\n" +"[Güncelleme indirmenizi tavsiye ediyoruz]\n" +"\n" +"Bahsi geçen güncellemeleri indirebilmek için çalışan bir internet \n" +"bağlantısına ihtiyacınız var.\n" +"\n" +"Güncellemeleri kurmak istiyor musunuz ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s üstündeki %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Donanım" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Ses Kartı" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafiksel arabirim" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Ağ & İnternet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Vekil Sunucular" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "yapılandırıldı" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Güvenlik Seviyesi" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Güvenlik Duvarı" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "etkinleştirilmiş" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "pasifleştirilmiş" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "X'i yapılandırmadınız. Bunu yapmak istediğinizden emin misiniz?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Birincil başlangıç uygulaması hazırlanıyor..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Sabredin, bu biraz zaman alabilir..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Bu güvenlik seviyesinde, Windows bölümündeki dosyalara erişim yönetici " +"lehine kısıtlanmıştır." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "%s sürücüsüne boş bir disket yerleştirin" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Otomatik kurulum disketi hazırlanıyor" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Bazı adımlar tamamlanmadı.\n" +"\n" +"Gerçekten çıkmak istiyormusunuz?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Tebrikler" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Yeniden başlat" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Dil" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Yerelleştirme" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Lisans" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Fare" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Sabit disk algılaması" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Kurulum sınıfı" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Klavye" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Güvenlik" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Bölümlendirme" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Biçimlendirme" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Paketler seçiliyor" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Kuruluyor" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Kullanıcılar" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Önyükleyici" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X Yapılandırması" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Özet" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Hizmetler" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Güncellemeler" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Çıkış" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Yansının URL bağlantı adresi?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "URL bağlantı adresi ftp:// veya http:// ile başlamak zorundadır." + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "Yansı adreslerini almak için %s web sayfasına bağlantı kuruluyor..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Yansı adreslerini almak için %s web sayfasına bağlantı kurma başarısız" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Paketleri alacağınız bir yansı adresi seçiniz" diff --git a/perl-install/install/share/po/uk.po b/perl-install/install/share/po/uk.po new file mode 100644 index 000000000..1480930de --- /dev/null +++ b/perl-install/install/share/po/uk.po @@ -0,0 +1,1737 @@ +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Yuri Chornoivan <yurchor@ukr.net>, 2011-2016,2018-2019. +# Yuri Chornoivan <yurchor@ukr.net>, 2019, 2020, 2022. +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2022-11-21 23:25+0200\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Ukrainian <kde-i18n-uk@kde.org>\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11" +" ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100" +" > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n %" +" 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" +"X-Generator: Lokalize 20.12.0\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "Долучайтеся до нас!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "Підлаштуйте систему під себе!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "Вибір за вами!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "Офісні інструменти" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "Домашня розважальна система" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "Для дітей" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Для сім’ї!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Для розробників!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Дякуємо!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "Будьте вільними!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Чи маєте ви доступ до вказаних нижче додаткових носіїв?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Впродовж встановлення знайдено і буде використано наступне джерело: %s.\n" +"\n" +"\n" +"Чи маєте ви диск підтримки для налаштування?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Мережа (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Мережа (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Мережа (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Встановлення NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Введіть назву машини або теку з носієм NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Немає назви машини" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Назва каталогу має починатися з «/»" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "Назва комп'ютера для монтування NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Каталог" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Додатковий" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"На цьому дзеркалі не вдалося знайти перелік пакунків. Переконайтеся, що його " +"розташування вказано правильно." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core Release" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted Release" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree Release" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" +"Для роботи частини обладнання на вашому комп’ютері слід встановити " +"мікропрограми з закритим кодом, потрібні для роботи драйверів з відкритим " +"кодом." + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "Вам слід уможливити встановлення зі сховища «%s»" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" +"У сховищі «%s» містяться різноманітні частини операційної системи та її " +"програм" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" +"У сховищі «%s» містяться пакунки з програмним забезпеченням, яке не є " +"вільним.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"Там також мітяться пакунки з мікрокодом, потрібним для роботи деяких " +"пристроїв (наприклад деяких відеокарток ATI/AMD, деяких мережевих карток, " +"деяких карток RAID…)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" +"У сховищі «%s» містяться пакунки з програмним забезпеченням, яке не можна " +"вільно поширювати у деяких країнах через порушення патентних прав на це " +"програмне забезпечення." + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" +"Також у сховищі «%s» містяться пакунки, які зібрано з додатковими " +"можливостями, використання яких обмежується патентним законодавством." + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "Тут ви можете увімкнути додаткові сховища, якщо це вам потрібно." + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "У цьому сховищі містяться оновлення пакунків зі сховища «%s»" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Переглядається список вже встановлених пакунків…" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Шукаємо пакунки для поновлення…" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Вилучаємо пакунків перед поновленням…" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Наступні пакунки будуть вилучені, щоб забезпечити поновлення\n" +"вашої системи: %s\n" +"\n" +"\n" +"Ви справді хочете вилучити ці пакунки?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Помилка при читанні файла %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Назву наступних дисків було змінено:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (попередня назва %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Мережа" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Будь ласка, виберіть носій" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Файл вже існує. Перезаписати його?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Доступ заборонено" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Неправильна назва NFS" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Пошкоджений носій %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Не можна робити знімки екрана перед розбиттям на розділи" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Знімки екрана стануть можливими після встановлення до %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Встановлення" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Налаштовування" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Вам потрібно також відформатувати %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Деякі з апаратних засобів на вашому комп'ютері вимагають драйверів\n" +"фірм-виробників для того, щоб працювати правильно. \n" +"\n" +"Ви можете знайти потрібну інформацію про них на сторінці %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Вмикаю мережу" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Вимикаю мережу" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Зачекайте, перевіряється файл" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "неможливо додати носій" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Копіювання деяких пакунків на диски для пізнішого використання" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Триває копіювання" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "повинен мати" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "важливий" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "дуже гарний" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "гарно" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "можливо" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "Отримання даних щодо пакунків з метаданих у форматі XML…" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Для джерела «%s» немає xml-info. Отримано лише частковий результат для " +"пакунка %s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Немає опису" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Деякі пакунки, необхідні для варіанта %s, неможливо встановити:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Сталася помилка:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Сталася невиправна помилка: %s" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Більше не питати" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d запит на встановлення завершився невдало" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Встановлення пакунка невдале:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Робоча станція" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Офісна робоча станція" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Програми для офісу: текстові процесори (LibreOffice Writer, Kword), " +"електронні таблиці (LibreOffice Calc, Kspread), переглядачі файлів PDF, тощо" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Ігрова станція" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Програми для розваг: ігри-перегони, ігри на дошці, стратегічні, тощо" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Мультимедійна станція" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Звукові та відео програвачі та редактори" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Станція для Інтернету" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Набір засобів для читання та передавання електронної пошти та груп новин " +"(pine, mutt, tin…), а також для перегляду сторінок інтернету" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Мережевий комп'ютер (клієнт)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Клієнти для різних протоколів (ssh включно)" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Засоби для полегшення налаштування комп'ютера" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Засоби для консолі" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Редактори, командні оболонки, файлові засоби та термінали" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Розробка" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Бібліотеки для програмування в C, C++, програми та файли include" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Документація" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Книжки та поради з Linux та вільного програмного забезпечення" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Стандартна база Linux. Підтримка програм сторонніх виробників" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Веб-сервер" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Групова робота" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Сервер Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Захисний шлюз/Маршрутизатор" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Інтернет-шлюз" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Пошта/Новини" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Поштовий сервер postfix, сервер новин Inn" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Сервер тек" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Сервер FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Сервер назв домену і мережевий інформаційний сервер" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Сервер доступу до файлів і друкарок" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Сервер NFS, сервер Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "База даних" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Сервери баз даних PostgreSQL і MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Тенета/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Пошта" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Поштовий сервер postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Сервери баз даних PostgreSQL або MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Мережевий комп'ютер (сервер)" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Сервер NFS, сервер SMB, проксі-сервер, сервер ssh" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Графічне середовище" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Робоча станція з Плазмою" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"Робоче середовище K (KDE) — основне графічне середовище з набором допоміжних " +"засобів" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Робоча станція Gnome" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Графічне середовище з дружнім інтерфейсом та програмами, засоби для стільниці" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Робоча станція Xfce" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Полегшене графічне середовище з дружнім інтерфейсом та програмами, засоби " +"для стільниці" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Робоча станція MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Робоча станція Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Графічне середовище на основі GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Стільниця LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" +"Нова версія із портуванням на Qt невибагливого до ресурсів стільничного " +"середовища" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Стільниця Enlightenment" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" +"Швидке, невибагливе до ресурсів графічне середовище з відданими прихильниками" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Стільниця LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "Швидке, невибагливе до ресурсів графічне середовище" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Інші графічні стільниці" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, тощо" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Інструменти" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Сервер SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Сервер віддаленого налаштування Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Мережеві інструменти/Слідкування за мережею" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Інструменти для слідкування, облік процесів, tcpdump, nmap…" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Помічники Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Помічники для налаштування сервера" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Сталася помилка, але спосіб належного усування її наслідків невідомий.\n" +"Ви можете ризикнути і продовжити встановлення." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Деякі важливі пакунки не вдалося правильно встановити. Ваш\n" +"компакт-диск або пристрій для його читання пошкоджено.\n" +"Перевірте компакт-диск командою \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Починається крок «%s»\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Встановлення %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> між елементами" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Сервер Xorg стартує повільно. Зачекайте…" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Ваша система не є достатньо потужною. У вас можуть виникнути проблеми\n" +"зі встановленням %s. Якщо такі проблеми виникнуть, спробуйте встановити\n" +"систему у текстовому режимі. Щоб зробити це, натисніть F1 під час " +"завантаження\n" +"з компакт-диска, а потім введіть «text»." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Вибір носія" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "Встановити робочу станцію %s із Плазмою KDE" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "Встановити робочу станцію %s GNOME" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Вибіркове встановлення" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Стільниця Плазми" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Стільниця GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Нетипова стільниця" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Попередній перегляд стільниці «%s»." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Натисніть на зображення, щоб побачити більший розмір" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Вибір груп пакунків" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Індивідуальний вибір пакунків" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Скасувати весь вибір" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Загальний розмір: %d / %d МБ" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Версія: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Розмір: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d кБ\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Важливість: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Ви не можете вибрати або скасувати вибір цього пакунка." + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "через відсутність %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "через незадоволеність %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "намагаємося задіяти %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "щоб залишити %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Ви не можете вибрати цей пакунок, бо для його встановлення не залишилося " +"достатньо вільного місця." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Ці пакунки буде встановлено" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Наступні пакунки буде вилучено" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Цей пакунок необхідний, його вибір не можна скасовувати" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Вибір цього пакунка не можна скасовувати. Його вже встановлено." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Вибір цього пакунка не можна скасовувати. Його слід поновити." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Показувати автоматично вибрані пакунки" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Встановлення" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Завантажити/зберегти позначене" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Поновлення вибору пакунків" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "Перемкнутися між ієрархічним і плоским списками пакунків" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Мінімальне встановлення" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Менеджер програм" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Виберіть пакунки, які ви хочете встановити" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Встановлення" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Без подробиць" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Залишилося часу:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(наближене обчислення…)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d пакунок" +msgstr[1] "%d пакунки" +msgstr[2] "%d пакунків" +msgstr[3] "%d пакунків" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Підсумки" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Налаштувати" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "не налаштовано" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Було знайдено наступні носії встановлення.\n" +"Якщо ви не хочете використовувати деякі з них, зніміть з них позначку вибору." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"У вас є можливість перед початком встановлення скопіювати вміст компакт-" +"дисків на твердий диск.\n" +"Після цього встановлення продовжиться з твердого диска і пакунки залишаться " +"доступними після повного встановлення системи." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Копіювати компакт-диски повністю." + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Сталася помилка" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Будь ласка, виберіть розкладку клавіатури" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Тут наведено повний список можливих мап клавіатури:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Встановити/Поновити" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Це встановлення чи поновлення?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Встановлення" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Поновити %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Ключ шифрування для %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Припинити встановлення, перезавантажити систему." + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Нове встановлення" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Поновити попереднє встановлення (не рекомендується)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"Програма для встановлення виявила, що раніше встановлена система\n" +"Mageia Linux не може бути безпечно поновлена до %s.\n" +"\n" +"Рекомендується виконати нове встановлення системи, яке замінить попереднє.\n" +"\n" +"Попередження: вам слід зробити резервну копію особистих даних\n" +"перед тим, як виберете «Нове встановлення»." + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "КД/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Налаштування CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Змініть компакт-диск!\n" +"Будь ласка, вставте компакт-диск з міткою «%s» у пристрій і\n" +"натисніть «Гаразд».\n" +"Якщо ви не маєте такого диска, натисніть Скасувати, щоб не\n" +"встановлювати з цього диска." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Шукаю наявні пакунки…" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"У вашій системі не залишилося достатньо місця для встановлення або " +"поновлення (%dМб > %dМб)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Будь ласка, виберіть, завантажити чи записати вибір пакунків.\n" +"Формат такий самий, як для файлів auto_install." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Завантаження" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Зберегти" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Поганий файл" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Плазма" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Вибір стільниці" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Ви можете вибрати профіль стільниці робочої станції." + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Вибраний розмір більший за наявний " + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Тип встановлення" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Ви не вказали жодної групи пакунків.\n" +"Будь ласка, вкажіть мінімальний варіант встановлення:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Разом з Х" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Встановлювати запропоновані пакунки" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "З основною документацією (рекомендуємо!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Насправді мінімальне встановлення (навіть без urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Готуємося до оновлення…" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Підготовка встановлення" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Встановлюється пакунок %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Сталася помилка під час сортування пакунків: " + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Все-таки продовжувати?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Ще раз" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Пропустити цей пакунок" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Пропустити усі пакунки з носія «%s»" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Повернутися до вибору носіїв і пакунків" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Сталася помилка під час встановлення пакунка %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Налаштування після встановлення" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Переконайтеся, чи джерело Update Modules знаходиться в носії %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Поновлення" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "Тепер ви можете налаштувати мережеві сховища пакунків." + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Це надає змогу встановлювати оновлення безпеки." + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"Для налаштовування сховищ пакунків вам знадобиться працездатне \n" +"інтернет-з’єднання.\n" +"\n" +"Хочете налаштувати сховище пакунків для оновлення?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "Не вдалося встановити цей засіб отримання даних" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Повторити?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Помилка під час спроби додавання носія" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Зараз ви маєте можливість звантажити поновлені пакунки. Ці пакунки\n" +"було поновлено після виходу дистрибутива. Вони можуть містити\n" +"виправлення безпеки або помилок.\n" +"\n" +"Щоб звантажити ці пакунки, вам слід мати працездатне з'єднання з\n" +"Інтернетом.\n" +"\n" +"Ви хочете встановити ці поновлення?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s на %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Обладнання" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Звукова картка" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Графічний інтерфейс" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Мережа та Інтернет" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Проксі" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "налаштовано" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Рівень безпеки" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Захисний шлюз" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "увімкнено" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "вимкнено" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Ви не налаштувати X. Ви впевнені, що дійсно цього хочете?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Приготування початкової програми запуску…" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Зачекайте, це може тривати довго…" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"На цьому рівні безпеки доступ до файлів на розділі Windows дозволений тільки " +"адміністратору." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Вставте чисту дискету в дисковод %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Створення дискети для автоматичного встановлення…" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Деякі кроки не завершені.\n" +"\n" +"Ви дійсно хочете припинити зараз?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Вітання" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Перезавантажити" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Мова" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Локалізація" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Ліцензія" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Миша" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Визначення твердого диска" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Тип встановлення" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Клавіатура" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Безпека" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Розбиття на розділи" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Форматування" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Вибір пакунків" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Встановлення" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Користувачі" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Завантажувач" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Налаштувати X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Підсумки" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Служби" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Поновлення" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Вихід" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Посилання на дзеркало?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Посилання має починатися з ftp:// або http://" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Встановлення зв’язку з веб-сайтом %s для отримання списку доступних " +#~ "дзеркал…" + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Не вдалося встановити зв’язок з веб-сайтом %s для отримання списку " +#~ "доступних дзеркал" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Виберіть сервер, з якого звантажити пакунки" diff --git a/perl-install/install/share/po/uz.po b/perl-install/install/share/po/uz.po new file mode 100644 index 000000000..97766fb79 --- /dev/null +++ b/perl-install/install/share/po/uz.po @@ -0,0 +1,1697 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Behzod Saidov <behzodsaidov@gmail.com>, 2007 +# Mashrab Kuvatov <kmashrab@uni-bremen.de>, 2003-2004,2006-2008 +# Нурали Абдурахмонов <mavnur@gmail.com>, 2006,2009-2010 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Uzbek (http://www.transifex.com/MageiaLinux/mageia/language/" +"uz/)\n" +"Language: uz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Sizda qoʻshimcha kompakt-disk bormi?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Oʻrnatish davomida quyidagi manbadan foydalaniladi: %s.\n" +"\n" +"\n" +"Moslanishi kerak boʻlgan qoʻshimcha oʻrnatish manbasi bormi?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Tarmoq (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Tarmoq (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Tarmoq (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS orqali oʻrnatish" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "NFS toʻplamining kompyuter nomini va direktoriyani kiriting" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Kompyuterning nomi koʻrsatilmagan" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Direktoriya \"/\" belgi bilan boshlashi kerak" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS serverining xost nomi" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Direktoriya" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Qoʻshimcha" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Oynada paketlar roʻyxatini topib boʻlmadi. Manzil (URL) toʻgʻri " +"koʻrsatilganligini tekshiring." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Allaqachon oʻrnatilgan paketlar qidirilmoqda..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Yangilash uchun paketlar qidirilmoqda..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Yangilashdan avval paketlar olib tashlanmoqda..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Tizimni yangilash uchun quyidagi paketlar oʻchiriladi: %s\n" +"\n" +"\n" +"Davom etishni istaysizmi?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%s faylini oʻqishda xato roʻy berdi" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Quyidagi disk(lar)ning nomi oʻzgartirildi:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (oldingi nomi %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Tarmoq" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Iltimos toʻplamni tanlang" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Fayl allaqachon mavjud. Uni almashtirishni istaysizmi?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Ruxsat yoʻq" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "NFS nomi notoʻgʻri" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Notoʻgʻri toʻplam %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Skrinshotlarni diskni boʻlishdan avval olib boʻlmaydi" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" +"Oʻrnatish tugaganidan keyin skrinshotlarni quyidagi joydan topish mumkin: %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Oʻrnatish" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Moslash" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Siz %s'ni ham format qilishingiz kerak" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Kompyuterning baʼzi asbob-uskunasi erkin boʻlmagan drayverni talab qiladi.\n" +"Ular haqida baʼzi maʼlumotni quyidagi joydan olsa boʻladi: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Tarmoq ishga tushirilmoqda" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Tarmoq oʻchirilmoqda" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Iltimos kutib turing, fayl olinmoqda" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "manbani qoʻshib boʻlmadi" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Baʼzi paketlardan diskka nusxa olinmoqda" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Nusxa olish davom etmoqda" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "boʻlishi shart" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "muhim" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "juda yaxshi" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "yaxshi" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "balki" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Taʼrif yoʻq" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"%s talab qiladigan baʼzi paketlarni oʻrnatib boʻlmaydi:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Xato roʻy berdi:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Juda jiddiy xato roʻy berdi: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d oʻrnatish tranzaksiyasi muvaffaqiyatsiz tugadi" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Paketlarni oʻrnatib boʻlmadi:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Ish stansiyasi" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Idora stansiyasi" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Idora uchun dasturlar: matn protsessorlari (LibreOffice Writer, Kword), " +"elektron jadvallar (LibreOffice Calc, Kspread), PDF koʻruvchilar va hokazo" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Oʻyin stansiyasi" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Ovunchoq dasturlar: arkada, stol oʻyinlari, strategiya va hokazo" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Multimedia stansiyasi" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Audio va videoni oʻynash/tahrirlash uchun dasturlar" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet stansiyasi" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Xat-xabar, yangiliklarni oʻqish va joʻnatish (mutt, tin..) va Internetda " +"sayr qilish uchun vositalar toʻplami" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Tarmoqdagi kompyuter (klient)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Turli protokollar, shu jumlada SSH, uchun klientlar" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Kompyuterni moslashni yengilashtirish uchun vositalar" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Konsol vositalari" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Tahrirchilar, konsollar, fayl vositalari, terminallar" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Tuzish" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C va C++ tuzish kutubxonalari, vositalar va xeder fayllar" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Qoʻllanmalar" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Linux va erkin dasturlar haqida kitoblar va Howto'lar" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Uchinchi tomon dastur tuzuvchilari qoʻllanuvi" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Veb-serveri" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab serveri" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Fayervol/Ruter" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet geytveyi" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Xat-xabar/Yangiliklar" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix xat-xabar serveri, Inn yangiliklar serveri" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Direktoriya serveri" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP serveri" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS va NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Fayl va printerni boʻlishish serveri" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS serveri, Samba serveri" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Maʼlumot bazasi" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL va MariaDB maʼlumot bazasi" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Xat-xabar" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix xat-xabar serveri" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL yoki MariaDB maʼlumot bazasi" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Tarmoqdagi kompyuter (server)" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS serveri, SMB serveri, Proxy serveri, SSH serveri" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Grafik muhit" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "KDE - vositalar toʻplami bilan birga asosiy grafik muhit" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME stansiyasi" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Foydalanuvchilar uchun qulay dasturlar va ish stoli vositalaridan iborat " +"grafik muhit" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE ish stoli" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Boshqa grafik ish stollari" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Vositalar" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH serveri" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin masofadan boshqarish serveri" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Tarmoq vositalari/Nazorat qilish" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" +"Nazorat qilish vositalari, vazifalar hisobotchilari, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia yordamchilari" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Serverni moslash uchun yordamchilar" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Xatolik yuz berdi ammo uning sababi aniqlanmadi.\n" +"Tavvakkal qilgan holda davom etishingiz mumkin." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Baʼzi bir muhim paketlar toʻgʻri oʻrnatilmadi.\n" +"Sizning kompakt-disk uskunangizda yoki kompakt-diskingizda xato bor.\n" +"Kompakt-diskni oʻrnatilgan kompyuterda \"rpm -qpl media/main/*.rpm\" " +"buyrugʻi bilan tekshirib koʻring.\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "%s bosqichga oʻtilmoqda\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s OTni oʻrnatish %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> banddan-bandga" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg dasturi juda sekin ishga tushyapti. Iltimos kutib turing..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Tizimda resurslar yetishmaydi. %s tizimini oʻrnatish mobaynida\n" +"muammoga duch kelishingiz mumkin. Agar shunday boʻlsa, matn usulida " +"oʻrnatish vositasidan foydalanib koʻring,\n" +"Buning uchun diskdan yuklanayotganda `F1' tugmasini bosing va `text' deb " +"yozing." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Manbani tanlash" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Boshqa" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME ish stoli" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Boshqa ish stoli" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Bu '%s' ish stolining koʻrinishi." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Ish stolini yaqinroqdan koʻrish uchun rasmni sichqoncha bilan bosing" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Paketlarni guruh boʻyicha tanlash" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Paketlarni bittama-bitta tanlash" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Hech qaysi tanlanmasin" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Jami: %d / %d Mb" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Versiyasi: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Hajmi: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d Kb\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Muhimligi: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Bu paketni tanlolmaysiz/tanlashni bekor qilolmaysiz" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s yetishmagani uchun" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s ativlashtirishga harakat qilinmoqda" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s'ni qoldirish uchun" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Bu paketni tanlolmaysiz, chunki uni oʻrnatish uchun yetarli joy mavjud emas." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Quyidagi paketlar oʻrnatiladi" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Quyidagi paketlar olib tashlaniladi." + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" +"Bu oʻrnatilishi shart boʻlgan paket, uni tanlashni bekor qilib boʻlmaydi." + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Bu paketni tanlashni bekor qilolmaysiz. U allaqachon oʻrnatilgan." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Bu paketni tanlashni bekor qilolmaysiz. U yangilanishi shart." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Avtomatik ravishda tanlangan paketlarni koʻrsatish" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Oʻrnatish" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Tanlanganni yuklash/saqlash" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Paketlar tanlovi yangilanmoqda" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Minimal oʻrnatish" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Dasturlar boshqaruvi" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Siz oʻrnatmoqchi boʻlgan paketlarni tanlang" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Oʻrnatilmoqda" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Tafsilotlarsiz" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Qolgan vaqt:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(chamalanmoqda)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d-ta paket" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Hisobot" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Moslash" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "moslanmagan" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Quyidagi oʻrnatish manbalari aniqlandi.\n" +"Faqat tanlangan manbalar oʻrnatish uchun ishlatiladi." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Oʻrnatishdan avval kompakt-disklardagi paketlardan kompyuterning diskiga " +"nusxa olish mumkin.\n" +"Oʻrnatish toʻliq tugagandan soʻng ular tizimga maʼlum boʻladi." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Butun diskdan nusxa olish" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Xato roʻy berdi" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Iltimos tugmalar tartibini tanlang" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Mavjud boʻlgan klaviaturalarning toʻliq roʻyxati:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Oʻrnatish/Yangilash" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Bu oʻrnatishmi yoki yangilashmi?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Oʻrnatish" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s OTni yangilash" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s uchun kodlash kaliti" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Oʻrnatishni bekor qilish, kompyuterni oʻchirib-yoqish" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Oʻrnatish" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Oldingi oʻrnatishni yangilash (tavsiya etilmaydi)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Kompakt-diskni almashtiring!\n" +"\n" +"Iltimos '%s' belgili kompakt-diskni qoʻying va \"Ok\" tugmasini bosing.\n" +"Agar u sizda boʻlmasa, bu kompakt-diskdan oʻrnatishni bekor qilish uchun " +"\"Bekor qilish\" tugmasini bosing." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Mavjud boʻlgan paketlar qidirilmoqda..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"Tizimda oʻrnatish yoki yangilash uchun yetarli joy qolmadi (%d Mb > %d Mb)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Yuklash" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Saqlash" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Notoʻgʻri fayl" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Ish stolini tanlash" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Quyidagilardan oʻrnatiladigan ish stolini tanlang" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Tanlangan hajm mavjud boʻlgan boʻsh joydan katta" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Oʻrnatishning turi" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Siz hech qanday paketlar guruhini tanlamadingiz.\n" +"Iltimos siz istagan minimal oʻrnatishni tanlang:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X bilan" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Asosiy qoʻllanmalar bilan (tavsiya qilinadi!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Haqiqiy minimal oʻrnatish (xususan urpmi'siz)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Oʻrnatishga tayyorlanmoqda" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s paketi oʻrnatilmoqda" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Quyidagi paketlarni saralashda xato roʻy berdi:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Bunga qaramasdan davom etishni istaysizmi?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Qaytadan urinish" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Bu paketga eʼtibor berilmasin" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "\"%s\" toʻplamidan hamma paketlarga eʼtibor berilmasin" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Oʻrnatish manbalarni va paketlarni tanlashga qaytish" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Quyidagi paketni oʻrnatishda xato roʻy berdi: %s" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Oʻrnatishdan keyin moslash" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "%s ichida Update Modules toʻplami mavjudligini tekshirib koʻring" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Yangilanishlar" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Quyidagi paketlar oʻrnatiladi" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Toʻplamni qoʻshish muvaffaqiyatsiz tugadi" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Hozir sizda yangilangan paketlarni yozib olib oʻrnatish imkoniyati mavjud.\n" +"Ular hozir siz oʻrnatgan Mageia tizimi chiqqanidan soʻng\n" +"yangilangan. Ularda har xil xavfsizlik va dasturlar bilan bogʻliq\n" +"xatoliklar tuzatilgan boʻlishi mumkin.\n" +"\n" +"Bu paketlarni yozib olish uchun sizda Internet bilan aloqa oʻrnatilgan " +"boʻlishi\n" +"kerak.\n" +"\n" +"Yangilanishlarni oʻrnatishni istaysizmi?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s %s'da" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Asbob-uskunalar" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Tovush karta" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Grafik interfeys" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Tarmoq va Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proksilar" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "moslangan" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Xavfsizlik darajasi" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Fayervol" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "ishlayapti" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "oʻchirilgan" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Siz X'ni moslamadingiz. Rostdan buni istaysizmi?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Kutib turing, bu biroz vaqt olishi mumkin..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Ushbu xavfsizlik daraja qoʻllanilganda diskning Windows qismidagi fayllarga " +"faqat administrator murojaat qilishi mumkin." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Boʻsh disketni %s uskunasiga qoʻying" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Avto-oʻrnatish disketi yaratilmoqda..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Baʼzi oʻrnatish bosqichlari bajarilmadi.\n" +"\n" +"Rostdan chiqishni istaysizmi?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Tabriklaymiz!" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Oʻchirib-yoqish" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Til" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Mahalliylashtirish" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Litsenziya" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Sichqoncha" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Qattiq diskni aniqlash" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Oʻrnatish sinfi" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Tugmatag" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Xavfsizlik" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Diskni boʻlish" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Formatlash" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Oʻrnatilishi kerak boʻlgan paketlarni tanlash" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Oʻrnatilmoqda" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Foydalanuvchilar" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "OT yuklagichi" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X serverini moslash" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Hisobot" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Xizmatlar" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Yangilanishlar" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Chiqish" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Oynaning manzili (URL)" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Manzil ftp:// yoki http:// bilan boshlanishi kerak" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Mavjud boʻlgan oynalarning roʻyxatini olish uchun %s sayti bilan aloqa " +#~ "oʻrnatilmoqda..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Mavjud boʻlgan oynalarning roʻyxatini olish uchun %s sayti bilan aloqa " +#~ "oʻrnatib boʻlmadi" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Paketlarni olish uchun oynani tanlang" diff --git a/perl-install/install/share/po/uz@cyrillic.po b/perl-install/install/share/po/uz@cyrillic.po new file mode 100644 index 000000000..c2081c342 --- /dev/null +++ b/perl-install/install/share/po/uz@cyrillic.po @@ -0,0 +1,1864 @@ +# translation of uz@cyrillic.po to Uzbek +# Copyright (C) 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2003 Mandriva. +# +# Mashrab Kuvatov <kmashrab@uni-bremen.de>, 2003, 2004, 2006, 2007, 2008. +# Nurali Abdurahmonov <mavnur@gmail.com>, 2006, 2009, 2010. +# Behzod Saidov <behzodsaidov@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: uz@cyrillic\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2010-01-07 11:35+0500\n" +"Last-Translator: Nurali Abdurahmonov <mavnur@gmail.com>\n" +"Language-Team: American English <kde-i18n-doc@kde.org>\n" +"Language: uz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, fuzzy, c-format +msgid "Office tools" +msgstr "Идора станцияси" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Сизда қўшимча компакт-диск борми?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Ўрнатиш давомида қуйидаги манбадан фойдаланилади: %s.\n" +"\n" +"\n" +"Мосланиши керак бўлган қўшимча ўрнатиш манбаси борми?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Тармоқ (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Тармоқ (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Тармоқ (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS орқали ўрнатиш" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "NFS тўпламининг компьютер номини ва директорияни киритинг" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "Компьютернинг номи кўрсатилмаган" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Директория \"/\" белги билан бошлаши керак" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS серверининг хост номи" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Директория" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Қўшимча" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Ойнада пакетлар рўйхатини топиб бўлмади. Манзил (URL) тўғри " +"кўрсатилганлигини текширинг." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, fuzzy, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "\"%s\" тўпламидан ҳамма пакетларга эътибор берилмасин" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Аллақачон ўрнатилган пакетлар қидирилмоқда..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Янгилаш учун пакетлар қидирилмоқда..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Янгилашдан аввал пакетлар олиб ташланмоқда..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Тизимни янгилаш учун қуйидаги пакетлар ўчирилади: %s\n" +"\n" +"\n" +"Давом этишни истайсизми?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "%s файлини ўқишда хато рўй берди" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Қуйидаги диск(лар)нинг номи ўзгартирилди:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (олдинги номи %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Тармоқ" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Илтимос тўпламни танланг" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Файл аллақачон мавжуд. Уни алмаштиришни истайсизми?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Рухсат йўқ" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "NFS номи нотўғри" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Нотўғри тўплам %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Скриншотларни дискни бўлишдан аввал олиб бўлмайди" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" +"Ўрнатиш тугаганидан кейин скриншотларни қуйидаги жойдан топиш мумкин: %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Ўрнатиш" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Мослаш" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Сиз %s'ни ҳам формат қилишингиз керак" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Компьютернинг баъзи асбоб-ускунаси эркин бўлмаган драйверни талаб қилади.\n" +"Улар ҳақида баъзи маълумотни қуйидаги жойдан олса бўлади: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Тармоқ ишга туширилмоқда" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Тармоқ ўчирилмоқда" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "Илтимос кутиб туринг, файл олинмоқда" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "манбани қўшиб бўлмади" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Баъзи пакетлардан дискка нусха олинмоқда" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Нусха олиш давом этмоқда" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "бўлиши шарт" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "муҳим" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "жуда яхши" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "яхши" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "балки" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Таъриф йўқ" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"%s талаб қиладиган баъзи пакетларни ўрнатиб бўлмайди:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Хато рўй берди:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Жуда жиддий хато рўй берди: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d ўрнатиш транзакцияси муваффақиятсиз тугади" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "Пакетларни ўрнатиб бўлмади:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Иш станцияси" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Идора станцияси" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Идора учун дастурлар: матн процессорлари (LibreOffice Writer, Kword), " +"электрон жадваллар (LibreOffice Calc, Kspread), PDF кўрувчилар ва ҳоказо" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Ўйин станцияси" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Овунчоқ дастурлар: аркада, стол ўйинлари, стратегия ва ҳоказо" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Мултимедиа станцияси" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Аудио ва видеони ўйнаш/таҳрирлаш учун дастурлар" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Интернет станцияси" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Хат-хабар, янгиликларни ўқиш ва жўнатиш (mutt, tin..) ва Интернетда сайр " +"қилиш учун воситалар тўплами" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Тармоқдаги компьютер (клиент)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Турли протоколлар, шу жумлада SSH, учун клиентлар" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Компьютерни мослашни енгилаштириш учун воситалар" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Консол воситалари" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Таҳрирчилар, консоллар, файл воситалари, терминаллар" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Тузиш" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C ва C++ тузиш кутубхоналари, воситалар ва хедер файллар" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Қўлланмалар" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Linux ва эркин дастурлар ҳақида китоблар ва Howto'лар" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base. Учинчи томон дастур тузувчилари қўллануви" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Веб-сервери" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab сервери" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Файервол/Рутер" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Интернет гейтвэйи" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Хат-хабар/Янгиликлар" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix хат-хабар сервери, Inn янгиликлар сервери" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Директория сервери" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP сервери" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "DNS ва NIS" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Файл ва принтерни бўлишиш сервери" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS сервери, Samba сервери" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Маълумот базаси" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL ва MariaDB маълумот базаси" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache, Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Хат-хабар" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix хат-хабар сервери" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL ёки MariaDB маълумот базаси" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Тармоқдаги компьютер (сервер)" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS сервери, SMB сервери, Proxy сервери, SSH сервери" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "График муҳит" + +#: share/meta-task/compssUsers.pl:152 +#, fuzzy, c-format +msgid "Plasma Workstation" +msgstr "Иш станцияси" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "KDE - воситалар тўплами билан бирга асосий график муҳит" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME станцияси" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Фойдаланувчилар учун қулай дастурлар ва иш столи воситаларидан иборат график " +"муҳит" + +#: share/meta-task/compssUsers.pl:164 +#, fuzzy, c-format +msgid "Xfce Workstation" +msgstr "KDE станцияси" + +#: share/meta-task/compssUsers.pl:165 +#, fuzzy, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" +"Фойдаланувчилар учун қулай дастурлар ва иш столи воситаларидан иборат график " +"муҳит" + +#: share/meta-task/compssUsers.pl:169 +#, fuzzy, c-format +msgid "MATE Workstation" +msgstr "GNOME станцияси" + +#: share/meta-task/compssUsers.pl:174 +#, fuzzy, c-format +msgid "Cinnamon Workstation" +msgstr "Иш станцияси" + +#: share/meta-task/compssUsers.pl:175 +#, fuzzy, c-format +msgid "A graphical environment based on GNOME" +msgstr "График муҳит" + +#: share/meta-task/compssUsers.pl:179 +#, fuzzy, c-format +msgid "LXQt Desktop" +msgstr "LXDE иш столи" + +#: share/meta-task/compssUsers.pl:181 +#, fuzzy, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" +"Фойдаланувчи учун қулай дастурлар ва иш столи восилари мавжуд бўлган енгил " +"ва тез ишловчи график муҳит" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, fuzzy, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" +"Фойдаланувчи учун қулай дастурлар ва иш столи восилари мавжуд бўлган енгил " +"ва тез ишловчи график муҳит" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE иш столи" + +#: share/meta-task/compssUsers.pl:191 +#, fuzzy, c-format +msgid "A lightweight fast graphical environment" +msgstr "" +"Фойдаланувчи учун қулай дастурлар ва иш столи восилари мавжуд бўлган енгил " +"ва тез ишловчи график муҳит" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Бошқа график иш столлари" + +#: share/meta-task/compssUsers.pl:195 +#, fuzzy, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Enlightenment, Fvwm, ва ҳоказо" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Воситалар" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH сервери" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin масофадан бошқариш сервери" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Тармоқ воситалари/Назорат қилиш" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Назорат қилиш воситалари, вазифалар ҳисоботчилари, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia ёрдамчилари" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Серверни мослаш учун ёрдамчилар" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Хатолик юз берди аммо унинг сабаби аниқланмади.\n" +"Тавваккал қилган ҳолда давом этишингиз мумкин." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Баъзи бир муҳим пакетлар тўғри ўрнатилмади.\n" +"Сизнинг компакт-диск ускунангизда ёки компакт-дискингизда хато бор.\n" +"Компакт-дискни ўрнатилган компьютерда \"rpm -qpl media/main/*.rpm\" буйруғи " +"билан текшириб кўринг.\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "%s босқичга ўтилмоқда\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s ОТни ўрнатиш %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> банддан-бандга" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg дастури жуда секин ишга тушяпти. Илтимос кутиб туринг..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Тизимда ресурслар етишмайди. %s тизимини ўрнатиш мобайнида\n" +"муаммога дуч келишингиз мумкин. Агар шундай бўлса, матн усулида ўрнатиш " +"воситасидан фойдаланиб кўринг,\n" +"Бунинг учун дискдан юкланаётганда `F1' тугмасини босинг ва `text' деб ёзинг." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Манбани танлаш" + +#: steps_gtk.pm:257 +#, fuzzy, c-format +msgid "Install %s Plasma Desktop" +msgstr "KDE иш столи" + +#: steps_gtk.pm:258 +#, fuzzy, c-format +msgid "Install %s GNOME Desktop" +msgstr "GNOME иш столи" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Бошқа" + +#: steps_gtk.pm:280 +#, fuzzy, c-format +msgid "Plasma Desktop" +msgstr "Бошқа иш столи" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME иш столи" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Бошқа иш столи" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "Бу '%s' иш столининг кўриниши." + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "Иш столини яқинроқдан кўриш учун расмни сичқонча билан босинг" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Пакетларни гуруҳ бўйича танлаш" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Пакетларни биттама-битта танлаш" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Ҳеч қайси танланмасин" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Жами: %d / %d Мб" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Версияси: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Ҳажми: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d Кб\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Муҳимлиги: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Бу пакетни танлолмайсиз/танлашни бекор қилолмайсиз" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "%s етишмагани учун" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "%s ативлаштиришга ҳаракат қилинмоқда" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "%s'ни қолдириш учун" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Бу пакетни танлолмайсиз, чунки уни ўрнатиш учун етарли жой мавжуд эмас." + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Қуйидаги пакетлар ўрнатилади" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Қуйидаги пакетлар олиб ташланилади." + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Бу ўрнатилиши шарт бўлган пакет, уни танлашни бекор қилиб бўлмайди." + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Бу пакетни танлашни бекор қилолмайсиз. У аллақачон ўрнатилган." + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Бу пакетни танлашни бекор қилолмайсиз. У янгиланиши шарт." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Автоматик равишда танланган пакетларни кўрсатиш" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Ўрнатиш" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Танланганни юклаш/сақлаш" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Пакетлар танлови янгиланмоқда" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Минимал ўрнатиш" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Дастурлар бошқаруви" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Сиз ўрнатмоқчи бўлган пакетларни танланг" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Ўрнатилмоқда" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Тафсилотларсиз" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Қолган вақт:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(чамаланмоқда)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d-та пакет" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Ҳисобот" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Мослаш" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "мосланмаган" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Қуйидаги ўрнатиш манбалари аниқланди.\n" +"Фақат танланган манбалар ўрнатиш учун ишлатилади." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Ўрнатишдан аввал компакт-дисклардаги пакетлардан компьютернинг дискига нусха " +"олиш мумкин.\n" +"Ўрнатиш тўлиқ тугагандан сўнг улар тизимга маълум бўлади." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Бутун дискдан нусха олиш" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Хато рўй берди" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Илтимос тугмалар тартибини танланг" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Мавжуд бўлган клавиатураларнинг тўлиқ рўйхати:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Ўрнатиш/Янгилаш" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Бу ўрнатишми ёки янгилашми?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Ўрнатиш" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "%s ОТни янгилаш" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s учун кодлаш калити" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Ўрнатишни бекор қилиш, компьютерни ўчириб-ёқиш" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Ўрнатиш" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Олдинги ўрнатишни янгилаш (тавсия этилмайди)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, fuzzy, c-format +msgid "Configuring CD/DVD" +msgstr "IDE'ни мослаш" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Компакт-дискни алмаштиринг!\n" +"\n" +"Илтимос '%s' белгили компакт-дискни қўйинг ва \"Ок\" тугмасини босинг.\n" +"Агар у сизда бўлмаса, бу компакт-дискдан ўрнатишни бекор қилиш учун \"Бекор " +"қилиш\" тугмасини босинг." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Мавжуд бўлган пакетлар қидирилмоқда..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "Тизимда ўрнатиш ёки янгилаш учун етарли жой қолмади (%d Мб > %d Мб)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Юклаш" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Сақлаш" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Нотўғри файл" + +#: steps_interactive.pm:455 +#, fuzzy, c-format +msgid "Plasma" +msgstr "Бошқа иш столи" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Иш столини танлаш" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "Қуйидагилардан ўрнатиладиган иш столини танланг" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Танланган ҳажм мавжуд бўлган бўш жойдан катта" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Ўрнатишнинг тури" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Сиз ҳеч қандай пакетлар гуруҳини танламадингиз.\n" +"Илтимос сиз истаган минимал ўрнатишни танланг:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "X билан" + +#: steps_interactive.pm:583 +#, fuzzy, c-format +msgid "Install recommended packages" +msgstr "Таклиф қилинган пакетларни ўрнатиш" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Асосий қўлланмалар билан (тавсия қилинади!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Ҳақиқий минимал ўрнатиш (хусусан urpmi'сиз)" + +#: steps_interactive.pm:637 +#, fuzzy, c-format +msgid "Preparing upgrade..." +msgstr "ОТ юклагичи тайёрланмоқда..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Ўрнатишга тайёрланмоқда" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "%s пакети ўрнатилмоқда" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Қуйидаги пакетларни саралашда хато рўй берди:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Бунга қарамасдан давом этишни истайсизми?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Қайтадан уриниш" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Бу пакетга эътибор берилмасин" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "\"%s\" тўпламидан ҳамма пакетларга эътибор берилмасин" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Ўрнатиш манбаларни ва пакетларни танлашга қайтиш" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Қуйидаги пакетни ўрнатишда хато рўй берди: %s" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Ўрнатишдан кейин мослаш" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "%s ичида Update Modules тўплами мавжудлигини текшириб кўринг" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Янгиланишлар" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Қуйидаги пакетлар ўрнатилади" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, fuzzy, c-format +msgid "Retry?" +msgstr "Қайтадан уриниш" + +#: steps_interactive.pm:784 +#, fuzzy, c-format +msgid "Failure when adding medium" +msgstr "манбани қўшиб бўлмади" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Ҳозир сизда янгиланган пакетларни ёзиб олиб ўрнатиш имконияти мавжуд.\n" +"Улар ҳозир сиз ўрнатган Mageia тизими чиққанидан сўнг\n" +"янгиланган. Уларда ҳар хил хавфсизлик ва дастурлар билан боғлиқ\n" +"хатоликлар тузатилган бўлиши мумкин.\n" +"\n" +"Бу пакетларни ёзиб олиш учун сизда Интернет билан алоқа ўрнатилган бўлиши\n" +"керак.\n" +"\n" +"Янгиланишларни ўрнатишни истайсизми?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s %s'да" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Асбоб-ускуналар" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Товуш карта" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "График интерфейс" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Тармоқ ва Интернет" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Проксилар" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "мосланган" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Хавфсизлик даражаси" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Файервол" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "ишлаяпти" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "ўчирилган" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Сиз X'ни мосламадингиз. Ростдан буни истайсизми?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, fuzzy, c-format +msgid "Preparing initial startup program..." +msgstr "Ўрнатишга тайёрланмоқда" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "Кутиб туринг, бу бироз вақт олиши мумкин..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Ушбу хавфсизлик даража қўлланилганда дискнинг Windows қисмидаги файлларга " +"фақат администратор мурожаат қилиши мумкин." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Бўш дискетни %s ускунасига қўйинг" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Авто-ўрнатиш дискети яратилмоқда..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Баъзи ўрнатиш босқичлари бажарилмади.\n" +"\n" +"Ростдан чиқишни истайсизми?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Табриклаймиз!" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Ўчириб-ёқиш" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Тил" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Маҳаллийлаштириш" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Лицензия" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Сичқонча" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Қаттиқ дискни аниқлаш" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Ўрнатиш синфи" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Тугматаг" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Хавфсизлик" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Дискни бўлиш" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Форматлаш" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Ўрнатилиши керак бўлган пакетларни танлаш" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Ўрнатилмоқда" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Фойдаланувчилар" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "ОТ юклагичи" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "X серверини мослаш" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Ҳисобот" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Хизматлар" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Янгиланишлар" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Чиқиш" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Ойнанинг манзили (URL)" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Манзил ftp:// ёки http:// билан бошланиши керак" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Мавжуд бўлган ойналарнинг рўйхатини олиш учун %s сайти билан алоқа " +#~ "ўрнатилмоқда..." + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Мавжуд бўлган ойналарнинг рўйхатини олиш учун %s сайти билан алоқа " +#~ "ўрнатиб бўлмади" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Пакетларни олиш учун ойнани танланг" + +#~ msgid "KDE Workstation" +#~ msgstr "KDE станцияси" + +#, fuzzy +#~ msgid "XFCE Workstation" +#~ msgstr "KDE станцияси" + +#, fuzzy +#~ msgid "RazorQT Desktop" +#~ msgstr "Бошқа иш столи" + +#~ msgid "Do you have an ISA sound card?" +#~ msgstr "Сизда ISA товуш картаси борми?" + +#~ msgid "" +#~ "Run \"alsaconf\" or \"sndconfig\" after installation to configure your " +#~ "sound card" +#~ msgstr "" +#~ "Ўрнатишдан кейин, товуш картангизни мослаш учун, \"sndconfig\" ёки " +#~ "\"alsaconf\" дастурини ишга туширинг" + +#~ msgid "No sound card detected. Try \"harddrake\" after installation" +#~ msgstr "" +#~ "Товуш картаси топилмади. Ўрнатишдан кейин \"harddrake\" дастурини синаб " +#~ "кўринг." + +#~ msgid "KDE Desktop" +#~ msgstr "KDE иш столи" + +#~ msgid "KDE" +#~ msgstr "KDE" + +#~ msgid "CD-ROM" +#~ msgstr "Компакт-диск" + +#, fuzzy +#~ msgid "" +#~ "The Plasma Desktop, the basic graphical environment with a collection of " +#~ "accompanying tools" +#~ msgstr "KDE - воситалар тўплами билан бирга асосий график муҳит" + +#~ msgid "IDE" +#~ msgstr "IDE" + +#~ msgid "Preparing bootloader..." +#~ msgstr "ОТ юклагичи тайёрланмоқда..." + +#~ msgid "" +#~ "A lightweight & fast graphical environment with user-friendly set of " +#~ "applications and desktop tools" +#~ msgstr "" +#~ "Фойдаланувчи учун қулай дастурлар ва иш столи восилари мавжуд бўлган " +#~ "енгил ва тез ишловчи график муҳит" + +#~ msgid "" +#~ "No free space for 1MB bootstrap! Install will continue, but to boot your " +#~ "system, you'll need to create the bootstrap partition in DiskDrake" +#~ msgstr "" +#~ "1Мблик юкловчи дастур учун етарли жой қолмаган! Ўрнатиш давом этади аммо " +#~ "тизимни юклаш учун DiskDrake'да дастлабки юкловчи яратилиши керак" + +#~ msgid "" +#~ "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " +#~ "will not work for you. The install will continue, but you'll need to use " +#~ "BootX or some other means to boot your machine. The kernel argument for " +#~ "the root fs is: root=%s" +#~ msgstr "" +#~ "Компьютерингиз жуда эски русумга ёки номаълум русмга ўхшайди, шу сабабдан " +#~ "yaboot тизим юкловчиси ишламайди. Ўрнатиш давом этади аммо тизимни юклаш " +#~ "учун BootX ёки бошқа усулдан фойдаланишингиз лозим бўлади. Root файл " +#~ "тизими учун учун кернел аргументи: root=%s" + +#~ msgid "Welcome" +#~ msgstr "Марҳамат" + +#~ msgid "Select All" +#~ msgstr "Ҳаммасини танлаш" + +#~ msgid "Bad package" +#~ msgstr "Ёмон пакет" + +#, fuzzy +#~ msgid "Preparing boot images..." +#~ msgstr "ОТ юклагичи тайёрланмоқда..." + +#~ msgid "" +#~ "_: Keep these entry short\n" +#~ "Networking" +#~ msgstr "Тармоқ" + +#~ msgid "Your desktop on a USB key" +#~ msgstr "Сизнинг иш столингиз USB калитда" + +#~ msgid "The 100%% open source Mageia distribution" +#~ msgstr "100%% очиқ кодли Mageia дистрибутиви" + +#~ msgid "Explore Linux easily with Mageia One" +#~ msgstr "Mageia One ёрдамида Linux'ни осонгина кашф этинг" + +#~ msgid "A full Mageia desktop, with support" +#~ msgstr "Тўлиқ Mageia иш столи, қўллаб-қувватлаш билан" + +#~ msgid "Mageia: distributions for everybody's needs" +#~ msgstr "Mageia: барчага мўлжалланган дистрибутив" + +#~ msgid "" +#~ "Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, " +#~ "gnumeric), pdf viewers, etc" +#~ msgstr "" +#~ "Идора учун дастурлар: матн процессорлари (kword, abiword), электрон " +#~ "жадваллар (kspread, gnumeric), PDF кўрувчилар ва ҳоказо" + +#~ msgid "Downloading file %s..." +#~ msgstr "%s файли ёзиб олинмоқда..." + +#~ msgid "" +#~ "You have selected the following server(s): %s\n" +#~ "\n" +#~ "\n" +#~ "These servers are activated by default. They do not have any known " +#~ "security\n" +#~ "issues, but some new ones could be found. In that case, you must make " +#~ "sure\n" +#~ "to upgrade as soon as possible.\n" +#~ "\n" +#~ "\n" +#~ "Do you really want to install these servers?\n" +#~ msgstr "" +#~ "Қуйидаги сервер дастурлар ҳам ўрнатилади: %s\n" +#~ "\n" +#~ "\n" +#~ "Бу сервер дастурлар ўрнатилиши билан улар ишга туширилади.\n" +#~ "Ҳозирча, улар билан боғлиқ бирорта ҳам хавфсизлик борасида муаммолар\n" +#~ "кузатилмаган, аммо уларнинг топилиш эҳтимоли ҳамиша мавжуд. Бундай\n" +#~ "ҳолатда, уларни иложи борича тезроқ янгилашингиз лозим.\n" +#~ "\n" +#~ "\n" +#~ "Бу сервер дастурларни ростдан ҳам ўрнатишни истайсизми?\n" + +#~ msgid "IceWm Desktop" +#~ msgstr "IceWm иш столи" + +#~ msgid "Contacting the mirror to get the list of available packages..." +#~ msgstr "" +#~ "Мавжуд бўлган пакетларнинг рўйхатини олиш учун ойна билан алоқа " +#~ "ўрнатилмоқда..." + +#~ msgid "Unable to contact mirror %s" +#~ msgstr "Ойна (%s)билан алоқа ўрнатиб бўлмади." + +#~ msgid "Generate auto install floppy" +#~ msgstr "Авто-ўрнатиш дискетни яратиш" + +#~ msgid "Replay" +#~ msgstr "Қайтариш" + +#~ msgid "Automated" +#~ msgstr "Автоматик" + +#~ msgid "Save packages selection" +#~ msgstr "Пакетлар танловини сақлаш" + +#~ msgid "Do you want to use aboot?" +#~ msgstr "aboot дастуридан фойдаланишни истайсизми?" diff --git a/perl-install/install/share/po/vi.po b/perl-install/install/share/po/vi.po new file mode 100644 index 000000000..cb1049f72 --- /dev/null +++ b/perl-install/install/share/po/vi.po @@ -0,0 +1,1666 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Vietnamese (http://www.transifex.com/MageiaLinux/mageia/" +"language/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Bạn còn phương tiện nào khác không?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Mạng (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Mạng (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Thư mục" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "Không thể tìm tập tin hdlist trên mirror này" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Kiểm tra các gói đã được cài đặt..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Đang tìm các gói để nâng cấp" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Các gói tin sau đây sẽ được gỡ bỏ để cho phép nâng cấp hệ thống: %s\n" +"\n" +"\n" +"Bạn có thật sự muốn gỡ bỏ các gói tin này không?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Lỗi khi đọc tập tin %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Đã đổi tên (các) đĩa sau:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (tên cũ là %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Mạng" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Hãy chọn phương tiện" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Tập tin tồn tại. Có ghi đè nó không?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Quyền hạn bị từ chối" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Phương tiện hỏng %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Không thể tạo ảnh đĩa trước khi phân vùng" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Sẽ có ảnh chụp sau quá trình cài đặt trong %s" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Cấu hình" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Cũng phải định dạng %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Một số phần cứng của máy tính cần các driver ``có bản quyền'' để hoạt động.\n" +"Bạn có thể tìm thông tin về chúng tại: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Bật chức năng mạng" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Tắt chức năng mạng" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Đang sao chép" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "phải có" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "quan trọng" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "rất tuyệt" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "tuyệt" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "có thể là" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Không có mô tả" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "Xả ra lỗi trầm trọng: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Đừng hỏi nữa " + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d phiên giao dịch cài đặt lỗi" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Máy trạm" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Văn phòng" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Các chương trình văn phòng: wordprocessors (LibreOffice Writer, Kword), " +"spreadsheets (LibreOffice Calc, Kspread), chương trình xem PDF, v.v..." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Trò chơi" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Các chương trình giải trí: arcade, boards, strategy, v.v..." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Đa phương tiện" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Các chương trình chơi Audio-Video/soạn thảo" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "Bộ công cụ đọc gửi thư tín và tin tức (mutt, tin..) và để duyệt Web" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Máy tính mạng (khách)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Máy khách cho các giao thức khác bao gồm ssh" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Công cụ xoá cấu hình máy tính của bạn" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Các công cụ console" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Các trình soạn thảo, các tiện ích tập tin, các thiết bị đầu cuối" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Phát triển" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" +"Các thư viện phát triển C và C++, các chương trình và các tập tin đi kèm" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Tài liệu" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Các sách, how-to cho Linux và phần mềm miễn phí" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Cơ Sở Về Chuẩn Linux (LSB). Hỗ trợ ứng dụng cho hãng thứ ba." + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Máy chủ Web" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Groupware" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Máy chủ Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Tường lửa/Định tuyến" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Cổng kết nối Internet" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Mail/News" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix mail server, Inn news server" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Máy chủ thư mục" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Máy chủ FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Máy chủ thông tin mạng và tên miền" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Máy chủ chia sẻ máy in và tập tin" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Máy chủ Samba, NFS" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Cơ sở dữ liệu" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Máy chủ cơ sở dữ liệu PostgreSQL và MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache và Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Thư" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Máy chủ thư Postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL hay MariaDB máy chủ cơ sở dữ liệu" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Máy chủ mạng" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Máy chủ NFS, SMB, SSH, ủy nhiệm" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Môi trường đồ hoạ" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"K Desktop Environment, một môi trường đồ họa với một sưu tập tiện ích đi kèm" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME Workstation" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Môi trường đồ họa thân thiện cho các ứng dụng và các tiện ích màn hình nền" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Các màn hình nền đồ hoạ khác" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Tiện ích" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Máy chủ SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Cấu hình máy chủ từ xa Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Giám sát và công cụ mạng" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Các công cụ theo dõi, quản lý tiến trình, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Đồ thuật Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Đồ thuật cấu hình máy chủ" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Có lỗi xảy ra, không rõ cách giải quyết thích hợp.\n" +"Tiếp tục với rủi ro." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Một số gói đã không được cài đặt đúng đắn.\n" +"Có thể do ổ đĩa cdrom hoặc đĩa cdrom của bạn bị lỗi.\n" +"Kiểm tra cdrom trên máy tính bằng \"rpm -qpl media/main/*.rpm\"\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Bắt đầu bước `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Cài đặt %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> giữa các phần tử" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Hệ thống của bạn có cấu hình thấp. Bạn có thể gặp một số trục trặc khi\n" +"cài đặt %s. Nếu xảy ra lỗi, bạn có thể thay thế bằng kiểu cài đặt trong\n" +"chế độ văn bản bằng cách nhấn phím `F1' khi khởi động từ CDROM, rồi nhập " +"`text'." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Nhóm gói tin được chọn" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Chọn các gói riêng" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Mọi thứ không được chọn" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Kích thước toàn bộ: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Phiên bản:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Kích thước:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Quan trọng:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Bạn không thể chọn/bỏ chọn gói này" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "vì thiếu %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "vì không thỏa mãn %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "thử xúc tiến %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "để giữ %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "Bạn không thể chọn gói này vì không còn đủ không gian để cài đặt" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Các gói sau đây sẽ được cài đặt" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Các gói sau đây sẽ được gỡ bỏ" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Bắt buộc cài đặt gói này, không thể bỏ chọn nó" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Bạn không thể bỏ chọn gói này. Nó được cài đặt rồi" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Bạn không thể không chọn gói này. Nó phải được nâng cấp." + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Tự động hiển thị các gói đã được chọn" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Cài đặt" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Nạp/Lưu lựa chọn" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Đang cập nhật sự lựa chọn các gói" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Cài đặt tối thiểu" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Quản Lý Phần Mềm" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Chọn các gói bạn muốn cài đặt " + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Đang cài đặt" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Không có thông tin" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d các gói" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Tóm tắt" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Cấu hình" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "chưa được cấu hình" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Phát hiện thấy phương tiện cài đặt sau đây.\n" +"Nếu không dùng, hãy bỏ chọn chúng." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Bạn có thể copy nội dung của các CD lên đĩa cứng trước khi thực hiện cài " +"đặt.\n" +"Sau đó tiếp tục tiến hành cài đặt từ đĩa cứng và các gói vẫn sẵn dùng ngay " +"sau khi cài đặt xong hệ thống." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Sao chép toàn bộ CD" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Lỗi xảy ra" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Hãy chọn tổ chức bàn phím" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Cài đặt/Nâng cấp" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "Thực hiện việc cài đặt hay nâng cấp ?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Cài đặt" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Nâng cấp %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Khóa mã hóa cho %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Đổi đĩa CD!\n" +"\n" +"Hãy nạp đĩa CD có nhãn \"%s\" vào ổ đĩa rồi nhấn OK.\n" +"Nếu bạn không có, nhấn Bỏ qua để không chạy cài đặt từ đĩa này." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Đang tìm các gói hiện có" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Hãy chọn nạp hoặc lưu lựa chọn gói tin.\n" +"Định dạng giống các tập tin auto_install được tạo." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Tải" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Lưu" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Tập tin lỗi" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Kích thước được chọn lớn hơn không gian hiện có" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Kiểu cài đặt" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Bạn đã không chọn bất kỳ một nhóm gói tin nào\n" +"Hãy chọn việc cài đặt tối thiểu mà bạn muốn" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Với X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Với tài liệu cơ bản (khuyến nghị!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Cài đặt thật tối thiểu (đặc biệt là không có urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Chuẩn bị cài đặt" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Đang cài đặt gói %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Lỗi khi đang xử lý các gói:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Vẫn cứ tiếp tục?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Cấu hình sau khi cài đặt" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "Hãy đảm bảo là phương tiện Update Modules có trong drive %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Cập nhật" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Các gói sau đây sẽ được cài đặt" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Lỗi khi thêm phương tiện" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Bây giờ bạn có thể tải xuống các gói cập nhật. Những gói này được cập nhật\n" +"sau khi phát hành phân phối Mageia này. Chúng có thể\n" +"là cập nhật sửa lỗi hay cập nhật bảo mật.\n" +"\n" +"Để tải về những gói này, bạn cần có một kết nối Internet hoạt động.\n" +"\n" +"Bạn có muốn cài đặt các gói cập nhật không ?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s trên %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Phần cứng" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Card âm thanh" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Giao diện đồ họa" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Mạng & Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Proxies" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "đã cấu hình" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Mức Bảo Mật" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Tường lửa" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "Đã kích hoạt" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "Đã tắt" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "Chưa đặt cấu hình cho X. Bạn có chắc là muốn như vậy không ?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Với mức bảo mật này, chỉ người quản trị mới có quyền truy cậpvào các tập tin " +"trong phân vùng Windows." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Nạp một đĩa mềm trắng vào ổ %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Đang tạo đĩa mềm cài đặt tự động" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Một số bước chưa được hoàn thành.\n" +"\n" +"Bạn thực sự muốn thoát ra bây giờ?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Chúc mừng" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Khởi động lại" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Chọn ngôn ngữ" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Địa phương hóa" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Giấy phép" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Chuột" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Dò tìm đĩa cứng" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Bàn phím" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Bảo mật" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Phân vùng đĩa" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Đang cài đặt" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Người dùng" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Trình nạp khởi động" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Cấu hình X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Tóm tắt" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Dịch vụ" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Cập nhật" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Thoát ra" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "URL của mirror?" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Đang kết nối với website của %s để lấy danh sách các mirrors hiệncó..." + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Chọn một mirror để tải các gói về" diff --git a/perl-install/install/share/po/wa.po b/perl-install/install/share/po/wa.po new file mode 100644 index 000000000..3adbd0be3 --- /dev/null +++ b/perl-install/install/share/po/wa.po @@ -0,0 +1,1709 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Lorint Hendschel <lorinthendschel@skynet.be>, 2002 +# Lucyin Mahin <lucyin@walon.org>, 2002-2003,2005 +# Pablo Saratxaga <pablo@mandriva.com>, 2000,2002-2004,2006 +# Pablo Saratxaga <pablo@walon.org>, 2003-2006,2016 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n" +"Language-Team: Walloon (http://www.transifex.com/MageiaLinux/mageia/language/" +"wa/)\n" +"Language: wa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "Pol famile!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "Po les programeus!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "Gråces!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "Avoz vs co ds ôtes sopoirts?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"Les sopoirts shuvants ont stî trovés eyet vont esse eployîs tins " +"d' l' astalaedje: %s\n" +"\n" +"\n" +"Avoz vs cor on sopoirt d' astalaedje a-z apontyî?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "Rantoele (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "Rantoele (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "Rantoele (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "Apontiaedje NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "Tapez l' no d' lodjoe eyet l' ridant di vosse sopoirt NFS" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "I manke li no d' lodjoe" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "Li ridant doet cmincî avou «/»" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "No d' lodjoe do montaedje NFS?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "Ridant" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "Di rawete" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" +"Dji n' sai trover l' djivêye di fitchîs so ç' muroe ci. Acertinez vs ki " +"l' eplaeçmint est corek." + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "«%s» contént les diferins bokets do sistinme et ses programes" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "«%s» contént des programes nén libes.\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "Dji cwir après les pacaedjes ki sont ddja astalés..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "Dji cwir après les pacaedjes a mete a djoû" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "Dji oistêye des pacaedjes divant d' fé l' metaedje a djoû..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"Les pacaedjes shuvants vont esse oistés, po pleur mete a djoû vosse " +"sistinme:\n" +" %s\n" +"\n" +"Voloz vs vormint oister ces pacaedjes la?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "Åk n' a nén stî come dji sayive di lére li fitchî %s" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "Les plakes shuvantes ont candjî d' no:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (lomêye divant %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "Rantoele" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "Tchoezixhoz on sopoirt s' i vs plait" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "Li fitchî egzistêye dedja. El voloz vs sipotchî?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "Permission rfuzêye" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "Måva no NFS" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "Måva sopoirt %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "Dji n' pou nén fé des waitroûlêyes divant l' pårtixhaedje" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "Les waitroûlêyes seront metowes el ridant %s après l' astalaedje" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "Astalaedje" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "Apontiaedje" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "Vos dvoz abwesner eto %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"Vos avoz di l' éndjolreye k' a mezåjhe di mineus «prôpietaire» po roter\n" +"Vos trovroz di l' informåcion so zels so: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "Metant li rantoele en alaedje" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "Dj' arestêye li rantoele" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "dji n' sai radjouter l' sopoirt" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "Dji copeye sacwants pacaedjes sol deure plake po pus tård" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "Dji copeye..." + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "k' i fåt d' tote foice aveur" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "ki vént bén a pont" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "mo plaijhi a-z aveur" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "plaijhi a-z aveur" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "ki vénreut co bén a pont" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" +"Pont d' info xml pol sopoirt «%s», i n' a k' on rzultat parciel pol pacaedje " +"%s" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "Nou discrijhaedje" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"Sacwants pacaedjes dimandés pa %s èn polèt nén esse astalés:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "Åk n' a nén stî:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "I gn a-st avou èn aroke moirt: %s." + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "Ni pus dmander" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "I gn a-st avou %d transaccions d' astalaedje k' ont fwait berwete" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "Posse éndjolrece" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "Posse di buro" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"Programes di buro: aspougneus di tecse (LibreOffice Writer, Kword), tåvleus " +"(LibreOffice Calc, Kspread), håyneus pdf, evnd." + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "Posse di djeus" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "Programes pasmints d' tins: årcåde, plateas, stratedjeye, evnd." + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "Posse multimedia" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "Programes po vey/schoûter/candjî des sons et videyos" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Posse pol rantoele daegnrece" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" +"Eshonna d' usteyes po lére et evoyî des messaedjes (pine, mutt, tin...) et " +"po naivyî so les pådjes waibe" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "Copiutrece rantoele (cliyint)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "Cliyints po les protocoles k' i gn a (ssh avou)" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "Usteyes po vos aveur pus åjhey d' apontyî vosse copiutrece" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Usteyes pol conzôle" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "Aspougneus, shells, usteyes po fitchîs, terminås" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Programaedje" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "Livreyes di programaedje C et C++, programes et fitchîs *.h" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Documintåcion" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Lives et Howtos so GNU/Linux et les libes programes" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Li «Linux Standard Base». Sopoirt po les programes tîces" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Sierveu waibe" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "Ovraedje e groupe" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Sierveu Kolab" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "Côpe feu/Routeu" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Pasrele pol rantoele daegnrece" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "Emilaedje/Copinreyes" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Sierveu d' emilaedje postfix, sierveu d' copinreyes INN" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "Sierveu d' botins" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "Sierveu FTP" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "Sierveu di nos d' dominne eyet d' informåcion rantoele" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "Sierveu di pårtaedje di fitchîs eyet di scrireces" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "Sierveu NFS, sierveu Samba" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "Sierveu, båzes di dnêyes" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "Sierveu båze di dnêyes PostgreSQL eyet MariaDB" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Sierveu, Waibe/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache eyet Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "Emilaedje" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Sierveu d' emilaedje postfix" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "Sierveu båze di dnêyes PostgreSQL ou MariaDB" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "Copiutrece sierveu sol rantoele" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "Sierveu NFS, sierveu SMB, sierveu procsi, sierveu SSH" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "Evironmint grafike" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Posse éndjolrece Plasma" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" +"L' evironmint di scribanne KDE, l' evironmint grafike di båze, avou ene " +"ramexhnêye d' usteyes ki vnèt avou" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "Posse éndjolrece GNOME" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" +"Èn evironmint grafike avou on hopea di programes amiståves et d' usteyes pol " +"sicribanne" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "Posse éndjolrece MATE" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Posse éndjolrece Cinnamon" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "Èn evironmint grafike båzé so GNOME" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "Sicribanne LXQt" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "Sicribanne LXDE" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "Ôtes sicribannes grafikes" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, evnd." + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "Usteyes" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "Sierveu SSH" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Sierveu d' apontiaedje då lon Webmin" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "Usteyes rantoele/Corwaitaedje" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "Usteyes di corwaitaedje, contaedje des process, tcpdump, nmap, ..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Macreas Mageia" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "Macreas po-z apontyî on sierveu" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"Åk n' a nén stî, et dji n' sai cmint m' saetchî l' cou foû des\n" +"strons. Si vos continouwez, vos dvroz tirer vosse plan tot seu." + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" +"Sacwants consecants pacaedjes n' ont nén stî astalés comifåt.\n" +"Motoit vosse lijheu di plakes lazer, oudonbén vosse plake lazer, ont\n" +"des rujhes.\n" +"Verifyîz vosse plake lazer sor ene copiutrece ddja astalêye, avou\n" +"l' comande «rpm -qpl media/main/*.rpm»\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "Intrant e l' etape '%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "Astalåcion di %s %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> candjî elemints" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"Vosse sistinme a po di rsources. Vos pôrîz aveur des rujhes po\n" +"l' astalåcion di %s. Si çoula arive, vos ploz sayî ene\n" +"astalåcion e môde tecse. Po çoula, tchoûkîz sol tape «F1» a l' enondaedje\n" +"et poy tapez «text»." + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "Tchoezi l' sopoirt" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "Astalåcion a vosse môde" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Sicribanne Plasma" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Sicribanne GNOME" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "Sicribanne a vosse môde" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "Tchoezi les groupes di pacaedjes" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "Tchoezi tchaeke pacaedje sepårumint" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "Distchoezi tot" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "Grandeu å totå: %d / %d Mo" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "Modêye: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "Grandeu: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d Ko\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "Impôrtance: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "Vos n' poloz nén tchoezi/distchoezi ci pacaedje chal" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "cåze di %s ki manke" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "cåze di %s ki n' est nén satisfyî" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "dji saye di promouvwer %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "po wårder %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" +"Vos n' poloz tchoezi ci pacaedje chal ca n' a nén del plaece assez ki po " +"l' astaler" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "Les pacaedjes ki shuvèt vont esse astalés" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "Les pacaedjes ki shuvèt vont esse disastalés" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "Ci pacaedje est obligatwere, vos n' poloz nén li distchoezi" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "Vos n' poloz nén distchoezi ci pacaedje chal. Il est ddja astalé" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "Vos n' poloz nén distchoezi ci pacaedje chal. I l' fåt mete a djoû" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "Mostrer les pacaedjes tchoezis otomaticmint" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "Astalaedje" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "Tcherdjî/schaper li tchuze des pacaedjes" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "Metaedje a djoû del tchuze des pacaedjes" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "Astalåcion minimåle" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "Manaedjaedje di programes" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "Tchoezixhoz les pacaedjes k' vos voloz astaler" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "Astalant" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "Po vey les rclames" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "Tins ki dmeure:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(dj' asteme...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d pacaedje" +msgstr[1] "%d pacaedjes" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "Rascourti éndjolreye" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "Apontyî" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "nén apontyî" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"Les sopoirts d' astalaedje shuvants ont stî trovés.\n" +"Si vos vloz passer houte di sacwants d' zels, vos les ploz asteure " +"distchoezi." + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"Vos ploz copyî l' contnou des plakes lazer so vosse deure plake divant " +"d' ataker l' astalaedje.\n" +"L' astalaedje si frè-st adon a pårti del deure plake, eyet les pacaedjes " +"vont dmorer disponibes on côp ki l' sistinme serè astalé." + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "Copyî les plakes lazer en etir" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "Dj' aroke so ene sacwè" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "Tchoezixhoz li sôre di vosse taprece" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "Voci l' djivêye di totes les tapreces k' on pout tchoezi:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "Astaler/Mete a djoû" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "C' est ene astalåcion ou on metaedje a djoû?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "Astalaedje" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "Metaedje a djoû di %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "Clé d' ecriptaedje po %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "Rinoncî a l' astalaedje, renonder l' sistinme" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "Novea astalaedje" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "Mete a djoû èn astalaedje di dvant (nén ricmandé)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "Plake lazer" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "Apontiaedje del plake lazer" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"Candjîz vosse CDROM!\n" +"\n" +"Metoz li CDROM lomé «%s» dvins l' lijheu, s' i vs plait;\n" +"et clitchîz so «'l est bon» on côp ki c' est fwait.\n" +"Si vos n' l' avoz nén, clitchîz so «Rinoncî» po rinoncî a astaler a pårti\n" +"di ci CDROM chal." + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "Dji cwir après les pacaedjes k' i gn a" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" +"I gn a pus del plaece assez so vosse sistinme po-z astaler ou mete a djoû " +"(%dMo > %dMo)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"Tchoezixhoz si vos vloz tcherdjî ou schaper li tchuze des pacaedjes.\n" +"Li cogne est l' minme ki po les fitchîs fwaits po l' oto-astalaedje." + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "Tcherdjî" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "Schaper" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "Måva fitchî" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "Tchoezi l' sicribanne" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "Li grandeu tchoezeye est pus grande kel plaece ki dmeure" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "Sôre d' astalaedje" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"Vos n' avoz tchoezi nou groupe di pacaedjes\n" +"Tchoezixhoz li sôre d' astalåcion minimom ki vos vloz" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "Avou X11" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "Astaler les pacaedjes ricmandés" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "Avou li documintåcion di båze (ricomandé!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "Astalåcion vormint minimom (i gn a nén di urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "Dj' aprestêye li metaedje a djoû..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "Dj' aprestêye l' astalaedje" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "Dj' astale li pacaedje %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "Åk n' a nén stî come dj' arindjive les pacaedjes:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "Dji continouwe tot l' minme?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "Rissayî" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "Passer houte di ç' pacaedje ci" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "Passer houte di tos les pacaedjes do sopoirt «%s»" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "Rivni al tchuze des pacaedjes et des sopoirts" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "Åk n' a nén stî come dj' astaléve li pacaedje %s." + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "Apontiaedje di post-astalåcion" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" +"Acertinez vs ki l' sopoirt di metaedje a djoû des modules est dins l' lijheu " +"%s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "Metaedjes a djoû" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "Çoucial permete d' astaler des metaedjes a djoû di såvrité" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, fuzzy, c-format +msgid "That downloader could not be installed" +msgstr "Les pacaedjes ki shuvèt vont esse astalés" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "Rissayî?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "Åk n' a nén stî tot radjoutant l' sopoirt" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"Vos avoz l' possibilité d' aberweter les pacaedjes k' on stî metous\n" +"a djoû dispoy li fijhaedje del distribucion.\n" +"I pôrént coridjî des bugs ou des problinmes di såvrité.\n" +"\n" +"Po ls aberweter, vos dvoz aveur on raloyaedje al daegntoele ki rote.\n" +"\n" +"Voloz vs astaler les pacaedjes metous a djoû?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%s so %s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "Éndjolreye" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "Cåte son" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "Eterface grafike" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "Rantoele locåle & daegnrece" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "Procsis" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "apontyî" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "Livea di såvrité" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "Côpe feu" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "metou en alaedje" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "dismetou" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" +"Vos n' avoz nén apontyî X11 (li sistinme di håynaedje grafike).\n" +"Estoz vs seur di voleur çoula?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "Dj' aprestêye li programe di prumî enondaedje..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" +"Dins ç' livea di såvrité chal, l' accès åzès fitchîs des pårticions Windows " +"n' est possibe ki po l' manaedjeu di l' éndjole." + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "Metoz ene blanke plakete divins li lijheu %s" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "Dji fé li plakete d' enondaedje otomatike" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"Sacwantès etapes n' ont nén stî fwaites,\n" +"\n" +"Voloz vs vormint cwiter asteure?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "Complumints" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Renonder l' éndjole" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "Lingaedje" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "Locålizaedje" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "Licince" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "Sori" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "Trover les deurès plakes" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "Li classe d' astalåcion" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "Taprece" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "Såvrité" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "Pårtixhaedje" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "Abwesnaedje" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "Tchoezi les pacaedjes" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "Astalant" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "Uzeus" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "Enondrece" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "Apontyî X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "Rascourti éndjolreye" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "Siervices" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "Metaedjes a djoû" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "Moussî foû" + +#, c-format +#~ msgid "URL of the mirror?" +#~ msgstr "Hårdêye do muroe?" + +#, c-format +#~ msgid "URL must start with ftp:// or http://" +#~ msgstr "Li hårdêye doet cmincî avou «ftp://» ou «http://»" + +#, c-format +#~ msgid "Contacting %s web site to get the list of available mirrors..." +#~ msgstr "" +#~ "Dj' atôtche li waibe da %s po-z aveur li djivêye des muroes k' i gn a" + +#, c-format +#~ msgid "Failed contacting %s web site to get the list of available mirrors" +#~ msgstr "" +#~ "Dji n' a savou atôtchî l' waibe da %s po-z aveur li djivêye des muroes " +#~ "k' i gn a" + +#, c-format +#~ msgid "Choose a mirror from which to get the packages" +#~ msgstr "Tchoezixhoz on muroe po nd aberweter des pacaedjes foû" diff --git a/perl-install/install/share/po/xh.po b/perl-install/install/share/po/xh.po new file mode 100644 index 000000000..84687177e --- /dev/null +++ b/perl-install/install/share/po/xh.po @@ -0,0 +1,1608 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Xhosa (http://www.transifex.com/MageiaLinux/mageia/language/" +"xh/)\n" +"Language: xh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "Ubhekiso phambili" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "Ulwenziwo lwamaxwebhu" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Phinda umisele inkqubo" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" diff --git a/perl-install/install/share/po/zh_CN.po b/perl-install/install/share/po/zh_CN.po new file mode 100644 index 000000000..87886bf5a --- /dev/null +++ b/perl-install/install/share/po/zh_CN.po @@ -0,0 +1,1665 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Danny Zeng <danny@zeng.com.cn>, 2000,2002 +# Dmitry <dmitrydmitry761@gmail.com>, 2021,2024 +# Funda Wang <fundawang@linux.net.cn>, 2002-2005 +# Jesse Kuang <kjx@mandriva.com>, 2002 +# Shiyu Tang <shiyutang@netscape.net>, 2003-2004 +# xiao wenming <xwm-citcc5@hotmail.com>, 2015 +# zwpwjwtz <zwpwjwtz@126.com>, 2016,2018 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Dmitry <dmitrydmitry761@gmail.com>, 2021,2024\n" +"Language-Team: Chinese (China) (http://app.transifex.com/MageiaLinux/mageia/" +"language/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "加入我们!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "得心应手" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "你的选择!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "办公工具" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "家庭娱乐" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "给孩子们的……" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "给家人的……" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "给开发者的……" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "谢谢!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "一切自由!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "您有其它赠品介质吗?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"找到了下列介质,并且在安装时会使用:%s。\n" +"\n" +"\n" +"您是否想要配置赠品安装介质?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "网络 (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "网络 (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "网络 (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "NFS 设置" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "请输入您 NFS 介质的主机名和目录" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "缺少主机名" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "目录必须以“/”开头" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS 挂载的主机名?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "目录" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "赠品" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "无法在此镜像上找到软件包列表文件。请确定位置正确。" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core 发布" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted 发布" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree 发布" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "您的机器上有一些硬件需要非自由固件来支持驱动(自由软件)运行。" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "您应当启用“%s”" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "“%s”包含系统及其应用的各种部件" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" 包含非自由软件。\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"它也包含支持特定设备运行的固件(如:一些 ATI/AMD 显卡、网卡和 RAID 卡)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "“%s”包含因软件专利问题无法在所有国家分发的软件" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "它也包含由“%s”重新构建,并加入了额外功能的软件" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "此处您可以启用更多媒体。" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "这些媒体提供了来自媒体“%s”的软件包更新" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "正在查找已经安装过的软件包..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "正在寻找可升级的程序..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "正在删除由于更新所致的软件包..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"为了升级您的系统, 将要删除下列的软件包: %s\n" +"\n" +"\n" +"您确定要删除这些软件包吗?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "请取文件 %s 出错" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "下列盘片已重命名:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s(以前的名称为 %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "网络" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "请选择介质" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "文件已经存在。覆盖吗?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "没有权限" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "无效的 NFS 名称" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "无效的介质 %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "无法在分区完成之前进行屏幕捕捉" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "安装完成后, 所有的屏幕抓图都会保存到 %s 之中" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "安装" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "配置" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "您还必须格式化 %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"您系统中的部分硬件需要“私有”的驱动程序才能工作。\n" +"有关它们的情况, 请您查看: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "正在启动网络" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "正在禁用网络" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "请稍候,正在获取文件" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "无法添加介质" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "正在将软件包复制到磁盘中以备后用" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "复制进行中" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "必须拥有" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "非常重要" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "比较重要" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "一般" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "或许有用" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "从 XML元数据获取软件包信息……" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "未找到介质“%s”的 XML 信息,只返回软件包 %s 的部分结果" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "无描述" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"%s 所请求的某些软件包无法安装:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "发生了一个错误:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "发生了一个致命错误: %s。" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "不要再次询问" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d 个安装交易失败" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "安装软件包失败:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "工作站" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "办公工作站" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"办公程序: 字处理(LibreOffice Writer、Kword), 电子表格(LibreOffice Calc、" +"Kspread)、PDF 阅读器等" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "游戏机" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "游戏程序: 街机、棋盘、战略等等" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "多媒体工作站" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "声音和视频播放/编辑程序" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "Internet 工作站" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "一组工具, 用于收发电子邮件及新闻组(mutt, tin..), 浏览网站" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "网络计算机(客户端)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "SSH 等不同协议客户端" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "简化计算机配置的工具" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "控制台工具" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "编辑器, shell, 文件工具, 终端" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "开发" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C 和 C++ 开发库, 程序及头文件" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "文档" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "有关 Linux 和自由软件的书籍和指南" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "Linux Standard Base。第三方应用程序支持" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "Web 服务器" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "群件" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab 服务器" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "防火墙/路由器" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "Internet 网关" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "邮件/新闻" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix 邮件服务器、Inn 新闻服务器" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "目录服务器" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP 服务器" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "域名和网络信息服务器" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "文件和打印机共享服务器" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS 服务器、Samba 服务器" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "数据库" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL 和 MariaDB 数据库服务" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache 和 Pro-ftpd" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "邮件" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix 邮件服务器" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL 或 MariaDB 数据库服务" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "网络计算机服务器" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS 服务器, SMB 服务器, 代理服务器, SSH 服务器" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "图形环境" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma 工作站" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "KDE 桌面环境, 基本的图形环境和一组配套的工具" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME 工作站" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "配备了用户友善的应用程序与桌面工具的图形环境" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce 工作站" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "一个轻量级的图形化环境,包含了用户友好的应用程序和桌面工具。" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE工作站" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon工作站" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "一种基于GNOME的图形环境" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt桌面" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "轻量级桌面环境的 QT 移植版本" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment 桌面" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "轻便、快捷、专注的图形化环境" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE 桌面" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "一种轻量级的快速图形环境" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "其它图形桌面" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, 等等" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "工具" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH 服务器" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin 远程配置服务器" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "网络工具/监视" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "监视工具、进程统计、tcpdump、nmap……" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia 向导" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "服务器配置向导" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"发生错误, 可是我不知道该怎样处理才好。\n" +"继续下去会怎样就看您的运气了。" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"一些重要软件包没有正确的安装。\n" +"您的光盘或者驱动器可能有缺陷。\n" +"请在一台安装好的电脑上检查光盘, 命令是“rpm -qpl media/main/*.rpm”\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "进入步骤“%s”\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s 安装 %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> 可在元素间切换" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg 启动很慢,请稍候..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"您系统的资源过低。您在安装 %s 的过程中可能遇到问题。\n" +"如果您真的遇到问题的话,可以试试文本安装。要进入文本安装,请在启动时按“F1”," +"然后输入“text”。" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "介质选择" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "安装 %s Plasma 桌面" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "安装 %s GNOME 桌面" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "自定义安装" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma 桌面" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "GNOME 桌面" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "自定义桌面" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "这是“%s”桌面的预览。" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "单击图像可查看更大的预览" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "程序组选择" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "选择单个软件包" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "全部不选" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "总共大小: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "版本: " + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "大小: " + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "重要程度: " + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "您不能改变这个软件包的选定" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "由于缺少 %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "由于不满足的 %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "尝试推广 %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "为了保留 %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "您不可以选择这个软件包。没有足够空间安装它。" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "即将安装下列软件包" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "即将卸载下列软件包" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "这个软件包是必需的, 不能取消选定" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "您不可以取消选择这个软件包。它已经安装过了" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "您不能不选择这个软件包。它必须升级" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "自动显示选中的软件包" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "安装" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "装入/保存选择" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "更新软件包选择" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "在包的分层列表和平面列表之间切换" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "最小安装" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "软件管理" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "选择您想要安装的软件包" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "安装" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "无细节" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "剩余时间:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(正在估计...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d 个软件包" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "摘要" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "配置" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "未配置" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"找到了下列安装介质。\n" +"如果您想要跳过其中一些, 请不要选中。" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"您可以选择在安装之前将光盘的全部内容复制到硬盘中。\n" +"然后,安装将会从硬盘继续进行。当系统安装完成后,软件包仍然保留,以供日后添加" +"软件使用。" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "复制整张光盘" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "发生了一个错误" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "请选择您使用的键盘布局。" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "在此列出了可用的全部键盘:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "安装/升级" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "现在要新装还是升级?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "安装" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "升级 %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "%s 的加密密钥" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "取消安装,重新启动系统" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "全新安装" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "升级先前的安装(不推荐)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"安装程序检测到您所安装的 Linux 系统无法安全升级到 %s。\n" +"\n" +"我们建议您进行全新安装,以便替换您先前的系统。\n" +"\n" +"警告:您在选择“全新安装”之前应该备份您所有的个人数据。" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "配置 CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"请换另一片光盘!\n" +"\n" +"请在驱动器中插入标有“%s”的光盘, 然后单击“确定”。\n" +"如果您没有这张光盘, 请单击“取消”, 放弃安装这张光盘上的软件。" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "正在寻找可安装的程序..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "系统的剩余空间不足以完成安装或升级(%d MB > %d MB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"请选择装入或保存软件包选择息。\n" +"格式与自动安装生成的文件一样。" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "装入" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "保存" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "文件有错" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "桌面选择" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "您可以选择您的工作站配置文件:" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "您选择的超过可用空间" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "安装类型" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "您没有选择任何的组件, 请选择最小安装:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "安装 X" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "安装推荐的软件包" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "安装基础文档(建议!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "真正最小安装(注意没有 urpmi 包管理工具)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "升级准备中......" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "正在准备安装" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "正在安装软件包 %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "排列软件包时出错: " + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "真的要继续?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "重试" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "跳过此软件包" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "跳过介质“%s”中的全部软件包" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "返回介质和软件包选择" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "安装软件包 %s 时出错。" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "安装后的配置" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "请确定更新模块介质位于驱动器 %s" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "更新" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "您现在可以配置在线媒体。" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "允许安装安全更新。" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"要安装这些媒体,您需要确保互联网连接正常。\n" +"\n" +"您希望安装更新媒体吗?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "无法安装此引导加载程序" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "重试一次吗?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "添加介质失败" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"您现在有机会下载软件更新包。更新软件包是在发行版发布之后发布的。它们可能包含" +"对一些安全问题或故障的修改。\n" +"\n" +"要下载这些软件包, 您的网络连接必须已经配置好并且可以使用。\n" +"\n" +"您是否要安装升级包?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "位于 %2$s 上的 %1$s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "硬件" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "声卡" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "图形界面" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "网络和 Internet" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "代理服务器" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "已配置" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "安全级别" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "防火墙" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "已激活" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "已禁用" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "您还没有配置过 X。您真的想要这样吗?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "正在准备安装初始安装程序..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "请稍候,这可能需要一会儿..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "在此安全级别中, 只有管理员才能访问 Windows 分区中的文件。" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "请在驱动器 %s 中插入一张空白软盘" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "正在创建自动安装软盘..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"某些步骤没有完成。\n" +"\n" +"您真的要现在退出吗?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "恭喜" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "重新启动" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "语言" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "本地化" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "许可" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "鼠标" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "硬盘检测" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "安装类别" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "键盘" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "安全" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "分区" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "格式化" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "选择软件包" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "安装" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "用户" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "引导程序" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "配置 X" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "摘要" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "服务" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "更新" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "退出" diff --git a/perl-install/install/share/po/zh_TW.po b/perl-install/install/share/po/zh_TW.po new file mode 100644 index 000000000..8aecc4968 --- /dev/null +++ b/perl-install/install/share/po/zh_TW.po @@ -0,0 +1,1659 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Cheng-Chia Tseng <pswo10680@gmail.com>, 2018 +# You-Cheng Hsieh <yochenhsieh@gmail.com>, 2015-2016,2018 +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2013-04-04 13:31+0000\n" +"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>, 2018\n" +"Language-Team: Chinese (Taiwan) (http://app.transifex.com/MageiaLinux/mageia/" +"language/zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "加入我們!" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "讓它更貼近您的心意!" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "您的選擇!" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "辦公工具" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "家庭娛樂" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "適合孩童" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "適合家庭!" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "適合開發者!" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "感謝您!" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "享受自由!" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "您還有其他的補充媒體嗎?" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" +"已經找到下列媒體,它們將會在安裝過程中使用到:%s。\n" +"\n" +"\n" +"您有其他的安裝媒體需要設定嗎?" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "網路 (HTTP)" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "網路 (FTP)" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "網路 (NFS)" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "設定 NFS" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "請輸入您的 NFS 媒體的主機和目錄名稱" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "沒有主機名稱" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "目錄必須以「/」開始" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "NFS 掛載點的主機名稱?" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "目錄" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "補充" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "無法在這個鏡像站上找到軟體套件列表檔。請確定位址是正確的。" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "Core 發行版" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "Tainted 發行版" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "Nonfree 發行版" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "您的機器上的某些硬體需要非自由的軔體才能夠讓自由的驅動程式運作。" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "您應該啟用 \"%s\"" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "\"%s\" 包含各種系統元件和應用程式" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "\"%s\" 包含非自由軟體。\n" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" +"它也包含某些裝置運作時所需要的軔體(如:某些 ATI/AMD 顯示卡、網路卡、RAID介面" +"卡...)" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "\"%s\" 包含因為軟體專利而無法在所有國家散布的軟體。" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "它也包含了 \"%s\" 中以不同方式編譯的軟體。" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "您可以在這裡啟用更多媒體。" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "這個媒體包含 \"%s\" 媒體的軟體套件更新" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "正在查看已經安裝過的軟體套件..." + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "正在搜尋要升級的軟體套件..." + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "先移除軟體套件以便升級..." + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" +"下列軟體套件將移除以升級您的系統:%s\n" +"\n" +"\n" +"您確定要移除這些軟體套件嗎?\n" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "讀取檔案 %s 時發生錯誤" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "下列磁碟已經改名:" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "%s (原本為 %s)" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "HTTP" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "FTP" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "NFS" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "網路" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "請選擇一個媒體" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "檔案已經存在了。要覆蓋它嗎?" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "權限不足" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "錯誤的 NFS 名稱" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "損壞的媒體 %s" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "在尚未進行分割前無法提供畫面捕捉功能" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "在安裝後您可以於 %s 取得螢幕截圖" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "安裝" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "組態設定" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "您也必須要格式化 %s" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" +"某些在您電腦上的硬體需要 \"專有版權\" 的驅動程式以便於能夠工作。\n" +"您可以在這裡找到一些相關的資訊: %s" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "啟動網路" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "關閉網路" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "請稍後,正在取回檔案" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "無法新增媒體" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "正在複製一些軟體套件到磁碟以供稍後使用" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "複製進行中" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "必備的" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "重要的" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "極好的" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "好的" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "或許" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "正在從 XML 中介資料中取得軟體套件資訊..." + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "\"%s\" 媒體沒有 XML 資訊,所以 %s 軟體套件只有部份結果" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "沒有描述" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" +"無法安裝 %s 要求的某些軟體套件:\n" +"%s" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "發生一個錯誤:" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "發生了一個致命的錯誤:%s。" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "不要再詢問" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "%d 個安裝執行失敗" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "軟體套件安裝失敗:" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "工作站" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "辦公軟體平台" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" +"辦公軟體:文書處理軟體 (LibreOffice Writer、Kword)、試算表 (OpenOffice.org " +"Calc、Kspread)、PDF 檢視器等等" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "遊戲平台" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "娛樂的一些程式:紙牌、益智、動作、策略等" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "多媒體平台" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "音效以及影像撥放編輯程式" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "網際網路平台" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "包含讀信、寄信和閱讀新聞群組 (mutt、tin ..) 以及網路瀏覽的工具" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "網路電腦 (客戶端)" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "包含 ssh 等其他不同通訊協定的用戶端程式" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "讓您方便設定您系統的工具" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "Console 工具" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "編輯器、shell、檔案工具、終端機" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "程式開發" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "C/C++ 發展環境,包含編譯器、程式庫與及一些引入檔" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "文件檔案" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "Linux 系統與自由軟體的書籍、HOWTO 文件" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "LSB" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "LSB 的支援,包含第三類協力廠商軟體支援" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "網頁伺服器 (Web)" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "Apache" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "群組軟體" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "Kolab 伺服器" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "防火牆/路由器" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "網際網路閘道器" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "郵件/新聞" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "Postfix 郵件伺服器,Inn 新聞伺服器" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "目錄伺服器" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "FTP 伺服器" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "ProFTPd" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "DNS/NIS" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "網域名稱與網路資訊伺服器" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "檔案與列印分享伺服器" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "NFS 伺服器、Samba 伺服器" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "資料庫軟體" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "PostgreSQL 與 MariaDB 資料庫伺服器" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "Web/FTP" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "Apache、ProFTPD" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "電子郵件" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "Postfix 郵件伺服器" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "PostgreSQL、MariaDB 資料庫" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "網路伺服器" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "NFS 伺服器、SMB 伺服器、Proxy 伺服器、SSH 伺服器" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "圖形環境" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "Plasma 工作站" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "K 桌面環境,包含許多好用的圖型介面工具程式" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "GNOME 工作站" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "包含友善的應用程式、桌面軟體的圖型化使用環境" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "Xfce 工作站" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "一個包含友善的應用程式和桌面工具的輕量圖形環境" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "MATE 工作站" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "Cinnamon 工作站" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "一個以 GNOME 為基礎的圖形環境" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "LXQt 桌面" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "輕量桌面環境的下一代 QT 版本" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "Enlightenment 桌面" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "有忠實支持者的輕量快速圖形環境" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "LXDE 桌面" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "一個輕量且快速的圖形環境" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "其他圖型桌面軟體" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "Window Maker, Fvwm, 等" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "工具軟體" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "SSH 伺服主機" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "Webmin" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "Webmin 遠端設定伺服器" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "網路工具/監控" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "監控工具、程序管理、tcpdump、nmap..." + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "Mageia 精靈" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "用來設定伺服器的精靈" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" +"發生了一個錯誤,但我不知道該如何妥善處置它。\n" +"要繼續安裝工作的話請小心。" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*." +"rpm\"\n" +msgstr "" +"有某些重要的軟體套件沒有妥善安裝。\n" +"可能是您的光碟機或者是光碟片有缺陷。\n" +"請將光碟放在一個已經安裝好的電腦上使用 \"rpm -qpl media/main/*.rpm\" 來檢查\n" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "進入步驟 `%s'\n" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "%s 安裝 %s" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "<Tab>/<Alt-Tab> 在元件間移動" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "Xorg 伺服器的啟動較為緩慢。請稍候..." + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" +"您的系統資源不足,可能在安裝 %s 時會發生問題。如果真的發生問題,您可以試著改" +"用文字介面安裝。只要在用光碟開機後的選單中按下 F1,並輸入 text 即可。" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "選擇安裝媒體" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "安裝 %s Plasma 桌面" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "安裝 %s GNOME 桌面系統" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "自訂安裝" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "Plasma 桌面" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "Gnome 桌面" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "自訂桌面" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "這是 '%s' 桌面的預覽。" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "在影像上點選以觀看較大的預覽畫面" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "軟體套件群組選擇" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "個別軟體套件選取" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "取消選取所有項目" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "總共大小: %d / %d MB" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "版本:" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "大小:" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "%d KB\n" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "重要性:" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "您不可以選擇/取消選擇這個軟體套件" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "因為遺失 %s" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "由於沒有滿足 %s" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "正在嘗試促進 %s" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "為了保留 %s" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "您不可以選取這個軟體套件,因為剩餘的空間不夠安裝" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "下列的軟體套件將會安裝" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "下列的軟體套件將會移除" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "這是個強制軟體套件,您不能不選取" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "您不能不選這個軟體套件。它已經安裝。" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "您不能不選這個軟體套件。它必須升級" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "顯示自動被選取的軟體套件" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "安裝" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "載入/儲存選取" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "正在更新軟體套件選擇" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "在包的分层列表和平面列表之间切换" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "最小安裝" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "軟體管理" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "選擇您想要安裝的軟體套件" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "正在安裝" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "不看詳細資訊" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "剩餘時間:" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "(正在估計...)" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "%d 個軟體套件" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "總結" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "設定" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "未被設定" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" +"已經找到下列的安裝媒體。\n" +"如果您想略過它們,您現在可以將它們取消選取。" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" +"您可以選擇在安裝前將光碟的內容複製到硬碟。\n" +"稍後將會由硬碟繼續安裝,而這些軟體套件在安裝完畢之後仍然可繼續使用。" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "複製整張光碟" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "發生一個錯誤" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "請選取鍵盤排列的樣式。" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "以下是所有可用的鍵盤清單:" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "安裝/升級" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "這是安裝或是升級?" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "安裝" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "升級 %s" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "加密金鑰於 %s" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "取消安裝,重新開機" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "新的安裝" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "升級之前的安裝 (不建議)" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" +"安裝器偵測到您所安裝的 Mageia Linux 系統無法安全地更新到 %s。\n" +"\n" +"建議您重新安裝,而不要用升級的。\n" +"\n" +"警告:在您選擇「新安裝」之前,您應該備份您所有的個人資料。" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "CD/DVD" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "設定 CD/DVD" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" +"更換光碟片!\n" +"請插入標示為 \"%s\" 的光碟於您的光碟機中,完成後請按下確定。\n" +"若是您沒有這片光碟,請點選取消以略過這一片光碟的安裝。" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "正在搜尋可以用的軟體套件..." + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "您的系統剩餘的空間不足以安裝或升級 (%dMB > %dMB)" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" +"請選擇要載入或者儲存的軟體套件。\n" +"它使用與自動安裝所產生的檔案相同的格式。" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "載入" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "儲存" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "損壞的檔案" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "Plasma" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "GNOME" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "桌面環境選擇" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "您可以選擇您工作站的桌面環境:" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "所選取的大小超過可用的空間" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "安裝類型" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" +"您並未選取任何軟體套件群組。\n" +"請選擇您想要的最小安裝:" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "包含 X 環境" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "安裝建議的軟體套件" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "包含基本的說明文件 (建議的!)" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "真正最小安裝 (尤其無 urpmi)" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "正在準備升級..." + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "正在準備安裝" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "正在安裝軟體套件 %s" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "排列軟體套件時發生錯誤:" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "無論如何都要繼續嗎?" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "重試" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "略過這個軟體套件" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "略過所有 %s 媒體的軟體套件" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "回到媒體與軟體套件選擇" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "安裝 %s 軟體套件時發生錯誤。" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "安裝後的設定" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "請確定更新模組媒體位於磁碟機 %s 中" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "更新" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "您現在有機會設定線上媒體來源。" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "這能讓您安裝安全更新。" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" +"要設定這些來源,您需要有可運作的網路連線。\n" +"您想要設定更新來源嗎?" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "无法安装此引导加载程序" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "重試?" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "新增媒體時發生錯誤" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" +"您現在有機會下載更新軟體套件。這些軟體套件在散布版發行之後已經被更新過了。\n" +"他們或許有安全性或臭蟲修正。\n" +"\n" +"要下載這些軟體套件,您需要有正常運作的網際網路連線。\n" +"\n" +"您想要安裝更新嗎?" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "%2$s 上的 %1$s" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "硬體" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "音效卡" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "圖形介面" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "網路與網際網路" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "代理伺服器" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "已設定" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "安全層級" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "防火牆" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "已啟用" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "已停用" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "您尚未設定 X。您確定您真的要這樣做?" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "正在準備初始化啟動程式..." + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "請耐心等候,這要花一些時間..." + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "在這個安全層級中,只有管理者能夠存取位於 Windows 分割區的檔案。" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "請在 %s 中插入一片空白磁片" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "正在製作自動安裝磁片..." + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" +"還有些步驟沒有完成。\n" +"\n" +"您確定要結束安裝程式?" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "恭喜" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "重新開機" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "語言" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "地區化" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "授權" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "滑鼠" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "硬碟偵測" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "安裝類別" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "鍵盤" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "安全性" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "分割磁區" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "正在格式化" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "選取軟體套件" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "正在安裝" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "使用者" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "開機載入器" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "設定 X 環境" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "總結" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "服務" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "更新" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "離開" diff --git a/perl-install/install/share/po/zu.po b/perl-install/install/share/po/zu.po new file mode 100644 index 000000000..884dd0f8c --- /dev/null +++ b/perl-install/install/share/po/zu.po @@ -0,0 +1,1608 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Mageia\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-21 21:16+0000\n" +"PO-Revision-Date: 2019-06-07 08:35+0000\n" +"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" +"Language-Team: Zulu (http://www.transifex.com/MageiaLinux/mageia/language/" +"zu/)\n" +"Language: zu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../advertising/01_IM_mageia.pl:1 +#, c-format +msgid "Join Us!" +msgstr "" + +#: ../../advertising/02_IM_mageia.pl:1 +#, c-format +msgid "Make it yours!" +msgstr "" + +#: ../../advertising/03_IM_mageia.pl:1 +#, c-format +msgid "Your choice!" +msgstr "" + +#: ../../advertising/04_IM_mageia.pl:1 +#, c-format +msgid "Office tools" +msgstr "" + +#: ../../advertising/05_IM_mageia.pl:1 +#, c-format +msgid "Home entertainment" +msgstr "" + +#: ../../advertising/06_IM_mageia.pl:1 +#, c-format +msgid "For kids" +msgstr "" + +#: ../../advertising/07_IM_mageia.pl:1 +#, c-format +msgid "For family!" +msgstr "" + +#: ../../advertising/08_IM_mageia.pl:1 +#, c-format +msgid "For developers!" +msgstr "" + +#: ../../advertising/09_IM_mageia.pl:1 +#, c-format +msgid "Thank you!" +msgstr "" + +#: ../../advertising/10_IM_mageia.pl:1 +#, c-format +msgid "Be Free!" +msgstr "" + +#: any.pm:151 +#, c-format +msgid "Do you have further supplementary media?" +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:154 +#, c-format +msgid "" +"The following media have been found and will be used during install: %s.\n" +"\n" +"\n" +"Do you have a supplementary installation medium to configure?" +msgstr "" + +#: any.pm:162 +#, c-format +msgid "Network (HTTP)" +msgstr "" + +#: any.pm:163 +#, c-format +msgid "Network (FTP)" +msgstr "" + +#: any.pm:164 +#, c-format +msgid "Network (NFS)" +msgstr "" + +#: any.pm:224 +#, c-format +msgid "NFS setup" +msgstr "" + +#: any.pm:225 +#, c-format +msgid "Please enter the hostname and directory of your NFS media" +msgstr "" + +#: any.pm:229 +#, c-format +msgid "Hostname missing" +msgstr "" + +#: any.pm:230 +#, c-format +msgid "Directory must begin with \"/\"" +msgstr "" + +#: any.pm:234 +#, c-format +msgid "Hostname of the NFS mount ?" +msgstr "" + +#: any.pm:235 +#, c-format +msgid "Directory" +msgstr "" + +#: any.pm:265 +#, c-format +msgid "Supplementary" +msgstr "" + +#: any.pm:300 +#, c-format +msgid "" +"Can't find a package list file on this mirror. Make sure the location is " +"correct." +msgstr "" + +#: any.pm:325 +#, c-format +msgid "Core Release" +msgstr "" + +#: any.pm:327 +#, c-format +msgid "Tainted Release" +msgstr "" + +#: any.pm:329 +#, c-format +msgid "Nonfree Release" +msgstr "" + +#: any.pm:367 +#, c-format +msgid "" +"Some hardware on your machine needs some non free firmwares in order for the " +"free software drivers to work." +msgstr "" + +#: any.pm:368 +#, c-format +msgid "You should enable \"%s\"" +msgstr "" + +#: any.pm:419 +#, c-format +msgid "\"%s\" contains the various pieces of the systems and its applications" +msgstr "" + +#: any.pm:420 +#, c-format +msgid "\"%s\" contains non free software.\n" +msgstr "" + +#: any.pm:421 +#, c-format +msgid "" +"It also contains firmwares needed for certain devices to operate (eg: some " +"ATI/AMD graphic cards, some network cards, some RAID cards, ...)" +msgstr "" + +#: any.pm:422 +#, c-format +msgid "" +"\"%s\" contains software that can not be distributed in every country due to " +"software patents." +msgstr "" + +#: any.pm:423 +#, c-format +msgid "" +"It also contains software from \"%s\" rebuild with additional capabilities." +msgstr "" + +#: any.pm:429 +#, c-format +msgid "Here you can enable more media if you want." +msgstr "" + +#: any.pm:447 +#, c-format +msgid "This medium provides package updates for medium \"%s\"" +msgstr "" + +#: any.pm:558 +#, c-format +msgid "Looking at packages already installed..." +msgstr "" + +#: any.pm:593 +#, c-format +msgid "Finding packages to upgrade..." +msgstr "" + +#: any.pm:612 +#, c-format +msgid "Removing packages prior to upgrade..." +msgstr "" + +#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX +#: any.pm:850 +#, c-format +msgid "" +"The following packages will be removed to allow upgrading your system: %s\n" +"\n" +"\n" +"Do you really want to remove these packages?\n" +msgstr "" + +#: any.pm:1075 +#, c-format +msgid "Error reading file %s" +msgstr "" + +#: any.pm:1283 +#, c-format +msgid "The following disk(s) were renamed:" +msgstr "" + +#: any.pm:1285 +#, c-format +msgid "%s (previously named as %s)" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "HTTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "FTP" +msgstr "" + +#: any.pm:1342 +#, c-format +msgid "NFS" +msgstr "" + +#: any.pm:1361 steps_interactive.pm:979 +#, c-format +msgid "Network" +msgstr "" + +#: any.pm:1365 +#, c-format +msgid "Please choose a media" +msgstr "" + +#: any.pm:1381 +#, c-format +msgid "File already exists. Overwrite it?" +msgstr "" + +#: any.pm:1385 +#, c-format +msgid "Permission denied" +msgstr "" + +#: any.pm:1433 +#, c-format +msgid "Bad NFS name" +msgstr "" + +#: any.pm:1454 +#, c-format +msgid "Bad media %s" +msgstr "" + +#: any.pm:1498 +#, c-format +msgid "Cannot make screenshots before partitioning" +msgstr "" + +#: any.pm:1509 +#, c-format +msgid "Screenshots will be available after install in %s" +msgstr "" + +#: gtk.pm:134 +#, c-format +msgid "Installation" +msgstr "" + +#: gtk.pm:138 share/meta-task/compssUsers.pl:48 +#, c-format +msgid "Configuration" +msgstr "" + +#: install2.pm:220 +#, c-format +msgid "You must also format %s" +msgstr "" + +#: interactive.pm:16 +#, c-format +msgid "" +"Some hardware on your computer needs ``proprietary'' drivers to work.\n" +"You can find some information about them at: %s" +msgstr "" + +#: interactive.pm:22 +#, c-format +msgid "Bringing up the network" +msgstr "" + +#: interactive.pm:27 +#, c-format +msgid "Bringing down the network" +msgstr "" + +#: media.pm:397 +#, c-format +msgid "Please wait, retrieving file" +msgstr "" + +#: media.pm:704 +#, c-format +msgid "unable to add medium" +msgstr "" + +#: media.pm:744 +#, c-format +msgid "Copying some packages on disks for future use" +msgstr "" + +#: media.pm:797 +#, c-format +msgid "Copying in progress" +msgstr "" + +#: pkgs.pm:32 +#, c-format +msgid "must have" +msgstr "" + +#: pkgs.pm:33 +#, c-format +msgid "important" +msgstr "" + +#: pkgs.pm:34 +#, c-format +msgid "very nice" +msgstr "" + +#: pkgs.pm:35 +#, c-format +msgid "nice" +msgstr "" + +#: pkgs.pm:36 +#, c-format +msgid "maybe" +msgstr "" + +#: pkgs.pm:103 +#, c-format +msgid "Getting package information from XML meta-data..." +msgstr "" + +#: pkgs.pm:112 +#, c-format +msgid "No xml info for medium \"%s\", only partial result for package %s" +msgstr "" + +#: pkgs.pm:120 +#, c-format +msgid "No description" +msgstr "" + +#: pkgs.pm:290 +#, c-format +msgid "" +"Some packages requested by %s cannot be installed:\n" +"%s" +msgstr "" + +#: pkgs.pm:386 pkgs.pm:413 +#, c-format +msgid "An error occurred:" +msgstr "" + +#: pkgs.pm:405 +#, c-format +msgid "A fatal error occurred: %s." +msgstr "" + +#: pkgs.pm:912 pkgs.pm:954 +#, c-format +msgid "Do not ask again" +msgstr "" + +#: pkgs.pm:928 +#, c-format +msgid "%d installation transactions failed" +msgstr "" + +#: pkgs.pm:929 +#, c-format +msgid "Installation of packages failed:" +msgstr "" + +#: share/meta-task/compssUsers.pl:16 +#, c-format +msgid "Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:18 +#, c-format +msgid "Office Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:20 +#, c-format +msgid "" +"Office programs: wordprocessors (LibreOffice Writer, Kword), spreadsheets " +"(LibreOffice Calc, Kspread), PDF viewers, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:26 +#, c-format +msgid "Game station" +msgstr "" + +#: share/meta-task/compssUsers.pl:27 +#, c-format +msgid "Amusement programs: arcade, boards, strategy, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:30 +#, c-format +msgid "Multimedia station" +msgstr "" + +#: share/meta-task/compssUsers.pl:31 +#, c-format +msgid "Sound and video playing/editing programs" +msgstr "" + +#: share/meta-task/compssUsers.pl:36 +#, c-format +msgid "Internet station" +msgstr "" + +#: share/meta-task/compssUsers.pl:37 +#, c-format +msgid "" +"Set of tools to read and send mail and news (mutt, tin..) and to browse the " +"Web" +msgstr "" + +#: share/meta-task/compssUsers.pl:42 +#, c-format +msgid "Network Computer (client)" +msgstr "" + +#: share/meta-task/compssUsers.pl:43 +#, c-format +msgid "Clients for different protocols including ssh" +msgstr "" + +#: share/meta-task/compssUsers.pl:49 +#, c-format +msgid "Tools to ease the configuration of your computer" +msgstr "" + +#: share/meta-task/compssUsers.pl:53 +#, c-format +msgid "Console Tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:54 +#, c-format +msgid "Editors, shells, file tools, terminals" +msgstr "" + +#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201 +#: share/meta-task/compssUsers.pl:203 +#, c-format +msgid "Development" +msgstr "" + +#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204 +#, c-format +msgid "C and C++ development libraries, programs and include files" +msgstr "" + +#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208 +#, c-format +msgid "Documentation" +msgstr "" + +#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209 +#, c-format +msgid "Books and Howto's on Linux and Free Software" +msgstr "" + +#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212 +#, c-format +msgid "LSB" +msgstr "" + +#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213 +#, c-format +msgid "Linux Standard Base. Third party applications support" +msgstr "" + +#: share/meta-task/compssUsers.pl:79 +#, c-format +msgid "Web Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:80 +#, c-format +msgid "Apache" +msgstr "" + +#: share/meta-task/compssUsers.pl:84 +#, c-format +msgid "Groupware" +msgstr "" + +#: share/meta-task/compssUsers.pl:85 +#, c-format +msgid "Kolab Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:88 share/meta-task/compssUsers.pl:138 +#, c-format +msgid "Firewall/Router" +msgstr "" + +#: share/meta-task/compssUsers.pl:89 share/meta-task/compssUsers.pl:139 +#, c-format +msgid "Internet gateway" +msgstr "" + +#: share/meta-task/compssUsers.pl:92 +#, c-format +msgid "Mail/News" +msgstr "" + +#: share/meta-task/compssUsers.pl:93 +#, c-format +msgid "Postfix mail server, Inn news server" +msgstr "" + +#: share/meta-task/compssUsers.pl:97 +#, c-format +msgid "Directory Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:102 +#, c-format +msgid "FTP Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:103 +#, c-format +msgid "ProFTPd" +msgstr "" + +#: share/meta-task/compssUsers.pl:107 +#, c-format +msgid "DNS/NIS" +msgstr "" + +#: share/meta-task/compssUsers.pl:108 +#, c-format +msgid "Domain Name and Network Information Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:112 +#, c-format +msgid "File and Printer Sharing Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:113 +#, c-format +msgid "NFS Server, Samba server" +msgstr "" + +#: share/meta-task/compssUsers.pl:117 share/meta-task/compssUsers.pl:133 +#, c-format +msgid "Database" +msgstr "" + +#: share/meta-task/compssUsers.pl:118 +#, c-format +msgid "PostgreSQL and MariaDB Database Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:123 +#, c-format +msgid "Web/FTP" +msgstr "" + +#: share/meta-task/compssUsers.pl:124 +#, c-format +msgid "Apache, Pro-ftpd" +msgstr "" + +#: share/meta-task/compssUsers.pl:128 +#, c-format +msgid "Mail" +msgstr "" + +#: share/meta-task/compssUsers.pl:129 +#, c-format +msgid "Postfix mail server" +msgstr "" + +#: share/meta-task/compssUsers.pl:134 +#, c-format +msgid "PostgreSQL or MariaDB database server" +msgstr "" + +#: share/meta-task/compssUsers.pl:142 +#, c-format +msgid "Network Computer server" +msgstr "" + +#: share/meta-task/compssUsers.pl:143 +#, c-format +msgid "NFS server, SMB server, Proxy server, ssh server" +msgstr "" + +#: share/meta-task/compssUsers.pl:150 +#, c-format +msgid "Graphical Environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:152 +#, c-format +msgid "Plasma Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:153 +#, c-format +msgid "" +"The K Desktop Environment, the basic graphical environment with a collection " +"of accompanying tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:158 +#, c-format +msgid "GNOME Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:159 share/meta-task/compssUsers.pl:170 +#, c-format +msgid "" +"A graphical environment with user-friendly set of applications and desktop " +"tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:164 +#, c-format +msgid "Xfce Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:165 +#, c-format +msgid "" +"A lighter graphical environment with user-friendly set of applications and " +"desktop tools" +msgstr "" + +#: share/meta-task/compssUsers.pl:169 +#, c-format +msgid "MATE Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:174 +#, c-format +msgid "Cinnamon Workstation" +msgstr "" + +#: share/meta-task/compssUsers.pl:175 +#, c-format +msgid "A graphical environment based on GNOME" +msgstr "" + +#: share/meta-task/compssUsers.pl:179 +#, c-format +msgid "LXQt Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:181 +#, c-format +msgid "A next generation QT port of the lightweight desktop environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:184 +#, c-format +msgid "Enlightenment Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:186 +#, c-format +msgid "A lightweight fast graphical environment with a dedicated following" +msgstr "" + +#: share/meta-task/compssUsers.pl:189 +#, c-format +msgid "LXDE Desktop" +msgstr "" + +#: share/meta-task/compssUsers.pl:191 +#, c-format +msgid "A lightweight fast graphical environment" +msgstr "" + +#: share/meta-task/compssUsers.pl:194 +#, c-format +msgid "Other Graphical Desktops" +msgstr "" + +#: share/meta-task/compssUsers.pl:195 +#, c-format +msgid "Window Maker, Fvwm, etc" +msgstr "" + +#: share/meta-task/compssUsers.pl:218 +#, c-format +msgid "Utilities" +msgstr "" + +#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221 +#, c-format +msgid "SSH Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:225 +#, c-format +msgid "Webmin" +msgstr "" + +#: share/meta-task/compssUsers.pl:226 +#, c-format +msgid "Webmin Remote Configuration Server" +msgstr "" + +#: share/meta-task/compssUsers.pl:230 +#, c-format +msgid "Network Utilities/Monitoring" +msgstr "" + +#: share/meta-task/compssUsers.pl:231 +#, c-format +msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..." +msgstr "" + +#: share/meta-task/compssUsers.pl:235 +#, c-format +msgid "Mageia Wizards" +msgstr "" + +#: share/meta-task/compssUsers.pl:236 +#, c-format +msgid "Wizards to configure server" +msgstr "" + +#: steps.pm:85 +#, c-format +msgid "" +"An error occurred, but I do not know how to handle it nicely.\n" +"Continue at your own risk." +msgstr "" + +#: steps.pm:469 +#, c-format +msgid "" +"Some important packages did not get installed properly.\n" +"Either your cdrom drive or your cdrom is defective.\n" +"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm" +"\"\n" +msgstr "" + +#: steps_auto_install.pm:71 steps_stdio.pm:27 +#, c-format +msgid "Entering step `%s'\n" +msgstr "" + +#: steps_curses.pm:22 +#, c-format +msgid "%s Installation %s" +msgstr "" + +#: steps_curses.pm:32 +#, c-format +msgid "<Tab>/<Alt-Tab> between elements" +msgstr "" + +#: steps_gtk.pm:151 +#, c-format +msgid "Xorg server is slow to start. Please wait..." +msgstr "" + +#: steps_gtk.pm:216 +#, c-format +msgid "" +"Your system is low on resources. You may have some problem installing\n" +"%s. If that occurs, you can try a text install instead. For this,\n" +"press `F1' when booting on CDROM, then enter `text'." +msgstr "" + +#: steps_gtk.pm:246 steps_gtk.pm:764 +#, c-format +msgid "Media Selection" +msgstr "" + +#: steps_gtk.pm:257 +#, c-format +msgid "Install %s Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:258 +#, c-format +msgid "Install %s GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:259 +#, c-format +msgid "Custom install" +msgstr "" + +#: steps_gtk.pm:280 +#, c-format +msgid "Plasma Desktop" +msgstr "" + +#: steps_gtk.pm:281 +#, c-format +msgid "GNOME Desktop" +msgstr "" + +#: steps_gtk.pm:282 +#, c-format +msgid "Custom Desktop" +msgstr "" + +#: steps_gtk.pm:288 +#, c-format +msgid "Here's a preview of the '%s' desktop." +msgstr "" + +#: steps_gtk.pm:315 +#, c-format +msgid "Click on images in order to see a bigger preview" +msgstr "" + +#: steps_gtk.pm:331 steps_interactive.pm:609 steps_list.pm:30 +#, c-format +msgid "Package Group Selection" +msgstr "" + +#: steps_gtk.pm:354 steps_interactive.pm:626 +#, c-format +msgid "Individual package selection" +msgstr "" + +#: steps_gtk.pm:361 +#, c-format +msgid "Unselect All" +msgstr "" + +#: steps_gtk.pm:380 steps_interactive.pm:538 +#, c-format +msgid "Total size: %d / %d MB" +msgstr "" + +#: steps_gtk.pm:425 +#, c-format +msgid "Version: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "Size: " +msgstr "" + +#: steps_gtk.pm:426 +#, c-format +msgid "%d KB\n" +msgstr "" + +#: steps_gtk.pm:427 +#, c-format +msgid "Importance: " +msgstr "" + +#: steps_gtk.pm:462 +#, c-format +msgid "You cannot select/unselect this package" +msgstr "" + +#: steps_gtk.pm:466 +#, c-format +msgid "due to missing %s" +msgstr "" + +#: steps_gtk.pm:467 +#, c-format +msgid "due to unsatisfied %s" +msgstr "" + +#: steps_gtk.pm:468 +#, c-format +msgid "trying to promote %s" +msgstr "" + +#: steps_gtk.pm:469 +#, c-format +msgid "in order to keep %s" +msgstr "" + +#: steps_gtk.pm:474 +#, c-format +msgid "" +"You cannot select this package as there is not enough space left to install " +"it" +msgstr "" + +#: steps_gtk.pm:477 +#, c-format +msgid "The following packages are going to be installed" +msgstr "" + +#: steps_gtk.pm:478 +#, c-format +msgid "The following packages are going to be removed" +msgstr "" + +#: steps_gtk.pm:504 +#, c-format +msgid "This is a mandatory package, it cannot be unselected" +msgstr "" + +#: steps_gtk.pm:506 +#, c-format +msgid "You cannot unselect this package. It is already installed" +msgstr "" + +#: steps_gtk.pm:508 +#, c-format +msgid "You cannot unselect this package. It must be upgraded" +msgstr "" + +#: steps_gtk.pm:512 +#, c-format +msgid "Show automatically selected packages" +msgstr "" + +#: steps_gtk.pm:516 +#, c-format +msgid "Install" +msgstr "" + +#: steps_gtk.pm:519 +#, c-format +msgid "Load/Save selection" +msgstr "" + +#: steps_gtk.pm:520 steps_gtk.pm:525 +#, c-format +msgid "Updating package selection" +msgstr "" + +#: steps_gtk.pm:524 +#, c-format +msgid "Toggle between hierarchical and flat package list" +msgstr "" + +#: steps_gtk.pm:530 +#, c-format +msgid "Minimal install" +msgstr "" + +#: steps_gtk.pm:543 +#, c-format +msgid "Software Management" +msgstr "" + +#: steps_gtk.pm:543 steps_interactive.pm:415 +#, c-format +msgid "Choose the packages you want to install" +msgstr "" + +#: steps_gtk.pm:560 steps_interactive.pm:646 steps_list.pm:32 +#, c-format +msgid "Installing" +msgstr "" + +#: steps_gtk.pm:590 +#, c-format +msgid "No details" +msgstr "" + +#: steps_gtk.pm:610 +#, c-format +msgid "Time remaining:" +msgstr "" + +#: steps_gtk.pm:611 +#, c-format +msgid "(estimating...)" +msgstr "" + +#: steps_gtk.pm:637 +#, c-format +msgid "%d package" +msgid_plural "%d packages" +msgstr[0] "" +msgstr[1] "" + +#: steps_gtk.pm:694 steps_interactive.pm:856 steps_list.pm:43 +#, c-format +msgid "Summary" +msgstr "" + +#: steps_gtk.pm:713 +#, c-format +msgid "Configure" +msgstr "" + +#: steps_gtk.pm:730 steps_interactive.pm:852 steps_interactive.pm:992 +#, c-format +msgid "not configured" +msgstr "" + +#: steps_gtk.pm:773 steps_interactive.pm:315 +#, c-format +msgid "" +"The following installation media have been found.\n" +"If you want to skip some of them, you can unselect them now." +msgstr "" + +#: steps_gtk.pm:789 steps_interactive.pm:321 +#, c-format +msgid "" +"You have the option to copy the contents of the CDs onto the hard disk drive " +"before installation.\n" +"It will then continue from the hard disk drive and the packages will remain " +"available once the system is fully installed." +msgstr "" + +#: steps_gtk.pm:791 steps_interactive.pm:323 +#, c-format +msgid "Copy whole CDs" +msgstr "" + +#: steps_interactive.pm:40 +#, c-format +msgid "An error occurred" +msgstr "" + +#: steps_interactive.pm:105 +#, c-format +msgid "Please choose your keyboard layout" +msgstr "" + +#: steps_interactive.pm:109 +#, c-format +msgid "Here is the full list of available keyboards:" +msgstr "" + +#: steps_interactive.pm:153 +#, c-format +msgid "Install/Upgrade" +msgstr "" + +#: steps_interactive.pm:157 +#, c-format +msgid "Is this an install or an upgrade?" +msgstr "" + +#: steps_interactive.pm:159 +#, c-format +msgid "" +"_: This is a noun:\n" +"Install" +msgstr "" + +#: steps_interactive.pm:161 +#, c-format +msgid "Upgrade %s" +msgstr "" + +#: steps_interactive.pm:184 +#, c-format +msgid "Encryption key for %s" +msgstr "" + +#: steps_interactive.pm:217 +#, c-format +msgid "Cancel installation, reboot system" +msgstr "" + +#: steps_interactive.pm:218 +#, c-format +msgid "New Installation" +msgstr "" + +#: steps_interactive.pm:219 +#, c-format +msgid "Upgrade previous installation (not recommended)" +msgstr "" + +#: steps_interactive.pm:223 +#, c-format +msgid "" +"Installer has detected that your installed Linux system could not\n" +"safely be upgraded to %s.\n" +"\n" +"New installation replacing your previous one is recommended.\n" +"\n" +"Warning : you should backup all your personal data before choosing \"New\n" +"Installation\"." +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "CD/DVD" +msgstr "" + +#: steps_interactive.pm:264 +#, c-format +msgid "Configuring CD/DVD" +msgstr "" + +#: steps_interactive.pm:354 +#, c-format +msgid "" +"Change your Cd-Rom!\n" +"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when " +"done.\n" +"If you do not have it, press Cancel to avoid installation from this Cd-Rom." +msgstr "" + +#: steps_interactive.pm:372 steps_interactive.pm:490 +#, c-format +msgid "Looking for available packages..." +msgstr "" + +#: steps_interactive.pm:380 +#, c-format +msgid "" +"Your system does not have enough space left for installation or upgrade " +"(%dMB > %dMB)" +msgstr "" + +#: steps_interactive.pm:428 +#, c-format +msgid "" +"Please choose load or save package selection.\n" +"The format is the same as auto_install generated files." +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Load" +msgstr "" + +#: steps_interactive.pm:430 +#, c-format +msgid "Save" +msgstr "" + +#: steps_interactive.pm:438 +#, c-format +msgid "Bad file" +msgstr "" + +#: steps_interactive.pm:455 +#, c-format +msgid "Plasma" +msgstr "" + +#: steps_interactive.pm:456 +#, c-format +msgid "GNOME" +msgstr "" + +#: steps_interactive.pm:459 +#, c-format +msgid "Desktop Selection" +msgstr "" + +#: steps_interactive.pm:460 +#, c-format +msgid "You can choose your workstation desktop profile." +msgstr "" + +#: steps_interactive.pm:552 +#, c-format +msgid "Selected size is larger than available space" +msgstr "" + +#: steps_interactive.pm:576 +#, c-format +msgid "Type of install" +msgstr "" + +#: steps_interactive.pm:577 +#, c-format +msgid "" +"You have not selected any group of packages.\n" +"Please choose the minimal installation you want:" +msgstr "" + +#: steps_interactive.pm:582 +#, c-format +msgid "With X" +msgstr "" + +#: steps_interactive.pm:583 +#, c-format +msgid "Install recommended packages" +msgstr "" + +#: steps_interactive.pm:584 +#, c-format +msgid "With basic documentation (recommended!)" +msgstr "" + +#: steps_interactive.pm:585 +#, c-format +msgid "Truly minimal install (especially no urpmi)" +msgstr "" + +#: steps_interactive.pm:637 +#, c-format +msgid "Preparing upgrade..." +msgstr "" + +#: steps_interactive.pm:647 +#, c-format +msgid "Preparing installation" +msgstr "" + +#: steps_interactive.pm:655 +#, c-format +msgid "Installing package %s" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "There was an error ordering packages:" +msgstr "" + +#: steps_interactive.pm:679 +#, c-format +msgid "Go on anyway?" +msgstr "" + +#: steps_interactive.pm:683 +#, c-format +msgid "Retry" +msgstr "" + +#: steps_interactive.pm:684 +#, c-format +msgid "Skip this package" +msgstr "" + +#: steps_interactive.pm:685 +#, c-format +msgid "Skip all packages from medium \"%s\"" +msgstr "" + +#: steps_interactive.pm:686 +#, c-format +msgid "Go back to media and packages selection" +msgstr "" + +#: steps_interactive.pm:689 +#, c-format +msgid "There was an error installing package %s." +msgstr "" + +#: steps_interactive.pm:708 +#, c-format +msgid "Post-install configuration" +msgstr "" + +#: steps_interactive.pm:715 +#, c-format +msgid "Please ensure the Update Modules media is in drive %s" +msgstr "" + +#: steps_interactive.pm:743 steps_interactive.pm:791 steps_list.pm:47 +#, c-format +msgid "Updates" +msgstr "" + +#: steps_interactive.pm:744 +#, c-format +msgid "You now have the opportunity to setup online media." +msgstr "" + +#: steps_interactive.pm:745 +#, c-format +msgid "This allows to install security updates." +msgstr "" + +#: steps_interactive.pm:746 +#, c-format +msgid "" +"To setup those media, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to setup the update media?" +msgstr "" + +#: steps_interactive.pm:767 +#, c-format +msgid "That downloader could not be installed" +msgstr "" + +#: steps_interactive.pm:767 steps_interactive.pm:784 +#, c-format +msgid "Retry?" +msgstr "" + +#: steps_interactive.pm:784 +#, c-format +msgid "Failure when adding medium" +msgstr "" + +#: steps_interactive.pm:792 +#, c-format +msgid "" +"You now have the opportunity to download updated packages. These packages\n" +"have been updated after the distribution was released. They may\n" +"contain security or bug fixes.\n" +"\n" +"To download these packages, you will need to have a working Internet \n" +"connection.\n" +"\n" +"Do you want to install the updates?" +msgstr "" + +#. -PO: example: grub2-graphic on /dev/sda1 +#: steps_interactive.pm:901 +#, c-format +msgid "%s on %s" +msgstr "" + +#: steps_interactive.pm:937 steps_interactive.pm:944 steps_interactive.pm:957 +#: steps_interactive.pm:971 +#, c-format +msgid "Hardware" +msgstr "" + +#: steps_interactive.pm:958 +#, c-format +msgid "Sound card" +msgstr "" + +#: steps_interactive.pm:972 +#, c-format +msgid "Graphical interface" +msgstr "" + +#: steps_interactive.pm:978 steps_interactive.pm:990 +#, c-format +msgid "Network & Internet" +msgstr "" + +#: steps_interactive.pm:991 +#, c-format +msgid "Proxies" +msgstr "" + +#: steps_interactive.pm:992 +#, c-format +msgid "configured" +msgstr "" + +#: steps_interactive.pm:1002 +#, c-format +msgid "Security Level" +msgstr "" + +#: steps_interactive.pm:1022 +#, c-format +msgid "Firewall" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "activated" +msgstr "" + +#: steps_interactive.pm:1026 +#, c-format +msgid "disabled" +msgstr "" + +#: steps_interactive.pm:1041 +#, c-format +msgid "You have not configured X. Are you sure you really want this?" +msgstr "" + +#. -PO: This is NOT the boot loader (just the kernel initrds)!!!! +#: steps_interactive.pm:1072 +#, c-format +msgid "Preparing initial startup program..." +msgstr "" + +#: steps_interactive.pm:1073 +#, c-format +msgid "Be patient, this may take a while..." +msgstr "" + +#: steps_interactive.pm:1089 +#, c-format +msgid "" +"In this security level, access to the files in the Windows partition is " +"restricted to the administrator." +msgstr "" + +#: steps_interactive.pm:1121 +#, c-format +msgid "Insert a blank floppy in drive %s" +msgstr "" + +#: steps_interactive.pm:1123 +#, c-format +msgid "Creating auto install floppy..." +msgstr "" + +#: steps_interactive.pm:1134 +#, c-format +msgid "" +"Some steps are not completed.\n" +"\n" +"Do you really want to quit now?" +msgstr "" + +#: steps_interactive.pm:1144 +#, c-format +msgid "Congratulations" +msgstr "" + +#: steps_interactive.pm:1147 +#, c-format +msgid "Reboot" +msgstr "Vula kabusha" + +#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!! +#: steps_list.pm:16 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Language" +msgstr "" + +#: steps_list.pm:16 steps_list.pm:23 +#, c-format +msgid "Localization" +msgstr "" + +#: steps_list.pm:17 +#, c-format +msgid "" +"_: Keep these entry short\n" +"License" +msgstr "" + +#: steps_list.pm:18 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Mouse" +msgstr "" + +#: steps_list.pm:19 steps_list.pm:20 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Hard drive detection" +msgstr "" + +#: steps_list.pm:21 steps_list.pm:22 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installation class" +msgstr "" + +#: steps_list.pm:23 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Keyboard" +msgstr "" + +#: steps_list.pm:24 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Security" +msgstr "" + +#: steps_list.pm:25 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Partitioning" +msgstr "" + +#: steps_list.pm:27 steps_list.pm:28 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Formatting" +msgstr "" + +#: steps_list.pm:29 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Choosing packages" +msgstr "" + +#: steps_list.pm:31 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Installing" +msgstr "" + +#: steps_list.pm:34 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Users" +msgstr "" + +#: steps_list.pm:38 steps_list.pm:39 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Bootloader" +msgstr "" + +#: steps_list.pm:40 steps_list.pm:41 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Configure X" +msgstr "" + +#: steps_list.pm:42 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Summary" +msgstr "" + +#: steps_list.pm:44 steps_list.pm:45 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Services" +msgstr "" + +#: steps_list.pm:46 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Updates" +msgstr "" + +#: steps_list.pm:48 +#, c-format +msgid "" +"_: Keep these entry short\n" +"Exit" +msgstr "" diff --git a/perl-install/install/share/runinstall2.sh b/perl-install/install/share/runinstall2.sh new file mode 100644 index 000000000..42c420f13 --- /dev/null +++ b/perl-install/install/share/runinstall2.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +# enable loadkeys to work before manually starting drakx in debug env: +export SHARE_PATH=/usr/share +echo "Starting Udev\n" +perl -I/usr/lib/libDrakX -Minstall::install2 -e "install::install2::start_udev()" +echo "You can start the installer by running install2" +echo "You can run it in GDB by running gdb-inst" +export GUILE_AUTO_COMPILE=0 +/usr/bin/busybox sh +exec install2 $@ diff --git a/perl-install/install/share/symlinks b/perl-install/install/share/symlinks new file mode 100644 index 000000000..d2957e63a --- /dev/null +++ b/perl-install/install/share/symlinks @@ -0,0 +1,9 @@ +/etc/crypto-policies +/etc/mke2fs.conf +/etc/protocols +/etc/services +/etc/group +/etc/machine-id +/etc/passwd +/etc/pki +/etc/urpmi diff --git a/perl-install/install/share/themes-blue.rc b/perl-install/install/share/themes-blue.rc new file mode 100644 index 000000000..e8cac9521 --- /dev/null +++ b/perl-install/install/share/themes-blue.rc @@ -0,0 +1,65 @@ +style "any" +{ + base[NORMAL] = { 0, 0, 0.67 } + bg[NORMAL] = { 0, 0, 0.67 } + bg[INSENSITIVE] = { 0, 0, 0.67 } + base[INSENSITIVE]={ 0, 0, 0.67 } + bg[ACTIVE] = { 0, 0.67, 1.0 } + bg[PRELIGHT] = { 0, 0, 1.0 } + + GtkTreeView::even_row_color = { 0, 0, 0.67 } + GtkTreeView::odd_row_color = { 0, 0, 0.67 } + + text[NORMAL] = { 1.0, 1.0, 1.0 } + fg[NORMAL] = { 1.0, 1.0, 1.0 } + fg[INSENSITIVE] = { 0.0, 0.0, 0.0 } + text[INSENSITIVE]={ 1.0, 1.0, 1.0 } + fg[ACTIVE] = { 1.0, 1.0, 1.0 } + fg[PRELIGHT] = { 1.0, 1.0, 1.0 } + + bg[SELECTED] = { 1.0, 1.0, 1.0 } + fg[SELECTED] = { 0, 0, 1.0 } +} + +style "entry" +{ + base[NORMAL] = { 0, 1.0, 1.0 } + base[ACTIVE] = { 0, 1.0, 1.0 } + fg[NORMAL] = { 0.67, 0, 0.67 } +} + +style "notebook" +{ + bg[NORMAL] = { 0, 0, 1.0 } + bg[ACTIVE] = { 0, 0, 0.67 } + fg[NORMAL] = { 1.0, 1.0, 1.0 } +} + +style "button" = "any" +{ + bg[NORMAL] = { 0, 0, 1.0 } + fg[NORMAL] = { 1.0, 1.0, 1.0 } + bg[PRELIGHT] = { 0, 0, 1.0 } + fg[PRELIGHT] = { 0, 1.0, 1.0 } +} + +style "background" +{ + bg[NORMAL] = { 0, 0.67, 0.99 } + bg[PRELIGHT] = { 0, 0, 0.67 } +} + +style "steps" +{ + bg[NORMAL] = { 0, 0, 1.0 } + fg[NORMAL] = { 1.0, 1.0, 0 } +} + +widget_class "*" style "any" +widget_class "*GtkSpin*" style "entry" +widget_class "*GtkEntry*" style "entry" +widget_class "*Gtk*List*" style "entry" +widget_class "*GtkCTree*" style "entry" +widget_class "*GtkNotebook*" style "notebook" +widget "*GtkButton*" style "button" +widget "*background*" style "background" diff --git a/perl-install/install/share/upgrade/.gitignore b/perl-install/install/share/upgrade/.gitignore new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/perl-install/install/share/upgrade/.gitignore @@ -0,0 +1 @@ + |
