summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/ppp
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/ppp')
-rw-r--r--mdk-stage1/ppp/pppd/sys-linux.c.wtmp2750
1 files changed, 0 insertions, 2750 deletions
diff --git a/mdk-stage1/ppp/pppd/sys-linux.c.wtmp b/mdk-stage1/ppp/pppd/sys-linux.c.wtmp
deleted file mode 100644
index f1b48423e..000000000
--- a/mdk-stage1/ppp/pppd/sys-linux.c.wtmp
+++ /dev/null
@@ -1,2750 +0,0 @@
-/*
- * sys-linux.c - System-dependent procedures for setting up
- * PPP interfaces on Linux systems
- *
- * Copyright (c) 1989 Carnegie Mellon University.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms are permitted
- * provided that the above copyright notice and this paragraph are
- * duplicated in all such forms and that any documentation,
- * advertising materials, and other materials related to such
- * distribution and use acknowledge that the software was developed
- * by Carnegie Mellon University. The name of the
- * University may not be used to endorse or promote products derived
- * from this software without specific prior written permission.
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- */
-
-#include <sys/ioctl.h>
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <sys/time.h>
-#include <sys/errno.h>
-#include <sys/file.h>
-#include <sys/stat.h>
-#include <sys/utsname.h>
-#include <sys/sysmacros.h>
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <syslog.h>
-#include <string.h>
-#include <time.h>
-#include <memory.h>
-#include <utmp.h>
-#include <mntent.h>
-#include <signal.h>
-#include <fcntl.h>
-#include <ctype.h>
-#include <termios.h>
-#include <unistd.h>
-
-/* This is in netdevice.h. However, this compile will fail miserably if
- you attempt to include netdevice.h because it has so many references
- to __memcpy functions which it should not attempt to do. So, since I
- really don't use it, but it must be defined, define it now. */
-
-#ifndef MAX_ADDR_LEN
-#define MAX_ADDR_LEN 7
-#endif
-
-#if __GLIBC__ >= 2
-#include <asm/types.h> /* glibc 2 conflicts with linux/types.h */
-#include <net/if.h>
-#include <net/if_arp.h>
-#include <net/route.h>
-#include <netinet/if_ether.h>
-#else
-#include <linux/types.h>
-#include <linux/if.h>
-#include <linux/if_arp.h>
-#include <linux/route.h>
-#include <linux/if_ether.h>
-#endif
-#include <netinet/in.h>
-#include <arpa/inet.h>
-
-#include <linux/ppp_defs.h>
-#include <linux/if_ppp.h>
-
-#include "pppd.h"
-#include "fsm.h"
-#include "ipcp.h"
-
-#ifdef IPX_CHANGE
-#include "ipxcp.h"
-#if __GLIBC__ >= 2 && \
- !(defined(__powerpc__) && __GLIBC__ == 2 && __GLIBC_MINOR__ == 0)
-#include <netipx/ipx.h>
-#else
-#include <linux/ipx.h>
-#endif
-#endif /* IPX_CHANGE */
-
-#ifdef PPP_FILTER
-#include <net/bpf.h>
-#include <linux/filter.h>
-#endif /* PPP_FILTER */
-
-#ifdef LOCKLIB
-#include <sys/locks.h>
-#endif
-
-#ifdef INET6
-#ifndef _LINUX_IN6_H
-/*
- * This is in linux/include/net/ipv6.h.
- */
-
-struct in6_ifreq {
- struct in6_addr ifr6_addr;
- __u32 ifr6_prefixlen;
- unsigned int ifr6_ifindex;
-};
-#endif
-
-#define IN6_LLADDR_FROM_EUI64(sin6, eui64) do { \
- memset(&sin6.s6_addr, 0, sizeof(struct in6_addr)); \
- sin6.s6_addr16[0] = htons(0xfe80); \
- eui64_copy(eui64, sin6.s6_addr32[2]); \
- } while (0)
-
-#endif /* INET6 */
-
-/* We can get an EIO error on an ioctl if the modem has hung up */
-#define ok_error(num) ((num)==EIO)
-
-static int tty_disc = N_TTY; /* The TTY discipline */
-static int ppp_disc = N_PPP; /* The PPP discpline */
-static int initfdflags = -1; /* Initial file descriptor flags for fd */
-static int ppp_fd = -1; /* fd which is set to PPP discipline */
-static int sock_fd = -1; /* socket for doing interface ioctls */
-static int slave_fd = -1;
-static int master_fd = -1;
-#ifdef INET6
-static int sock6_fd = -1;
-#endif /* INET6 */
-static int ppp_dev_fd = -1; /* fd for /dev/ppp (new style driver) */
-static int chindex; /* channel index (new style driver) */
-
-static fd_set in_fds; /* set of fds that wait_input waits for */
-static int max_in_fd; /* highest fd set in in_fds */
-
-static int has_proxy_arp = 0;
-static int driver_version = 0;
-static int driver_modification = 0;
-static int driver_patch = 0;
-static int driver_is_old = 0;
-static int restore_term = 0; /* 1 => we've munged the terminal */
-static struct termios inittermios; /* Initial TTY termios */
-
-static int new_style_driver = 0;
-
-static char loop_name[20];
-static unsigned char inbuf[512]; /* buffer for chars read from loopback */
-
-static int if_is_up; /* Interface has been marked up */
-static u_int32_t default_route_gateway; /* Gateway for default route added */
-static u_int32_t proxy_arp_addr; /* Addr for proxy arp entry added */
-static char proxy_arp_dev[16]; /* Device for proxy arp entry */
-static u_int32_t our_old_addr; /* for detecting address changes */
-static int dynaddr_set; /* 1 if ip_dynaddr set */
-static int looped; /* 1 if using loop */
-static int link_mtu; /* mtu for the link (not bundle) */
-
-static struct utsname utsname; /* for the kernel version */
-static int kernel_version;
-#define KVERSION(j,n,p) ((j)*1000000 + (n)*1000 + (p))
-
-#define MAX_IFS 100
-
-#define FLAGS_GOOD (IFF_UP | IFF_BROADCAST)
-#define FLAGS_MASK (IFF_UP | IFF_BROADCAST | \
- IFF_POINTOPOINT | IFF_LOOPBACK | IFF_NOARP)
-
-#define SIN_ADDR(x) (((struct sockaddr_in *) (&(x)))->sin_addr.s_addr)
-
-/* Prototypes for procedures local to this file. */
-static int get_flags (int fd);
-static void set_flags (int fd, int flags);
-static int translate_speed (int bps);
-static int baud_rate_of (int speed);
-static void close_route_table (void);
-static int open_route_table (void);
-static int read_route_table (struct rtentry *rt);
-static int defaultroute_exists (struct rtentry *rt);
-static int get_ether_addr (u_int32_t ipaddr, struct sockaddr *hwaddr,
- char *name, int namelen);
-static void decode_version (char *buf, int *version, int *mod, int *patch);
-static int set_kdebugflag(int level);
-static int ppp_registered(void);
-static int make_ppp_unit(void);
-static void restore_loop(void); /* Transfer ppp unit back to loopback */
-
-extern u_char inpacket_buf[]; /* borrowed from main.c */
-
-/*
- * SET_SA_FAMILY - set the sa_family field of a struct sockaddr,
- * if it exists.
- */
-
-#define SET_SA_FAMILY(addr, family) \
- memset ((char *) &(addr), '\0', sizeof(addr)); \
- addr.sa_family = (family);
-
-/*
- * Determine if the PPP connection should still be present.
- */
-
-extern int hungup;
-
-/* new_fd is the fd of a tty */
-static void set_ppp_fd (int new_fd)
-{
- SYSDEBUG ((LOG_DEBUG, "setting ppp_fd to %d\n", new_fd));
- ppp_fd = new_fd;
- if (!new_style_driver)
- ppp_dev_fd = new_fd;
-}
-
-static int still_ppp(void)
-{
- if (new_style_driver)
- return !hungup && ppp_fd >= 0;
- if (!hungup || ppp_fd == slave_fd)
- return 1;
- if (slave_fd >= 0) {
- set_ppp_fd(slave_fd);
- return 1;
- }
- return 0;
-}
-
-/********************************************************************
- *
- * Functions to read and set the flags value in the device driver
- */
-
-static int get_flags (int fd)
-{
- int flags;
-
- if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &flags) < 0) {
- if ( ok_error (errno) )
- flags = 0;
- else
- fatal("ioctl(PPPIOCGFLAGS): %m");
- }
-
- SYSDEBUG ((LOG_DEBUG, "get flags = %x\n", flags));
- return flags;
-}
-
-/********************************************************************/
-
-static void set_flags (int fd, int flags)
-{
- SYSDEBUG ((LOG_DEBUG, "set flags = %x\n", flags));
-
- if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &flags) < 0) {
- if (! ok_error (errno) )
- fatal("ioctl(PPPIOCSFLAGS, %x): %m", flags, errno);
- }
-}
-
-/********************************************************************
- *
- * sys_init - System-dependent initialization.
- */
-
-void sys_init(void)
-{
- int flags;
-
- if (new_style_driver) {
- ppp_dev_fd = open("/dev/ppp", O_RDWR);
- if (ppp_dev_fd < 0)
- fatal("Couldn't open /dev/ppp: %m");
- flags = fcntl(ppp_dev_fd, F_GETFL);
- if (flags == -1
- || fcntl(ppp_dev_fd, F_SETFL, flags | O_NONBLOCK) == -1)
- warn("Couldn't set /dev/ppp to nonblock: %m");
- }
-
- /* Get an internet socket for doing socket ioctls. */
- sock_fd = socket(AF_INET, SOCK_DGRAM, 0);
- if (sock_fd < 0)
- fatal("Couldn't create IP socket: %m(%d)", errno);
-
-#ifdef INET6
- sock6_fd = socket(AF_INET6, SOCK_DGRAM, 0);
- if (sock6_fd < 0)
- sock6_fd = -errno; /* save errno for later */
-#endif
-
- FD_ZERO(&in_fds);
- max_in_fd = 0;
-}
-
-/********************************************************************
- *
- * sys_cleanup - restore any system state we modified before exiting:
- * mark the interface down, delete default route and/or proxy arp entry.
- * This shouldn't call die() because it's called from die().
- */
-
-void sys_cleanup(void)
-{
-/*
- * Take down the device
- */
- if (if_is_up) {
- if_is_up = 0;
- sifdown(0);
- }
-/*
- * Delete any routes through the device.
- */
- if (default_route_gateway != 0)
- cifdefaultroute(0, 0, default_route_gateway);
-
- if (has_proxy_arp)
- cifproxyarp(0, proxy_arp_addr);
-}
-
-/********************************************************************
- *
- * sys_close - Clean up in a child process before execing.
- */
-void
-sys_close(void)
-{
- if (new_style_driver)
- close(ppp_dev_fd);
- if (sock_fd >= 0)
- close(sock_fd);
- if (slave_fd >= 0)
- close(slave_fd);
- if (master_fd >= 0)
- close(master_fd);
- closelog();
-}
-
-/********************************************************************
- *
- * set_kdebugflag - Define the debugging level for the kernel
- */
-
-static int set_kdebugflag (int requested_level)
-{
- if (new_style_driver && ifunit < 0)
- return 1;
- if (ioctl(ppp_dev_fd, PPPIOCSDEBUG, &requested_level) < 0) {
- if ( ! ok_error (errno) )
- error("ioctl(PPPIOCSDEBUG): %m");
- return (0);
- }
- SYSDEBUG ((LOG_INFO, "set kernel debugging level to %d",
- requested_level));
- return (1);
-}
-
-/********************************************************************
- *
- * tty_establish_ppp - Turn the serial port into a ppp interface.
- */
-
-int tty_establish_ppp (int tty_fd)
-{
- int x;
- int fd = -1;
-
-/*
- * Ensure that the tty device is in exclusive mode.
- */
- if (ioctl(tty_fd, TIOCEXCL, 0) < 0) {
- if ( ! ok_error ( errno ))
- warn("Couldn't make tty exclusive: %m");
- }
-/*
- * Demand mode - prime the old ppp device to relinquish the unit.
- */
- if (!new_style_driver && looped
- && ioctl(slave_fd, PPPIOCXFERUNIT, 0) < 0) {
- error("ioctl(transfer ppp unit): %m");
- return -1;
- }
-/*
- * Set the current tty to the PPP discpline
- */
-
-#ifndef N_SYNC_PPP
-#define N_SYNC_PPP 14
-#endif
- ppp_disc = (new_style_driver && sync_serial)? N_SYNC_PPP: N_PPP;
- if (ioctl(tty_fd, TIOCSETD, &ppp_disc) < 0) {
- if ( ! ok_error (errno) ) {
- error("Couldn't set tty to PPP discipline: %m");
- return -1;
- }
- }
-
- if (new_style_driver) {
- /* Open another instance of /dev/ppp and connect the channel to it */
- int flags;
-
- if (ioctl(tty_fd, PPPIOCGCHAN, &chindex) == -1) {
- error("Couldn't get channel number: %m");
- goto err;
- }
- dbglog("using channel %d", chindex);
- fd = open("/dev/ppp", O_RDWR);
- if (fd < 0) {
- error("Couldn't reopen /dev/ppp: %m");
- goto err;
- }
- if (ioctl(fd, PPPIOCATTCHAN, &chindex) < 0) {
- error("Couldn't attach to channel %d: %m", chindex);
- goto err_close;
- }
- flags = fcntl(fd, F_GETFL);
- if (flags == -1 || fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
- warn("Couldn't set /dev/ppp (channel) to nonblock: %m");
- set_ppp_fd(fd);
-
- if (!looped)
- ifunit = -1;
- if (!looped && !multilink) {
- /*
- * Create a new PPP unit.
- */
- if (make_ppp_unit() < 0)
- goto err_close;
- }
-
- if (looped)
- set_flags(ppp_dev_fd, get_flags(ppp_dev_fd) & ~SC_LOOP_TRAFFIC);
-
- if (!multilink) {
- add_fd(ppp_dev_fd);
- if (ioctl(fd, PPPIOCCONNECT, &ifunit) < 0) {
- error("Couldn't attach to PPP unit %d: %m", ifunit);
- goto err_close;
- }
- }
-
- } else {
- /*
- * Old-style driver: find out which interface we were given.
- */
- set_ppp_fd (tty_fd);
- if (ioctl(tty_fd, PPPIOCGUNIT, &x) < 0) {
- if (ok_error (errno))
- goto err;
- fatal("ioctl(PPPIOCGUNIT): %m(%d)", errno);
- }
- /* Check that we got the same unit again. */
- if (looped && x != ifunit)
- fatal("transfer_ppp failed: wanted unit %d, got %d", ifunit, x);
- ifunit = x;
-
- /*
- * Fetch the initial file flags and reset blocking mode on the file.
- */
- initfdflags = fcntl(tty_fd, F_GETFL);
- if (initfdflags == -1 ||
- fcntl(tty_fd, F_SETFL, initfdflags | O_NONBLOCK) == -1) {
- if ( ! ok_error (errno))
- warn("Couldn't set device to non-blocking mode: %m");
- }
- }
-
- looped = 0;
-
- /*
- * Enable debug in the driver if requested.
- */
- if (!looped)
- set_kdebugflag (kdebugflag);
-
-#define SC_RCVB (SC_RCV_B7_0 | SC_RCV_B7_1 | SC_RCV_EVNP | SC_RCV_ODDP)
-#define SC_LOGB (SC_DEBUG | SC_LOG_INPKT | SC_LOG_OUTPKT | SC_LOG_RAWIN \
- | SC_LOG_FLUSH)
-
- set_flags(ppp_fd, ((get_flags(ppp_fd) & ~(SC_RCVB | SC_LOGB))
- | ((kdebugflag * SC_DEBUG) & SC_LOGB)));
-
- SYSDEBUG ((LOG_NOTICE, "Using version %d.%d.%d of PPP driver",
- driver_version, driver_modification, driver_patch));
-
- return ppp_fd;
-
- err_close:
- close(fd);
- err:
- if (ioctl(tty_fd, TIOCSETD, &tty_disc) < 0 && !ok_error(errno))
- warn("Couldn't reset tty to normal line discipline: %m");
- return -1;
-}
-
-/********************************************************************
- *
- * tty_disestablish_ppp - Restore the serial port to normal operation,
- * and reconnect the ppp unit to the loopback if in demand mode.
- * This shouldn't call die() because it's called from die().
- */
-
-void tty_disestablish_ppp(int tty_fd)
-{
- if (demand)
- restore_loop();
- if (!hungup) {
-/*
- * Flush the tty output buffer so that the TIOCSETD doesn't hang.
- */
- if (tcflush(tty_fd, TCIOFLUSH) < 0)
- warn("tcflush failed: %m");
-/*
- * Restore the previous line discipline
- */
- if (ioctl(tty_fd, TIOCSETD, &tty_disc) < 0) {
- if ( ! ok_error (errno))
- error("ioctl(TIOCSETD, N_TTY): %m");
- }
-
- if (ioctl(tty_fd, TIOCNXCL, 0) < 0) {
- if ( ! ok_error (errno))
- warn("ioctl(TIOCNXCL): %m(%d)", errno);
- }
-
- /* Reset non-blocking mode on fd. */
- if (initfdflags != -1 && fcntl(tty_fd, F_SETFL, initfdflags) < 0) {
- if ( ! ok_error (errno))
- warn("Couldn't restore device fd flags: %m");
- }
- }
- initfdflags = -1;
-
- if (new_style_driver) {
- close(ppp_fd);
- ppp_fd = -1;
- if (!looped && ifunit >= 0 && ioctl(ppp_dev_fd, PPPIOCDETACH) < 0)
- error("Couldn't release PPP unit: %m");
- if (!multilink)
- remove_fd(ppp_dev_fd);
- }
-}
-
-/*
- * make_ppp_unit - make a new ppp unit for ppp_dev_fd.
- * Assumes new_style_driver.
- */
-static int make_ppp_unit()
-{
- int x;
-
- ifunit = req_unit;
- x = ioctl(ppp_dev_fd, PPPIOCNEWUNIT, &ifunit);
- if (x < 0 && req_unit >= 0 && errno == EEXIST) {
- warn("Couldn't allocate PPP unit %d as it is already in use");
- ifunit = -1;
- x = ioctl(ppp_dev_fd, PPPIOCNEWUNIT, &ifunit);
- }
- if (x < 0)
- error("Couldn't create new ppp unit: %m");
- return x;
-}
-
-/*
- * cfg_bundle - configure the existing bundle.
- * Used in demand mode.
- */
-void cfg_bundle(int mrru, int mtru, int rssn, int tssn)
-{
- int flags;
-
- if (!new_style_driver)
- return;
-
- /* set the mrru, mtu and flags */
- if (ioctl(ppp_dev_fd, PPPIOCSMRRU, &mrru) < 0)
- error("Couldn't set MRRU: %m");
- flags = get_flags(ppp_dev_fd);
- flags &= ~(SC_MP_SHORTSEQ | SC_MP_XSHORTSEQ);
- flags |= (rssn? SC_MP_SHORTSEQ: 0) | (tssn? SC_MP_XSHORTSEQ: 0)
- | (mrru? SC_MULTILINK: 0);
-
- set_flags(ppp_dev_fd, flags);
-
- /* connect up the channel */
- if (ioctl(ppp_fd, PPPIOCCONNECT, &ifunit) < 0)
- fatal("Couldn't attach to PPP unit %d: %m", ifunit);
- add_fd(ppp_dev_fd);
-}
-
-/*
- * make_new_bundle - create a new PPP unit (i.e. a bundle)
- * and connect our channel to it. This should only get called
- * if `multilink' was set at the time establish_ppp was called.
- * In demand mode this uses our existing bundle instead of making
- * a new one.
- */
-void make_new_bundle(int mrru, int mtru, int rssn, int tssn)
-{
- if (!new_style_driver)
- return;
-
- /* make us a ppp unit */
- if (make_ppp_unit() < 0)
- die(1);
-
- /* set the mrru and flags */
- cfg_bundle(mrru, mtru, rssn, tssn);
-}
-
-/*
- * bundle_attach - attach our link to a given PPP unit.
- * We assume the unit is controlled by another pppd.
- */
-int bundle_attach(int ifnum)
-{
- if (!new_style_driver)
- return -1;
-
- if (ioctl(ppp_dev_fd, PPPIOCATTACH, &ifnum) < 0) {
- if (errno == ENXIO)
- return 0; /* doesn't still exist */
- fatal("Couldn't attach to interface unit %d: %m\n", ifnum);
- }
- if (ioctl(ppp_fd, PPPIOCCONNECT, &ifnum) < 0)
- fatal("Couldn't connect to interface unit %d: %m", ifnum);
- set_flags(ppp_dev_fd, get_flags(ppp_dev_fd) | SC_MULTILINK);
-
- ifunit = ifnum;
- return 1;
-}
-
-/********************************************************************
- *
- * clean_check - Fetch the flags for the device and generate
- * appropriate error messages.
- */
-void clean_check(void)
-{
- int x;
- char *s;
-
- if (still_ppp()) {
- if (ioctl(ppp_fd, PPPIOCGFLAGS, (caddr_t) &x) == 0) {
- s = NULL;
- switch (~x & (SC_RCV_B7_0|SC_RCV_B7_1|SC_RCV_EVNP|SC_RCV_ODDP)) {
- case SC_RCV_B7_0:
- s = "all had bit 7 set to 1";
- break;
-
- case SC_RCV_B7_1:
- s = "all had bit 7 set to 0";
- break;
-
- case SC_RCV_EVNP:
- s = "all had odd parity";
- break;
-
- case SC_RCV_ODDP:
- s = "all had even parity";
- break;
- }
-
- if (s != NULL) {
- warn("Receive serial link is not 8-bit clean:");
- warn("Problem: %s", s);
- }
- }
- }
-}
-
-
-/*
- * List of valid speeds.
- */
-
-struct speed {
- int speed_int, speed_val;
-} speeds[] = {
-#ifdef B50
- { 50, B50 },
-#endif
-#ifdef B75
- { 75, B75 },
-#endif
-#ifdef B110
- { 110, B110 },
-#endif
-#ifdef B134
- { 134, B134 },
-#endif
-#ifdef B150
- { 150, B150 },
-#endif
-#ifdef B200
- { 200, B200 },
-#endif
-#ifdef B300
- { 300, B300 },
-#endif
-#ifdef B600
- { 600, B600 },
-#endif
-#ifdef B1200
- { 1200, B1200 },
-#endif
-#ifdef B1800
- { 1800, B1800 },
-#endif
-#ifdef B2000
- { 2000, B2000 },
-#endif
-#ifdef B2400
- { 2400, B2400 },
-#endif
-#ifdef B3600
- { 3600, B3600 },
-#endif
-#ifdef B4800
- { 4800, B4800 },
-#endif
-#ifdef B7200
- { 7200, B7200 },
-#endif
-#ifdef B9600
- { 9600, B9600 },
-#endif
-#ifdef B19200
- { 19200, B19200 },
-#endif
-#ifdef B38400
- { 38400, B38400 },
-#endif
-#ifdef B57600
- { 57600, B57600 },
-#endif
-#ifdef B76800
- { 76800, B76800 },
-#endif
-#ifdef B115200
- { 115200, B115200 },
-#endif
-#ifdef EXTA
- { 19200, EXTA },
-#endif
-#ifdef EXTB
- { 38400, EXTB },
-#endif
-#ifdef B230400
- { 230400, B230400 },
-#endif
-#ifdef B460800
- { 460800, B460800 },
-#endif
-#ifdef B921600
- { 921600, B921600 },
-#endif
- { 0, 0 }
-};
-
-/********************************************************************
- *
- * Translate from bits/second to a speed_t.
- */
-
-static int translate_speed (int bps)
-{
- struct speed *speedp;
-
- if (bps != 0) {
- for (speedp = speeds; speedp->speed_int; speedp++) {
- if (bps == speedp->speed_int)
- return speedp->speed_val;
- }
- warn("speed %d not supported", bps);
- }
- return 0;
-}
-
-/********************************************************************
- *
- * Translate from a speed_t to bits/second.
- */
-
-static int baud_rate_of (int speed)
-{
- struct speed *speedp;
-
- if (speed != 0) {
- for (speedp = speeds; speedp->speed_int; speedp++) {
- if (speed == speedp->speed_val)
- return speedp->speed_int;
- }
- }
- return 0;
-}
-
-/********************************************************************
- *
- * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
- * at the requested speed, etc. If `local' is true, set CLOCAL
- * regardless of whether the modem option was specified.
- */
-
-void set_up_tty(int tty_fd, int local)
-{
- int speed;
- struct termios tios;
-
- setdtr(tty_fd, 1);
- if (tcgetattr(tty_fd, &tios) < 0) {
- if (!ok_error(errno))
- fatal("tcgetattr: %m(%d)", errno);
- return;
- }
-
- if (!restore_term)
- inittermios = tios;
-
- tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
- tios.c_cflag |= CS8 | CREAD | HUPCL;
-
- tios.c_iflag = IGNBRK | IGNPAR;
- tios.c_oflag = 0;
- tios.c_lflag = 0;
- tios.c_cc[VMIN] = 1;
- tios.c_cc[VTIME] = 0;
-
- if (local || !modem)
- tios.c_cflag ^= (CLOCAL | HUPCL);
-
- switch (crtscts) {
- case 1:
- tios.c_cflag |= CRTSCTS;
- break;
-
- case -2:
- tios.c_iflag |= IXON | IXOFF;
- tios.c_cc[VSTOP] = 0x13; /* DC3 = XOFF = ^S */
- tios.c_cc[VSTART] = 0x11; /* DC1 = XON = ^Q */
- break;
-
- case -1:
- tios.c_cflag &= ~CRTSCTS;
- break;
-
- default:
- break;
- }
-
- speed = translate_speed(inspeed);
- if (speed) {
- cfsetospeed (&tios, speed);
- cfsetispeed (&tios, speed);
- }
-/*
- * We can't proceed if the serial port speed is B0,
- * since that implies that the serial port is disabled.
- */
- else {
- speed = cfgetospeed(&tios);
- if (speed == B0)
- fatal("Baud rate for %s is 0; need explicit baud rate", devnam);
- }
-
- if (tcsetattr(tty_fd, TCSAFLUSH, &tios) < 0)
- if (!ok_error(errno))
- fatal("tcsetattr: %m");
-
- baud_rate = baud_rate_of(speed);
- restore_term = 1;
-}
-
-/********************************************************************
- *
- * setdtr - control the DTR line on the serial port.
- * This is called from die(), so it shouldn't call die().
- */
-
-void setdtr (int tty_fd, int on)
-{
- int modembits = TIOCM_DTR;
-
- ioctl(tty_fd, (on ? TIOCMBIS : TIOCMBIC), &modembits);
-}
-
-/********************************************************************
- *
- * restore_tty - restore the terminal to the saved settings.
- */
-
-void restore_tty (int tty_fd)
-{
- if (restore_term) {
- restore_term = 0;
-/*
- * Turn off echoing, because otherwise we can get into
- * a loop with the tty and the modem echoing to each other.
- * We presume we are the sole user of this tty device, so
- * when we close it, it will revert to its defaults anyway.
- */
- if (!default_device)
- inittermios.c_lflag &= ~(ECHO | ECHONL);
-
- if (tcsetattr(tty_fd, TCSAFLUSH, &inittermios) < 0) {
- if (! ok_error (errno))
- warn("tcsetattr: %m");
- }
- }
-}
-
-/********************************************************************
- *
- * output - Output PPP packet.
- */
-
-void output (int unit, unsigned char *p, int len)
-{
- int fd = ppp_fd;
- int proto;
-
- if (debug)
- dbglog("sent %P", p, len);
-
- if (len < PPP_HDRLEN)
- return;
- if (new_style_driver) {
- p += 2;
- len -= 2;
- proto = (p[0] << 8) + p[1];
- if (ifunit >= 0 && !(proto >= 0xc000 || proto == PPP_CCPFRAG))
- fd = ppp_dev_fd;
- }
- if (write(fd, p, len) < 0) {
- if (errno == EWOULDBLOCK || errno == ENOBUFS
- || errno == ENXIO || errno == EIO || errno == EINTR)
- warn("write: warning: %m (%d)", errno);
- else
- error("write: %m (%d)", errno);
- }
-}
-
-/********************************************************************
- *
- * wait_input - wait until there is data available,
- * for the length of time specified by *timo (indefinite
- * if timo is NULL).
- */
-
-void wait_input(struct timeval *timo)
-{
- fd_set ready, exc;
- int n;
-
- ready = in_fds;
- exc = in_fds;
- n = select(max_in_fd + 1, &ready, NULL, &exc, timo);
- if (n < 0 && errno != EINTR)
- fatal("select: %m(%d)", errno);
-}
-
-/*
- * add_fd - add an fd to the set that wait_input waits for.
- */
-void add_fd(int fd)
-{
- FD_SET(fd, &in_fds);
- if (fd > max_in_fd)
- max_in_fd = fd;
-}
-
-/*
- * remove_fd - remove an fd from the set that wait_input waits for.
- */
-void remove_fd(int fd)
-{
- FD_CLR(fd, &in_fds);
-}
-
-
-/********************************************************************
- *
- * read_packet - get a PPP packet from the serial device.
- */
-
-int read_packet (unsigned char *buf)
-{
- int len, nr;
-
- len = PPP_MRU + PPP_HDRLEN;
- if (new_style_driver) {
- *buf++ = PPP_ALLSTATIONS;
- *buf++ = PPP_UI;
- len -= 2;
- }
- nr = -1;
- if (ppp_fd >= 0) {
- nr = read(ppp_fd, buf, len);
- if (nr < 0 && errno != EWOULDBLOCK && errno != EIO && errno != EINTR)
- error("read: %m");
- if (nr < 0 && errno == ENXIO)
- return 0;
- }
- if (nr < 0 && new_style_driver && ifunit >= 0) {
- /* N.B. we read ppp_fd first since LCP packets come in there. */
- nr = read(ppp_dev_fd, buf, len);
- if (nr < 0 && errno != EWOULDBLOCK && errno != EIO && errno != EINTR)
- error("read /dev/ppp: %m");
- if (nr < 0 && errno == ENXIO)
- return 0;
- }
- return (new_style_driver && nr > 0)? nr+2: nr;
-}
-
-/********************************************************************
- *
- * get_loop_output - get outgoing packets from the ppp device,
- * and detect when we want to bring the real link up.
- * Return value is 1 if we need to bring up the link, 0 otherwise.
- */
-int
-get_loop_output(void)
-{
- int rv = 0;
- int n;
-
- if (new_style_driver) {
- while ((n = read_packet(inpacket_buf)) > 0)
- if (loop_frame(inpacket_buf, n))
- rv = 1;
- return rv;
- }
-
- while ((n = read(master_fd, inbuf, sizeof(inbuf))) > 0)
- if (loop_chars(inbuf, n))
- rv = 1;
-
- if (n == 0)
- fatal("eof on loopback");
-
- if (errno != EWOULDBLOCK)
- fatal("read from loopback: %m(%d)", errno);
-
- return rv;
-}
-
-/*
- * netif_set_mtu - set the MTU on the PPP network interface.
- */
-void
-netif_set_mtu(int unit, int mtu)
-{
- struct ifreq ifr;
-
- SYSDEBUG ((LOG_DEBUG, "netif_set_mtu: mtu = %d\n", mtu));
-
- memset (&ifr, '\0', sizeof (ifr));
- strlcpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
- ifr.ifr_mtu = mtu;
-
- if (ifunit >= 0 && ioctl(sock_fd, SIOCSIFMTU, (caddr_t) &ifr) < 0)
- fatal("ioctl(SIOCSIFMTU): %m");
-}
-
-/********************************************************************
- *
- * tty_send_config - configure the transmit characteristics of
- * the ppp interface.
- */
-
-void tty_send_config (int mtu,u_int32_t asyncmap,int pcomp,int accomp)
-{
- u_int x;
-
-/*
- * Set the asyncmap and other parameters for the ppp device
- */
- if (!still_ppp())
- return;
- link_mtu = mtu;
- SYSDEBUG ((LOG_DEBUG, "send_config: asyncmap = %lx\n", asyncmap));
- if (ioctl(ppp_fd, PPPIOCSASYNCMAP, (caddr_t) &asyncmap) < 0) {
- if (!ok_error(errno))
- fatal("ioctl(PPPIOCSASYNCMAP): %m(%d)", errno);
- return;
- }
-
- x = get_flags(ppp_fd);
- x = pcomp ? x | SC_COMP_PROT : x & ~SC_COMP_PROT;
- x = accomp ? x | SC_COMP_AC : x & ~SC_COMP_AC;
- x = sync_serial ? x | SC_SYNC : x & ~SC_SYNC;
- set_flags(ppp_fd, x);
-}
-
-/********************************************************************
- *
- * tty_set_xaccm - set the extended transmit ACCM for the interface.
- */
-
-void tty_set_xaccm (ext_accm accm)
-{
- SYSDEBUG ((LOG_DEBUG, "set_xaccm: %08lx %08lx %08lx %08lx\n",
- accm[0], accm[1], accm[2], accm[3]));
-
- if (!still_ppp())
- return;
- if (ioctl(ppp_fd, PPPIOCSXASYNCMAP, accm) < 0 && errno != ENOTTY) {
- if ( ! ok_error (errno))
- warn("ioctl(set extended ACCM): %m(%d)", errno);
- }
-}
-
-/********************************************************************
- *
- * tty_recv_config - configure the receive-side characteristics of
- * the ppp interface.
- */
-
-void tty_recv_config (int mru,u_int32_t asyncmap,int pcomp,int accomp)
-{
- SYSDEBUG ((LOG_DEBUG, "recv_config: mru = %d\n", mru));
-/*
- * If we were called because the link has gone down then there is nothing
- * which may be done. Just return without incident.
- */
- if (!still_ppp())
- return;
-/*
- * Set the receiver parameters
- */
- if (ioctl(ppp_fd, PPPIOCSMRU, (caddr_t) &mru) < 0) {
- if ( ! ok_error (errno))
- error("ioctl(PPPIOCSMRU): %m(%d)", errno);
- }
- if (new_style_driver && ifunit >= 0
- && ioctl(ppp_dev_fd, PPPIOCSMRU, (caddr_t) &mru) < 0)
- error("Couldn't set MRU in generic PPP layer: %m");
-
- SYSDEBUG ((LOG_DEBUG, "recv_config: asyncmap = %lx\n", asyncmap));
- if (ioctl(ppp_fd, PPPIOCSRASYNCMAP, (caddr_t) &asyncmap) < 0) {
- if (!ok_error(errno))
- error("ioctl(PPPIOCSRASYNCMAP): %m(%d)", errno);
- }
-}
-
-/********************************************************************
- *
- * ccp_test - ask kernel whether a given compression method
- * is acceptable for use.
- */
-
-int ccp_test (int unit, u_char *opt_ptr, int opt_len, int for_transmit)
-{
- struct ppp_option_data data;
-
- memset (&data, '\0', sizeof (data));
- data.ptr = opt_ptr;
- data.length = opt_len;
- data.transmit = for_transmit;
-
- if (ioctl(ppp_dev_fd, PPPIOCSCOMPRESS, (caddr_t) &data) >= 0)
- return 1;
-
- return (errno == ENOBUFS)? 0: -1;
-}
-
-/********************************************************************
- *
- * ccp_flags_set - inform kernel about the current state of CCP.
- */
-
-void ccp_flags_set (int unit, int isopen, int isup)
-{
- if (still_ppp()) {
- int x = get_flags(ppp_dev_fd);
- x = isopen? x | SC_CCP_OPEN : x &~ SC_CCP_OPEN;
- x = isup? x | SC_CCP_UP : x &~ SC_CCP_UP;
- set_flags (ppp_dev_fd, x);
- }
-}
-
-#ifdef PPP_FILTER
-/*
- * set_filters - set the active and pass filters in the kernel driver.
- */
-int set_filters(struct bpf_program *pass, struct bpf_program *active)
-{
- struct sock_fprog fp;
-
- fp.len = pass->bf_len;
- fp.filter = (struct sock_filter *) pass->bf_insns;
- if (ioctl(ppp_dev_fd, PPPIOCSPASS, &fp) < 0) {
- if (errno == ENOTTY)
- warn("kernel does not support PPP filtering");
- else
- error("Couldn't set pass-filter in kernel: %m");
- return 0;
- }
- fp.len = active->bf_len;
- fp.filter = (struct sock_filter *) active->bf_insns;
- if (ioctl(ppp_dev_fd, PPPIOCSACTIVE, &fp) < 0) {
- error("Couldn't set active-filter in kernel: %m");
- return 0;
- }
- return 1;
-}
-#endif /* PPP_FILTER */
-
-/********************************************************************
- *
- * get_idle_time - return how long the link has been idle.
- */
-int
-get_idle_time(u, ip)
- int u;
- struct ppp_idle *ip;
-{
- return ioctl(ppp_dev_fd, PPPIOCGIDLE, ip) >= 0;
-}
-
-/********************************************************************
- *
- * get_ppp_stats - return statistics for the link.
- */
-int
-get_ppp_stats(u, stats)
- int u;
- struct pppd_stats *stats;
-{
- struct ifpppstatsreq req;
-
- memset (&req, 0, sizeof (req));
-
- req.stats_ptr = (caddr_t) &req.stats;
- strlcpy(req.ifr__name, ifname, sizeof(req.ifr__name));
- if (ioctl(sock_fd, SIOCGPPPSTATS, &req) < 0) {
- error("Couldn't get PPP statistics: %m");
- return 0;
- }
- stats->bytes_in = req.stats.p.ppp_ibytes;
- stats->bytes_out = req.stats.p.ppp_obytes;
- return 1;
-}
-
-/********************************************************************
- *
- * ccp_fatal_error - returns 1 if decompression was disabled as a
- * result of an error detected after decompression of a packet,
- * 0 otherwise. This is necessary because of patent nonsense.
- */
-
-int ccp_fatal_error (int unit)
-{
- int x = get_flags(ppp_dev_fd);
-
- return x & SC_DC_FERROR;
-}
-
-/********************************************************************
- *
- * path_to_procfs - find the path to the proc file system mount point
- */
-static char proc_path[MAXPATHLEN];
-static int proc_path_len;
-
-static char *path_to_procfs(const char *tail)
-{
- struct mntent *mntent;
- FILE *fp;
-
- if (proc_path_len == 0) {
- /* Default the mount location of /proc */
- strlcpy (proc_path, "/proc", sizeof(proc_path));
- proc_path_len = 5;
- fp = fopen(MOUNTED, "r");
- if (fp != NULL) {
- while ((mntent = getmntent(fp)) != NULL) {
- if (strcmp(mntent->mnt_type, MNTTYPE_IGNORE) == 0)
- continue;
- if (strcmp(mntent->mnt_type, "proc") == 0) {
- strlcpy(proc_path, mntent->mnt_dir, sizeof(proc_path));
- proc_path_len = strlen(proc_path);
- break;
- }
- }
- fclose (fp);
- }
- }
-
- strlcpy(proc_path + proc_path_len, tail,
- sizeof(proc_path) - proc_path_len);
- return proc_path;
-}
-
-/*
- * /proc/net/route parsing stuff.
- */
-#define ROUTE_MAX_COLS 12
-FILE *route_fd = (FILE *) 0;
-static char route_buffer[512];
-static int route_dev_col, route_dest_col, route_gw_col;
-static int route_flags_col, route_mask_col;
-static int route_num_cols;
-
-static int open_route_table (void);
-static void close_route_table (void);
-static int read_route_table (struct rtentry *rt);
-
-/********************************************************************
- *
- * close_route_table - close the interface to the route table
- */
-
-static void close_route_table (void)
-{
- if (route_fd != (FILE *) 0) {
- fclose (route_fd);
- route_fd = (FILE *) 0;
- }
-}
-
-/********************************************************************
- *
- * open_route_table - open the interface to the route table
- */
-static char route_delims[] = " \t\n";
-
-static int open_route_table (void)
-{
- char *path;
-
- close_route_table();
-
- path = path_to_procfs("/net/route");
- route_fd = fopen (path, "r");
- if (route_fd == NULL) {
- error("can't open routing table %s: %m", path);
- return 0;
- }
-
- route_dev_col = 0; /* default to usual columns */
- route_dest_col = 1;
- route_gw_col = 2;
- route_flags_col = 3;
- route_mask_col = 7;
- route_num_cols = 8;
-
- /* parse header line */
- if (fgets(route_buffer, sizeof(route_buffer), route_fd) != 0) {
- char *p = route_buffer, *q;
- int col;
- for (col = 0; col < ROUTE_MAX_COLS; ++col) {
- int used = 1;
- if ((q = strtok(p, route_delims)) == 0)
- break;
- if (strcasecmp(q, "iface") == 0)
- route_dev_col = col;
- else if (strcasecmp(q, "destination") == 0)
- route_dest_col = col;
- else if (strcasecmp(q, "gateway") == 0)
- route_gw_col = col;
- else if (strcasecmp(q, "flags") == 0)
- route_flags_col = col;
- else if (strcasecmp(q, "mask") == 0)
- route_mask_col = col;
- else
- used = 0;
- if (used && col >= route_num_cols)
- route_num_cols = col + 1;
- p = NULL;
- }
- }
-
- return 1;
-}
-
-/********************************************************************
- *
- * read_route_table - read the next entry from the route table
- */
-
-static int read_route_table(struct rtentry *rt)
-{
- char *cols[ROUTE_MAX_COLS], *p;
- int col;
-
- memset (rt, '\0', sizeof (struct rtentry));
-
- if (fgets (route_buffer, sizeof (route_buffer), route_fd) == (char *) 0)
- return 0;
-
- p = route_buffer;
- for (col = 0; col < route_num_cols; ++col) {
- cols[col] = strtok(p, route_delims);
- if (cols[col] == NULL)
- return 0; /* didn't get enough columns */
- p = NULL;
- }
-
- SIN_ADDR(rt->rt_dst) = strtoul(cols[route_dest_col], NULL, 16);
- SIN_ADDR(rt->rt_gateway) = strtoul(cols[route_gw_col], NULL, 16);
- SIN_ADDR(rt->rt_genmask) = strtoul(cols[route_mask_col], NULL, 16);
-
- rt->rt_flags = (short) strtoul(cols[route_flags_col], NULL, 16);
- rt->rt_dev = cols[route_dev_col];
-
- return 1;
-}
-
-/********************************************************************
- *
- * defaultroute_exists - determine if there is a default route
- */
-
-static int defaultroute_exists (struct rtentry *rt)
-{
- int result = 0;
-
- if (!open_route_table())
- return 0;
-
- while (read_route_table(rt) != 0) {
- if ((rt->rt_flags & RTF_UP) == 0)
- continue;
-
- if (kernel_version > KVERSION(2,1,0) && SIN_ADDR(rt->rt_genmask) != 0)
- continue;
- if (SIN_ADDR(rt->rt_dst) == 0L) {
- result = 1;
- break;
- }
- }
-
- close_route_table();
- return result;
-}
-
-/*
- * have_route_to - determine if the system has any route to
- * a given IP address. `addr' is in network byte order.
- * Return value is 1 if yes, 0 if no, -1 if don't know.
- * For demand mode to work properly, we have to ignore routes
- * through our own interface.
- */
-int have_route_to(u_int32_t addr)
-{
- struct rtentry rt;
- int result = 0;
-
- if (!open_route_table())
- return -1; /* don't know */
-
- while (read_route_table(&rt)) {
- if ((rt.rt_flags & RTF_UP) == 0 || strcmp(rt.rt_dev, ifname) == 0)
- continue;
- if ((addr & SIN_ADDR(rt.rt_genmask)) == SIN_ADDR(rt.rt_dst)) {
- result = 1;
- break;
- }
- }
-
- close_route_table();
- return result;
-}
-
-/********************************************************************
- *
- * sifdefaultroute - assign a default route through the address given.
- */
-
-int sifdefaultroute (int unit, u_int32_t ouraddr, u_int32_t gateway)
-{
- struct rtentry rt;
-
- if (defaultroute_exists(&rt) && strcmp(rt.rt_dev, ifname) != 0) {
- u_int32_t old_gateway = SIN_ADDR(rt.rt_gateway);
-
- if (old_gateway != gateway)
- error("not replacing existing default route to %s [%I]",
- rt.rt_dev, old_gateway);
- return 0;
- }
-
- memset (&rt, '\0', sizeof (rt));
- SET_SA_FAMILY (rt.rt_dst, AF_INET);
- SET_SA_FAMILY (rt.rt_gateway, AF_INET);
-
- if (kernel_version > KVERSION(2,1,0)) {
- SET_SA_FAMILY (rt.rt_genmask, AF_INET);
- SIN_ADDR(rt.rt_genmask) = 0L;
- }
-
- SIN_ADDR(rt.rt_gateway) = gateway;
-
- rt.rt_flags = RTF_UP | RTF_GATEWAY;
- if (ioctl(sock_fd, SIOCADDRT, &rt) < 0) {
- if ( ! ok_error ( errno ))
- error("default route ioctl(SIOCADDRT): %m(%d)", errno);
- return 0;
- }
-
- default_route_gateway = gateway;
- return 1;
-}
-
-/********************************************************************
- *
- * cifdefaultroute - delete a default route through the address given.
- */
-
-int cifdefaultroute (int unit, u_int32_t ouraddr, u_int32_t gateway)
-{
- struct rtentry rt;
-
- default_route_gateway = 0;
-
- memset (&rt, '\0', sizeof (rt));
- SET_SA_FAMILY (rt.rt_dst, AF_INET);
- SET_SA_FAMILY (rt.rt_gateway, AF_INET);
-
- if (kernel_version > KVERSION(2,1,0)) {
- SET_SA_FAMILY (rt.rt_genmask, AF_INET);
- SIN_ADDR(rt.rt_genmask) = 0L;
- }
-
- SIN_ADDR(rt.rt_gateway) = gateway;
-
- rt.rt_flags = RTF_UP | RTF_GATEWAY;
- if (ioctl(sock_fd, SIOCDELRT, &rt) < 0 && errno != ESRCH) {
- if (still_ppp()) {
- if ( ! ok_error ( errno ))
- error("default route ioctl(SIOCDELRT): %m (%d)", errno);
- return 0;
- }
- }
-
- return 1;
-}
-
-/********************************************************************
- *
- * sifproxyarp - Make a proxy ARP entry for the peer.
- */
-
-int sifproxyarp (int unit, u_int32_t his_adr)
-{
- struct arpreq arpreq;
- char *forw_path;
-
- if (has_proxy_arp == 0) {
- memset (&arpreq, '\0', sizeof(arpreq));
-
- SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
- SIN_ADDR(arpreq.arp_pa) = his_adr;
- arpreq.arp_flags = ATF_PERM | ATF_PUBL;
-/*
- * Get the hardware address of an interface on the same subnet
- * as our local address.
- */
- if (!get_ether_addr(his_adr, &arpreq.arp_ha, proxy_arp_dev,
- sizeof(proxy_arp_dev))) {
- error("Cannot determine ethernet address for proxy ARP");
- return 0;
- }
- strlcpy(arpreq.arp_dev, proxy_arp_dev, sizeof(arpreq.arp_dev));
-
- if (ioctl(sock_fd, SIOCSARP, (caddr_t)&arpreq) < 0) {
- if ( ! ok_error ( errno ))
- error("ioctl(SIOCSARP): %m(%d)", errno);
- return 0;
- }
- proxy_arp_addr = his_adr;
- has_proxy_arp = 1;
-
- if (tune_kernel) {
- forw_path = path_to_procfs("/sys/net/ipv4/ip_forward");
- if (forw_path != 0) {
- int fd = open(forw_path, O_WRONLY);
- if (fd >= 0) {
- if (write(fd, "1", 1) != 1)
- error("Couldn't enable IP forwarding: %m");
- close(fd);
- }
- }
- }
- }
-
- return 1;
-}
-
-/********************************************************************
- *
- * cifproxyarp - Delete the proxy ARP entry for the peer.
- */
-
-int cifproxyarp (int unit, u_int32_t his_adr)
-{
- struct arpreq arpreq;
-
- if (has_proxy_arp) {
- has_proxy_arp = 0;
- memset (&arpreq, '\0', sizeof(arpreq));
- SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
- SIN_ADDR(arpreq.arp_pa) = his_adr;
- arpreq.arp_flags = ATF_PERM | ATF_PUBL;
- strlcpy(arpreq.arp_dev, proxy_arp_dev, sizeof(arpreq.arp_dev));
-
- if (ioctl(sock_fd, SIOCDARP, (caddr_t)&arpreq) < 0) {
- if ( ! ok_error ( errno ))
- warn("ioctl(SIOCDARP): %m(%d)", errno);
- return 0;
- }
- }
- return 1;
-}
-
-/********************************************************************
- *
- * get_ether_addr - get the hardware address of an interface on the
- * the same subnet as ipaddr.
- */
-
-static int get_ether_addr (u_int32_t ipaddr,
- struct sockaddr *hwaddr,
- char *name, int namelen)
-{
- struct ifreq *ifr, *ifend;
- u_int32_t ina, mask;
- char *aliasp;
- struct ifreq ifreq;
- struct ifconf ifc;
- struct ifreq ifs[MAX_IFS];
-
- ifc.ifc_len = sizeof(ifs);
- ifc.ifc_req = ifs;
- if (ioctl(sock_fd, SIOCGIFCONF, &ifc) < 0) {
- if ( ! ok_error ( errno ))
- error("ioctl(SIOCGIFCONF): %m(%d)", errno);
- return 0;
- }
-
- SYSDEBUG ((LOG_DEBUG, "proxy arp: scanning %d interfaces for IP %s",
- ifc.ifc_len / sizeof(struct ifreq), ip_ntoa(ipaddr)));
-/*
- * Scan through looking for an interface with an Internet
- * address on the same subnet as `ipaddr'.
- */
- ifend = ifs + (ifc.ifc_len / sizeof(struct ifreq));
- for (ifr = ifc.ifc_req; ifr < ifend; ifr++) {
- if (ifr->ifr_addr.sa_family == AF_INET) {
- ina = SIN_ADDR(ifr->ifr_addr);
- strlcpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
- SYSDEBUG ((LOG_DEBUG, "proxy arp: examining interface %s",
- ifreq.ifr_name));
-/*
- * Check that the interface is up, and not point-to-point
- * nor loopback.
- */
- if (ioctl(sock_fd, SIOCGIFFLAGS, &ifreq) < 0)
- continue;
-
- if (((ifreq.ifr_flags ^ FLAGS_GOOD) & FLAGS_MASK) != 0)
- continue;
-/*
- * Get its netmask and check that it's on the right subnet.
- */
- if (ioctl(sock_fd, SIOCGIFNETMASK, &ifreq) < 0)
- continue;
-
- mask = SIN_ADDR(ifreq.ifr_addr);
- SYSDEBUG ((LOG_DEBUG, "proxy arp: interface addr %s mask %lx",
- ip_ntoa(ina), ntohl(mask)));
-
- if (((ipaddr ^ ina) & mask) != 0)
- continue;
- break;
- }
- }
-
- if (ifr >= ifend)
- return 0;
-
- strlcpy(name, ifreq.ifr_name, namelen);
-
- /* trim off the :1 in eth0:1 */
- aliasp = strchr(name, ':');
- if (aliasp != 0)
- *aliasp = 0;
-
- info("found interface %s for proxy arp", name);
-/*
- * Now get the hardware address.
- */
- memset (&ifreq.ifr_hwaddr, 0, sizeof (struct sockaddr));
- if (ioctl (sock_fd, SIOCGIFHWADDR, &ifreq) < 0) {
- error("SIOCGIFHWADDR(%s): %m(%d)", ifreq.ifr_name, errno);
- return 0;
- }
-
- memcpy (hwaddr,
- &ifreq.ifr_hwaddr,
- sizeof (struct sockaddr));
-
- SYSDEBUG ((LOG_DEBUG,
- "proxy arp: found hwaddr %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x",
- (int) ((unsigned char *) &hwaddr->sa_data)[0],
- (int) ((unsigned char *) &hwaddr->sa_data)[1],
- (int) ((unsigned char *) &hwaddr->sa_data)[2],
- (int) ((unsigned char *) &hwaddr->sa_data)[3],
- (int) ((unsigned char *) &hwaddr->sa_data)[4],
- (int) ((unsigned char *) &hwaddr->sa_data)[5],
- (int) ((unsigned char *) &hwaddr->sa_data)[6],
- (int) ((unsigned char *) &hwaddr->sa_data)[7]));
- return 1;
-}
-
-/*
- * get_if_hwaddr - get the hardware address for the specified
- * network interface device.
- */
-int
-get_if_hwaddr(u_char *addr, char *name)
-{
- struct ifreq ifreq;
- int ret, sock_fd;
-
- sock_fd = socket(AF_INET, SOCK_DGRAM, 0);
- if (sock_fd < 0)
- return 0;
- memset(&ifreq.ifr_hwaddr, 0, sizeof(struct sockaddr));
- strlcpy(ifreq.ifr_name, name, sizeof(ifreq.ifr_name));
- ret = ioctl(sock_fd, SIOCGIFHWADDR, &ifreq);
- close(sock_fd);
- if (ret >= 0)
- memcpy(addr, ifreq.ifr_hwaddr.sa_data, 6);
- return ret;
-}
-
-/*
- * get_first_ethernet - return the name of the first ethernet-style
- * interface on this system.
- */
-char *
-get_first_ethernet()
-{
- return "eth0";
-}
-
-/********************************************************************
- *
- * Return user specified netmask, modified by any mask we might determine
- * for address `addr' (in network byte order).
- * Here we scan through the system's list of interfaces, looking for
- * any non-point-to-point interfaces which might appear to be on the same
- * network as `addr'. If we find any, we OR in their netmask to the
- * user-specified netmask.
- */
-
-u_int32_t GetMask (u_int32_t addr)
-{
- u_int32_t mask, nmask, ina;
- struct ifreq *ifr, *ifend, ifreq;
- struct ifconf ifc;
- struct ifreq ifs[MAX_IFS];
-
- addr = ntohl(addr);
-
- if (IN_CLASSA(addr)) /* determine network mask for address class */
- nmask = IN_CLASSA_NET;
- else if (IN_CLASSB(addr))
- nmask = IN_CLASSB_NET;
- else
- nmask = IN_CLASSC_NET;
-
- /* class D nets are disallowed by bad_ip_adrs */
- mask = netmask | htonl(nmask);
-/*
- * Scan through the system's network interfaces.
- */
- ifc.ifc_len = sizeof(ifs);
- ifc.ifc_req = ifs;
- if (ioctl(sock_fd, SIOCGIFCONF, &ifc) < 0) {
- if ( ! ok_error ( errno ))
- warn("ioctl(SIOCGIFCONF): %m(%d)", errno);
- return mask;
- }
-
- ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
- for (ifr = ifc.ifc_req; ifr < ifend; ifr++) {
-/*
- * Check the interface's internet address.
- */
- if (ifr->ifr_addr.sa_family != AF_INET)
- continue;
- ina = SIN_ADDR(ifr->ifr_addr);
- if (((ntohl(ina) ^ addr) & nmask) != 0)
- continue;
-/*
- * Check that the interface is up, and not point-to-point nor loopback.
- */
- strlcpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
- if (ioctl(sock_fd, SIOCGIFFLAGS, &ifreq) < 0)
- continue;
-
- if (((ifreq.ifr_flags ^ FLAGS_GOOD) & FLAGS_MASK) != 0)
- continue;
-/*
- * Get its netmask and OR it into our mask.
- */
- if (ioctl(sock_fd, SIOCGIFNETMASK, &ifreq) < 0)
- continue;
- mask |= SIN_ADDR(ifreq.ifr_addr);
- break;
- }
- return mask;
-}
-
-/********************************************************************
- *
- * Internal routine to decode the version.modification.patch level
- */
-
-static void decode_version (char *buf, int *version,
- int *modification, int *patch)
-{
- char *endp;
-
- *version = (int) strtoul (buf, &endp, 10);
- *modification = 0;
- *patch = 0;
-
- if (endp != buf && *endp == '.') {
- buf = endp + 1;
- *modification = (int) strtoul (buf, &endp, 10);
- if (endp != buf && *endp == '.') {
- buf = endp + 1;
- *patch = (int) strtoul (buf, &buf, 10);
- }
- }
-}
-
-/********************************************************************
- *
- * Procedure to determine if the PPP line discipline is registered.
- */
-
-static int
-ppp_registered(void)
-{
- int local_fd;
- int mfd = -1;
- int ret = 0;
- char slave[16];
-
- /*
- * We used to open the serial device and set it to the ppp line
- * discipline here, in order to create a ppp unit. But that is
- * not a good idea - the user might have specified a device that
- * they can't open (permission, or maybe it doesn't really exist).
- * So we grab a pty master/slave pair and use that.
- */
- if (!get_pty(&mfd, &local_fd, slave, 0)) {
- no_ppp_msg = "Couldn't determine if PPP is supported (no free ptys)";
- return 0;
- }
-
- /*
- * Try to put the device into the PPP discipline.
- */
- if (ioctl(local_fd, TIOCSETD, &ppp_disc) < 0) {
- error("ioctl(TIOCSETD(PPP)): %m(%d)", errno);
- } else
- ret = 1;
-
- close(local_fd);
- close(mfd);
- return ret;
-}
-
-/********************************************************************
- *
- * ppp_available - check whether the system has any ppp interfaces
- * (in fact we check whether we can do an ioctl on ppp0).
- */
-
-int ppp_available(void)
-{
- int s, ok, fd;
- struct ifreq ifr;
- int size;
- int my_version, my_modification, my_patch;
- int osmaj, osmin, ospatch;
-
- no_ppp_msg =
- "This system lacks kernel support for PPP. This could be because\n"
- "the PPP kernel module could not be loaded, or because PPP was not\n"
- "included in the kernel configuration. If PPP was included as a\n"
- "module, try `/sbin/modprobe -v ppp'. If that fails, check that\n"
- "ppp.o exists in /lib/modules/`uname -r`/net.\n"
- "See README.linux file in the ppp distribution for more details.\n";
-
- /* get the kernel version now, since we are called before sys_init */
- uname(&utsname);
- osmaj = osmin = ospatch = 0;
- sscanf(utsname.release, "%d.%d.%d", &osmaj, &osmin, &ospatch);
- kernel_version = KVERSION(osmaj, osmin, ospatch);
-
- fd = open("/dev/ppp", O_RDWR);
-#if 0
- if (fd < 0 && errno == ENOENT) {
- /* try making it and see if that helps. */
- if (mknod("/dev/ppp", S_IFCHR | S_IRUSR | S_IWUSR,
- makedev(108, 0)) >= 0) {
- fd = open("/dev/ppp", O_RDWR);
- if (fd >= 0)
- info("Created /dev/ppp device node");
- else
- unlink("/dev/ppp"); /* didn't work, undo the mknod */
- } else if (errno == EEXIST) {
- fd = open("/dev/ppp", O_RDWR);
- }
- }
-#endif /* 0 */
- if (fd >= 0) {
- new_style_driver = 1;
-
- /* XXX should get from driver */
- driver_version = 2;
- driver_modification = 4;
- driver_patch = 0;
- close(fd);
- return 1;
- }
- if (kernel_version >= KVERSION(2,3,13)) {
- if (errno == ENOENT)
- no_ppp_msg =
- "pppd is unable to open the /dev/ppp device.\n"
- "You need to create the /dev/ppp device node by\n"
- "executing the following command as root:\n"
- " mknod /dev/ppp c 108 0\n";
- return 0;
- }
-
-/*
- * Open a socket for doing the ioctl operations.
- */
- s = socket(AF_INET, SOCK_DGRAM, 0);
- if (s < 0)
- return 0;
-
- strlcpy (ifr.ifr_name, "ppp0", sizeof (ifr.ifr_name));
- ok = ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) >= 0;
-/*
- * If the device did not exist then attempt to create one by putting the
- * current tty into the PPP discipline. If this works then obtain the
- * flags for the device again.
- */
- if (!ok) {
- if (ppp_registered()) {
- strlcpy (ifr.ifr_name, "ppp0", sizeof (ifr.ifr_name));
- ok = ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) >= 0;
- }
- }
-/*
- * Ensure that the hardware address is for PPP and not something else
- */
- if (ok)
- ok = ioctl (s, SIOCGIFHWADDR, (caddr_t) &ifr) >= 0;
-
- if (ok && ((ifr.ifr_hwaddr.sa_family & ~0xFF) != ARPHRD_PPP))
- ok = 0;
-
-/*
- * This is the PPP device. Validate the version of the driver at this
- * point to ensure that this program will work with the driver.
- */
- if (ok) {
- char abBuffer [1024];
-
- ifr.ifr_data = abBuffer;
- size = ioctl (s, SIOCGPPPVER, (caddr_t) &ifr);
- if (size < 0) {
- error("Couldn't read driver version: %m");
- ok = 0;
- no_ppp_msg = "Sorry, couldn't verify kernel driver version\n";
-
- } else {
- decode_version(abBuffer,
- &driver_version,
- &driver_modification,
- &driver_patch);
-/*
- * Validate the version of the driver against the version that we used.
- */
- decode_version(VERSION,
- &my_version,
- &my_modification,
- &my_patch);
-
- /* The version numbers must match */
- if (driver_version != my_version)
- ok = 0;
-
- /* The modification levels must be legal */
- if (driver_modification < 3) {
- if (driver_modification >= 2) {
- /* we can cope with 2.2.0 and above */
- driver_is_old = 1;
- } else {
- ok = 0;
- }
- }
-
- close (s);
- if (!ok) {
- slprintf(route_buffer, sizeof(route_buffer),
- "Sorry - PPP driver version %d.%d.%d is out of date\n",
- driver_version, driver_modification, driver_patch);
-
- no_ppp_msg = route_buffer;
- }
- }
- }
- return ok;
-}
-
-/********************************************************************
- *
- * Update the wtmp file with the appropriate user name and tty device.
- */
-
-void logwtmp (const char *line, const char *name, const char *host)
-{
- struct utmp ut, *utp;
- pid_t mypid = getpid();
-#if __GLIBC__ < 2
- int wtmp;
-#endif
-
-/*
- * Update the signon database for users.
- * Christoph Lameter: Copied from poeigl-1.36 Jan 3, 1996
- */
- utmpname(_PATH_UTMP);
- setutent();
- while ((utp = getutent()) && (utp->ut_pid != mypid))
- /* nothing */;
-
- /* Is this call really necessary? There is another one after the 'put' */
- endutent();
-
- if (utp)
- memcpy(&ut, utp, sizeof(ut));
- else
- /* some gettys/telnetds don't initialize utmp... */
- memset(&ut, 0, sizeof(ut));
-
- if (ut.ut_id[0] == 0)
- strncpy(ut.ut_id, line + 3, sizeof(ut.ut_id));
-
- strncpy(ut.ut_user, name, sizeof(ut.ut_user));
- strncpy(ut.ut_line, line, sizeof(ut.ut_line));
-
- time(&ut.ut_time);
-
- ut.ut_type = USER_PROCESS;
- ut.ut_pid = mypid;
-
- /* Insert the host name if one is supplied */
- if (*host)
- strncpy (ut.ut_host, host, sizeof(ut.ut_host));
-
- /* Insert the IP address of the remote system if IP is enabled */
- if (ipcp_protent.enabled_flag && ipcp_hisoptions[0].neg_addr)
- memcpy(&ut.ut_addr, (char *) &ipcp_hisoptions[0].hisaddr,
- sizeof(ut.ut_addr));
-
- /* CL: Makes sure that the logout works */
- if (*host == 0 && *name==0)
- ut.ut_host[0]=0;
-
- pututline(&ut);
- endutent();
-/*
- * Update the wtmp file.
- */
-#if __GLIBC__ >= 2
- updwtmp(_PATH_WTMP, &ut);
-#else
- wtmp = open(_PATH_WTMP, O_APPEND|O_WRONLY);
- if (wtmp >= 0) {
- flock(wtmp, LOCK_EX);
-
- if (write (wtmp, (char *)&ut, sizeof(ut)) != sizeof(ut))
- warn("error writing %s: %m", _PATH_WTMP);
-
- flock(wtmp, LOCK_UN);
-
- close (wtmp);
- }
-#endif
-}
-
-
-/********************************************************************
- *
- * sifvjcomp - config tcp header compression
- */
-
-int sifvjcomp (int u, int vjcomp, int cidcomp, int maxcid)
-{
- u_int x = get_flags(ppp_dev_fd);
-
- if (vjcomp) {
- if (ioctl (ppp_dev_fd, PPPIOCSMAXCID, (caddr_t) &maxcid) < 0) {
- if (! ok_error (errno))
- error("ioctl(PPPIOCSMAXCID): %m(%d)", errno);
- vjcomp = 0;
- }
- }
-
- x = vjcomp ? x | SC_COMP_TCP : x &~ SC_COMP_TCP;
- x = cidcomp ? x & ~SC_NO_TCP_CCID : x | SC_NO_TCP_CCID;
- set_flags (ppp_dev_fd, x);
-
- return 1;
-}
-
-/********************************************************************
- *
- * sifup - Config the interface up and enable IP packets to pass.
- */
-
-int sifup(int u)
-{
- struct ifreq ifr;
-
- memset (&ifr, '\0', sizeof (ifr));
- strlcpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
- if (ioctl(sock_fd, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
- if (! ok_error (errno))
- error("ioctl (SIOCGIFFLAGS): %m(%d)", errno);
- return 0;
- }
-
- ifr.ifr_flags |= (IFF_UP | IFF_POINTOPOINT);
- if (ioctl(sock_fd, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
- if (! ok_error (errno))
- error("ioctl(SIOCSIFFLAGS): %m(%d)", errno);
- return 0;
- }
- if_is_up++;
-
- return 1;
-}
-
-/********************************************************************
- *
- * sifdown - Disable the indicated protocol and config the interface
- * down if there are no remaining protocols.
- */
-
-int sifdown (int u)
-{
- struct ifreq ifr;
-
- if (if_is_up && --if_is_up > 0)
- return 1;
-
- memset (&ifr, '\0', sizeof (ifr));
- strlcpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
- if (ioctl(sock_fd, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
- if (! ok_error (errno))
- error("ioctl (SIOCGIFFLAGS): %m(%d)", errno);
- return 0;
- }
-
- ifr.ifr_flags &= ~IFF_UP;
- ifr.ifr_flags |= IFF_POINTOPOINT;
- if (ioctl(sock_fd, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
- if (! ok_error (errno))
- error("ioctl(SIOCSIFFLAGS): %m(%d)", errno);
- return 0;
- }
- return 1;
-}
-
-/********************************************************************
- *
- * sifaddr - Config the interface IP addresses and netmask.
- */
-
-int sifaddr (int unit, u_int32_t our_adr, u_int32_t his_adr,
- u_int32_t net_mask)
-{
- struct ifreq ifr;
- struct rtentry rt;
-
- memset (&ifr, '\0', sizeof (ifr));
- memset (&rt, '\0', sizeof (rt));
-
- SET_SA_FAMILY (ifr.ifr_addr, AF_INET);
- SET_SA_FAMILY (ifr.ifr_dstaddr, AF_INET);
- SET_SA_FAMILY (ifr.ifr_netmask, AF_INET);
-
- strlcpy (ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
-/*
- * Set our IP address
- */
- SIN_ADDR(ifr.ifr_addr) = our_adr;
- if (ioctl(sock_fd, SIOCSIFADDR, (caddr_t) &ifr) < 0) {
- if (errno != EEXIST) {
- if (! ok_error (errno))
- error("ioctl(SIOCSIFADDR): %m(%d)", errno);
- }
- else {
- warn("ioctl(SIOCSIFADDR): Address already exists");
- }
- return (0);
- }
-/*
- * Set the gateway address
- */
- SIN_ADDR(ifr.ifr_dstaddr) = his_adr;
- if (ioctl(sock_fd, SIOCSIFDSTADDR, (caddr_t) &ifr) < 0) {
- if (! ok_error (errno))
- error("ioctl(SIOCSIFDSTADDR): %m(%d)", errno);
- return (0);
- }
-/*
- * Set the netmask.
- * For recent kernels, force the netmask to 255.255.255.255.
- */
- if (kernel_version >= KVERSION(2,1,16))
- net_mask = ~0L;
- if (net_mask != 0) {
- SIN_ADDR(ifr.ifr_netmask) = net_mask;
- if (ioctl(sock_fd, SIOCSIFNETMASK, (caddr_t) &ifr) < 0) {
- if (! ok_error (errno))
- error("ioctl(SIOCSIFNETMASK): %m(%d)", errno);
- return (0);
- }
- }
-/*
- * Add the device route
- */
- if (kernel_version < KVERSION(2,1,16)) {
- SET_SA_FAMILY (rt.rt_dst, AF_INET);
- SET_SA_FAMILY (rt.rt_gateway, AF_INET);
- rt.rt_dev = ifname;
-
- SIN_ADDR(rt.rt_gateway) = 0L;
- SIN_ADDR(rt.rt_dst) = his_adr;
- rt.rt_flags = RTF_UP | RTF_HOST;
-
- if (kernel_version > KVERSION(2,1,0)) {
- SET_SA_FAMILY (rt.rt_genmask, AF_INET);
- SIN_ADDR(rt.rt_genmask) = -1L;
- }
-
- if (ioctl(sock_fd, SIOCADDRT, &rt) < 0) {
- if (! ok_error (errno))
- error("ioctl(SIOCADDRT) device route: %m(%d)", errno);
- return (0);
- }
- }
-
- /* set ip_dynaddr in demand mode if address changes */
- if (demand && tune_kernel && !dynaddr_set
- && our_old_addr && our_old_addr != our_adr) {
- /* set ip_dynaddr if possible */
- char *path;
- int fd;
-
- path = path_to_procfs("/sys/net/ipv4/ip_dynaddr");
- if (path != 0 && (fd = open(path, O_WRONLY)) >= 0) {
- if (write(fd, "1", 1) != 1)
- error("Couldn't enable dynamic IP addressing: %m");
- close(fd);
- }
- dynaddr_set = 1; /* only 1 attempt */
- }
- our_old_addr = 0;
-
- return 1;
-}
-
-/********************************************************************
- *
- * cifaddr - Clear the interface IP addresses, and delete routes
- * through the interface if possible.
- */
-
-int cifaddr (int unit, u_int32_t our_adr, u_int32_t his_adr)
-{
- struct ifreq ifr;
-
- if (kernel_version < KVERSION(2,1,16)) {
-/*
- * Delete the route through the device
- */
- struct rtentry rt;
- memset (&rt, '\0', sizeof (rt));
-
- SET_SA_FAMILY (rt.rt_dst, AF_INET);
- SET_SA_FAMILY (rt.rt_gateway, AF_INET);
- rt.rt_dev = ifname;
-
- SIN_ADDR(rt.rt_gateway) = 0;
- SIN_ADDR(rt.rt_dst) = his_adr;
- rt.rt_flags = RTF_UP | RTF_HOST;
-
- if (kernel_version > KVERSION(2,1,0)) {
- SET_SA_FAMILY (rt.rt_genmask, AF_INET);
- SIN_ADDR(rt.rt_genmask) = -1L;
- }
-
- if (ioctl(sock_fd, SIOCDELRT, &rt) < 0 && errno != ESRCH) {
- if (still_ppp() && ! ok_error (errno))
- error("ioctl(SIOCDELRT) device route: %m(%d)", errno);
- return (0);
- }
- }
-
- /* This way it is possible to have an IPX-only or IPv6-only interface */
- memset(&ifr, 0, sizeof(ifr));
- SET_SA_FAMILY(ifr.ifr_addr, AF_INET);
- strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
-
- if (ioctl(sock_fd, SIOCSIFADDR, (caddr_t) &ifr) < 0) {
- if (! ok_error (errno)) {
- error("ioctl(SIOCSIFADDR): %m(%d)", errno);
- return 0;
- }
- }
-
- our_old_addr = our_adr;
-
- return 1;
-}
-
-#ifdef INET6
-/********************************************************************
- *
- * sif6addr - Config the interface with an IPv6 link-local address
- */
-int sif6addr (int unit, eui64_t our_eui64, eui64_t his_eui64)
-{
- struct in6_ifreq ifr6;
- struct ifreq ifr;
- struct in6_rtmsg rt6;
-
- if (sock6_fd < 0) {
- errno = -sock6_fd;
- error("IPv6 socket creation failed: %m");
- return 0;
- }
- memset(&ifr, 0, sizeof (ifr));
- strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
- if (ioctl(sock6_fd, SIOCGIFINDEX, (caddr_t) &ifr) < 0) {
- error("sif6addr: ioctl(SIOCGIFINDEX): %m (%d)", errno);
- return 0;
- }
-
- /* Local interface */
- memset(&ifr6, 0, sizeof(ifr6));
- IN6_LLADDR_FROM_EUI64(ifr6.ifr6_addr, our_eui64);
- ifr6.ifr6_ifindex = ifr.ifr_ifindex;
- ifr6.ifr6_prefixlen = 10;
-
- if (ioctl(sock6_fd, SIOCSIFADDR, &ifr6) < 0) {
- error("sif6addr: ioctl(SIOCSIFADDR): %m (%d)", errno);
- return 0;
- }
-
- /* Route to remote host */
- memset(&rt6, 0, sizeof(rt6));
- IN6_LLADDR_FROM_EUI64(rt6.rtmsg_dst, his_eui64);
- rt6.rtmsg_flags = RTF_UP;
- rt6.rtmsg_dst_len = 10;
- rt6.rtmsg_ifindex = ifr.ifr_ifindex;
- rt6.rtmsg_metric = 1;
-
- if (ioctl(sock6_fd, SIOCADDRT, &rt6) < 0) {
- error("sif6addr: ioctl(SIOCADDRT): %m (%d)", errno);
- return 0;
- }
-
- return 1;
-}
-
-
-/********************************************************************
- *
- * cif6addr - Remove IPv6 address from interface
- */
-int cif6addr (int unit, eui64_t our_eui64, eui64_t his_eui64)
-{
- struct ifreq ifr;
- struct in6_ifreq ifr6;
-
- if (sock6_fd < 0) {
- errno = -sock6_fd;
- error("IPv6 socket creation failed: %m");
- return 0;
- }
- memset(&ifr, 0, sizeof(ifr));
- strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
- if (ioctl(sock6_fd, SIOCGIFINDEX, (caddr_t) &ifr) < 0) {
- error("cif6addr: ioctl(SIOCGIFINDEX): %m (%d)", errno);
- return 0;
- }
-
- memset(&ifr6, 0, sizeof(ifr6));
- IN6_LLADDR_FROM_EUI64(ifr6.ifr6_addr, our_eui64);
- ifr6.ifr6_ifindex = ifr.ifr_ifindex;
- ifr6.ifr6_prefixlen = 10;
-
- if (ioctl(sock6_fd, SIOCDIFADDR, &ifr6) < 0) {
- if (errno != EADDRNOTAVAIL) {
- if (! ok_error (errno))
- error("cif6addr: ioctl(SIOCDIFADDR): %m (%d)", errno);
- }
- else {
- warn("cif6addr: ioctl(SIOCDIFADDR): No such address");
- }
- return (0);
- }
- return 1;
-}
-#endif /* INET6 */
-
-/*
- * get_pty - get a pty master/slave pair and chown the slave side
- * to the uid given. Assumes slave_name points to >= 16 bytes of space.
- */
-int
-get_pty(master_fdp, slave_fdp, slave_name, uid)
- int *master_fdp;
- int *slave_fdp;
- char *slave_name;
- int uid;
-{
- int i, mfd, sfd = -1;
- char pty_name[16];
- struct termios tios;
-
-#ifdef TIOCGPTN
- /*
- * Try the unix98 way first.
- */
- mfd = open("/dev/ptmx", O_RDWR);
- if (mfd >= 0) {
- int ptn;
- if (ioctl(mfd, TIOCGPTN, &ptn) >= 0) {
- slprintf(pty_name, sizeof(pty_name), "/dev/pts/%d", ptn);
- chmod(pty_name, S_IRUSR | S_IWUSR);
-#ifdef TIOCSPTLCK
- ptn = 0;
- if (ioctl(mfd, TIOCSPTLCK, &ptn) < 0)
- warn("Couldn't unlock pty slave %s: %m", pty_name);
-#endif
- if ((sfd = open(pty_name, O_RDWR | O_NOCTTY)) < 0)
- warn("Couldn't open pty slave %s: %m", pty_name);
- }
- }
-#endif /* TIOCGPTN */
-
- if (sfd < 0) {
- /* the old way - scan through the pty name space */
- for (i = 0; i < 64; ++i) {
- slprintf(pty_name, sizeof(pty_name), "/dev/pty%c%x",
- 'p' + i / 16, i % 16);
- mfd = open(pty_name, O_RDWR, 0);
- if (mfd >= 0) {
- pty_name[5] = 't';
- sfd = open(pty_name, O_RDWR | O_NOCTTY, 0);
- if (sfd >= 0) {
- fchown(sfd, uid, -1);
- fchmod(sfd, S_IRUSR | S_IWUSR);
- break;
- }
- close(mfd);
- }
- }
- }
-
- if (sfd < 0)
- return 0;
-
- strlcpy(slave_name, pty_name, 16);
- *master_fdp = mfd;
- *slave_fdp = sfd;
- if (tcgetattr(sfd, &tios) == 0) {
- tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB);
- tios.c_cflag |= CS8 | CREAD | CLOCAL;
- tios.c_iflag = IGNPAR;
- tios.c_oflag = 0;
- tios.c_lflag = 0;
- if (tcsetattr(sfd, TCSAFLUSH, &tios) < 0)
- warn("couldn't set attributes on pty: %m");
- } else
- warn("couldn't get attributes on pty: %m");
-
- return 1;
-}
-
-/********************************************************************
- *
- * open_loopback - open the device we use for getting packets
- * in demand mode. Under Linux, we use a pty master/slave pair.
- */
-int
-open_ppp_loopback(void)
-{
- int flags;
-
- looped = 1;
- if (new_style_driver) {
- /* allocate ourselves a ppp unit */
- if (make_ppp_unit() < 0)
- die(1);
- set_flags(ppp_dev_fd, SC_LOOP_TRAFFIC);
- set_kdebugflag(kdebugflag);
- ppp_fd = -1;
- return ppp_dev_fd;
- }
-
- if (!get_pty(&master_fd, &slave_fd, loop_name, 0))
- fatal("No free pty for loopback");
- SYSDEBUG(("using %s for loopback", loop_name));
-
- set_ppp_fd(slave_fd);
-
- flags = fcntl(master_fd, F_GETFL);
- if (flags == -1 ||
- fcntl(master_fd, F_SETFL, flags | O_NONBLOCK) == -1)
- warn("couldn't set master loopback to nonblock: %m(%d)", errno);
-
- flags = fcntl(ppp_fd, F_GETFL);
- if (flags == -1 ||
- fcntl(ppp_fd, F_SETFL, flags | O_NONBLOCK) == -1)
- warn("couldn't set slave loopback to nonblock: %m(%d)", errno);
-
- if (ioctl(ppp_fd, TIOCSETD, &ppp_disc) < 0)
- fatal("ioctl(TIOCSETD): %m(%d)", errno);
-/*
- * Find out which interface we were given.
- */
- if (ioctl(ppp_fd, PPPIOCGUNIT, &ifunit) < 0)
- fatal("ioctl(PPPIOCGUNIT): %m(%d)", errno);
-/*
- * Enable debug in the driver if requested.
- */
- set_kdebugflag (kdebugflag);
-
- return master_fd;
-}
-
-/********************************************************************
- *
- * restore_loop - reattach the ppp unit to the loopback.
- *
- * The kernel ppp driver automatically reattaches the ppp unit to
- * the loopback if the serial port is set to a line discipline other
- * than ppp, or if it detects a modem hangup. The former will happen
- * in disestablish_ppp if the latter hasn't already happened, so we
- * shouldn't need to do anything.
- *
- * Just to be sure, set the real serial port to the normal discipline.
- */
-
-static void
-restore_loop(void)
-{
- looped = 1;
- if (new_style_driver) {
- set_flags(ppp_dev_fd, get_flags(ppp_dev_fd) | SC_LOOP_TRAFFIC);
- return;
- }
- if (ppp_fd != slave_fd) {
- (void) ioctl(ppp_fd, TIOCSETD, &tty_disc);
- set_ppp_fd(slave_fd);
- }
-}
-
-/********************************************************************
- *
- * sifnpmode - Set the mode for handling packets for a given NP.
- */
-
-int
-sifnpmode(u, proto, mode)
- int u;
- int proto;
- enum NPmode mode;
-{
- struct npioctl npi;
-
- npi.protocol = proto;
- npi.mode = mode;
- if (ioctl(ppp_dev_fd, PPPIOCSNPMODE, (caddr_t) &npi) < 0) {
- if (! ok_error (errno))
- error("ioctl(PPPIOCSNPMODE, %d, %d): %m (%d)",
- proto, mode, errno);
- return 0;
- }
- return 1;
-}
-
-
-/********************************************************************
- *
- * sipxfaddr - Config the interface IPX networknumber
- */
-
-int sipxfaddr (int unit, unsigned long int network, unsigned char * node )
-{
- int result = 1;
-
-#ifdef IPX_CHANGE
- int skfd;
- struct ifreq ifr;
- struct sockaddr_ipx *sipx = (struct sockaddr_ipx *) &ifr.ifr_addr;
-
- skfd = socket (AF_IPX, SOCK_DGRAM, 0);
- if (skfd < 0) {
- if (! ok_error (errno))
- dbglog("socket(AF_IPX): %m (%d)", errno);
- result = 0;
- }
- else {
- memset (&ifr, '\0', sizeof (ifr));
- strlcpy (ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
-
- memcpy (sipx->sipx_node, node, IPX_NODE_LEN);
- sipx->sipx_family = AF_IPX;
- sipx->sipx_port = 0;
- sipx->sipx_network = htonl (network);
- sipx->sipx_type = IPX_FRAME_ETHERII;
- sipx->sipx_action = IPX_CRTITF;
-/*
- * Set the IPX device
- */
- if (ioctl(skfd, SIOCSIFADDR, (caddr_t) &ifr) < 0) {
- result = 0;
- if (errno != EEXIST) {
- if (! ok_error (errno))
- dbglog("ioctl(SIOCSIFADDR, CRTITF): %m (%d)", errno);
- }
- else {
- warn("ioctl(SIOCSIFADDR, CRTITF): Address already exists");
- }
- }
- close (skfd);
- }
-#endif
- return result;
-}
-
-/********************************************************************
- *
- * cipxfaddr - Clear the information for the IPX network. The IPX routes
- * are removed and the device is no longer able to pass IPX
- * frames.
- */
-
-int cipxfaddr (int unit)
-{
- int result = 1;
-
-#ifdef IPX_CHANGE
- int skfd;
- struct ifreq ifr;
- struct sockaddr_ipx *sipx = (struct sockaddr_ipx *) &ifr.ifr_addr;
-
- skfd = socket (AF_IPX, SOCK_DGRAM, 0);
- if (skfd < 0) {
- if (! ok_error (errno))
- dbglog("socket(AF_IPX): %m (%d)", errno);
- result = 0;
- }
- else {
- memset (&ifr, '\0', sizeof (ifr));
- strlcpy (ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
-
- sipx->sipx_type = IPX_FRAME_ETHERII;
- sipx->sipx_action = IPX_DLTITF;
- sipx->sipx_family = AF_IPX;
-/*
- * Set the IPX device
- */
- if (ioctl(skfd, SIOCSIFADDR, (caddr_t) &ifr) < 0) {
- if (! ok_error (errno))
- info("ioctl(SIOCSIFADDR, IPX_DLTITF): %m (%d)", errno);
- result = 0;
- }
- close (skfd);
- }
-#endif
- return result;
-}
-
-/*
- * Use the hostname as part of the random number seed.
- */
-int
-get_host_seed()
-{
- int h;
- char *p = hostname;
-
- h = 407;
- for (p = hostname; *p != 0; ++p)
- h = h * 37 + *p;
- return h;
-}
-
-/********************************************************************
- *
- * sys_check_options - check the options that the user specified
- */
-
-int
-sys_check_options(void)
-{
-#ifdef IPX_CHANGE
-/*
- * Disable the IPX protocol if the support is not present in the kernel.
- */
- char *path;
-
- if (ipxcp_protent.enabled_flag) {
- struct stat stat_buf;
- if ((path = path_to_procfs("/net/ipx_interface")) == 0
- || lstat(path, &stat_buf) < 0) {
- error("IPX support is not present in the kernel\n");
- ipxcp_protent.enabled_flag = 0;
- }
- }
-#endif
- if (demand && driver_is_old) {
- option_error("demand dialling is not supported by kernel driver "
- "version %d.%d.%d", driver_version, driver_modification,
- driver_patch);
- return 0;
- }
- if (multilink && !new_style_driver) {
- warn("Warning: multilink is not supported by the kernel driver");
- multilink = 0;
- }
- return 1;
-}
المرور غير متطابقة"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "الرجاء المحاولة مجدداً"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "كلمة المرور (مجدداً)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "تنظيف /tmp عند كل إقلاع"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "رسالة Init"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "تأخير Open Firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "الوقت الأقصى لإقلاع النواة"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "تمكين الإقلاع من القرص المدمج؟"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "تمكين إقلاع OF؟"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "نظام التشغيل الافتراضي؟"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "صورة"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "الجذر"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "إلحاق"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "وضعية الفيديو"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "سجلّ إعداد الشبكة "
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "تسمية"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "افتراضي"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "لا فيديو"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "لا يُسمح بالتسميات الفارغة"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "يجب تحديد صورة النواة"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "يجب تحديد تجزيء جذر"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "هذه التسمية مستخدمة مسبقا"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل المُراد إضافته؟"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "لينكس"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "نظام تشغيل آخر (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "نظام تشغيل آخر (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "نظام تشغيل آخر (ويندوز...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -349,194 +349,194 @@ msgstr ""
"هذه هي المدخلات المختلفة في قائمة الإقلاع حتى الآن.\n"
"يمكنك إضافة مدخلات أخرى أو تغيير الموجودة."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "الوصول إلى برامج X"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "الوصول إلى أدوات rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "السماح بـ\"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "الوصول إلى ملفات الإدارة"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "الوصول إلى أدوات الشبكة"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "الوصول إلى أدوات التجميع"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(تمت إضافة %s مسبقا)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "الرجاء إعطاء اسم مستخدم"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "اسم المستخدم طويل جداً"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "هوية المستخدم"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "هوية المجموعة"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "ضع كلمة مرور المستخدم الجذر"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "أيقونة"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "اسم الدخول"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "الصدفة"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "انتظر من فضلك، جاري إضافة الوسائط..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "تسجيل دخول آلي"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "يمكن إعداد جهازك لتسجيل الدخول آلياً لمستخدم معين."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "اختيار المستخدم الافتراضي:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "اختيار مدير النوافذ الذي سيتم تشغيله:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "ملاحظات الإصدار"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "إغلاق"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "اتفاقية الترخيص"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "خروج"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "قبول"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "رفض"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "الرجاء اختيار لغة لاستخدامها"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -544,82 +544,82 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "كل اللغات"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "كل اللغات"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "خيار اللغة"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "الدولة / الإقليم"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "الرجاء اختيار الدولة"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "هذه قائمة كاملة بكل الدول المتوفرة"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "دول أخرى"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "متقدم"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "طريقة الإدخال:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "لاشيء"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "لا مشاركة"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "السماح لكل المستخدمين"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "مخصّص"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -634,14 +634,14 @@ msgstr ""
"\n"
"\"مخصص\" يسمح لك بعمل إعدادات خاص لكل مستخدم.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr "NFS: نظام تقسيم ملفّات يونكس التّقليدي، بدعم أقلّ على ماك و ويندوز."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -650,18 +650,18 @@ msgstr ""
"SMB: نظام تقسيم ملفّات مستعمل من قبل ويندوز، ماك OS X و العديد من أنظمة لينكس "
"الحديثة."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "يمكنك التّصدير باستعمال NFS أو SMB. الرجاء اختيار أيّهما تريد استعماله."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "تشغيل userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -670,54 +670,54 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "المنطقة الزمنية"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "ما هي منطقتك الزمنية؟"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "خادم NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "تزامن وقت آلي (باستخدام NTP)"
@@ -1046,7 +1046,7 @@ msgid "Domain Admin Password"
msgstr "كلمة المرور لمدير النطاق"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1061,56 +1061,56 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO مع قائمة نصية"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "لا توجد مساحة كافية في /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "تهيئة محمّل الإقلاع يجب أن يحدّث لأنّ التجزيء تمّ إعادة ترقيمه"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "إعادة تثبيت مُحمِّل الإقلاع"
@@ -1227,7 +1227,7 @@ msgstr "تم"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1251,7 +1251,7 @@ msgstr "العنوان يجب أن يبدأ بـ http:// أو https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "تحذير"
@@ -2272,7 +2272,7 @@ msgstr ""
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "الحزمة %s يجب أن تُثبت. هل تريد تثبيتها؟"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "تعذر تثبيت حزمة %s!"
@@ -2282,17 +2282,17 @@ msgstr "تعذر تثبيت حزمة %s!"
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "يجب تثبيت الحزم التالية:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "جاري تركيب الحزم..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "حذف الحزم..."
@@ -4655,7 +4655,7 @@ msgstr "زامبيا"
msgid "Zimbabwe"
msgstr "زيمبابوي"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "أهلا في %s"
@@ -4681,7 +4681,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4694,12 +4694,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4722,7 +4721,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4767,7 +4767,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4787,7 +4788,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4801,7 +4803,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4819,7 +4822,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4839,7 +4842,7 @@ msgstr ""
"قد تنطبق عليك، تحقّق من القوانين المحليّة لبلدك."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 4b09376a6..f9fb5f86b 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -19,21 +19,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Xahiş edirik, gözləyin"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -44,12 +44,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -67,7 +67,7 @@ msgstr ""
" Sonra da bunları yazın: shut-down\n"
"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -82,269 +82,269 @@ msgstr ""
"\n"
"Hansı sürücü üstündən açılış edirsiniz?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükləyicisini hara qurmaq istəyirsiniz?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Diskin ilk sektoru (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Kök bolməsinin ilk sektoru"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Disketə"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Keç"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Açılış Tərzi Quraşdırılması"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Sistem yükləyicisinin ana seçimləri"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Açılış yükləyicisi"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Təhlükəsizlik"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Şifrə"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Şifrələr uyğun gəlmir"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Xahiş edirik, təkrar sınayın"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Şifrə (təkrar)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "/tmp-i hər açılışda təmizlə"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Init İsmarışı"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Açıq Firmware Gecikməsi"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Çəyirdək Açılış Vaxt Dolması"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "CD Açılışı Fəallaşdırılsın?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "OF Açılışı Fəallaşdırılsın?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Əsas ƏS?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Əks"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Kök"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Sonuna əlavə et"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Video modu"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Şəbəkə profili"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiket"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Ön Qurğulu"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilmir"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Çəyirdək əksini bildirməlisiniz"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Kök bölməsini bildirməlisiniz"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Bu etiket onsuzda istifadə edilib"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Nə cür bir giriş əlavə etmək istəyirsiniz?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linuks"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Digər ƏS (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Digər ƏS (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Açılış Tərzi Quraşdırılması"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -353,47 +353,47 @@ msgstr ""
"Buradakı bir birindən fərqli seçimlərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "X proqramlarına yetişmə icazəsi"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "rpm vasitələrinə yetişmə"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "\"su\" icazəsi ver"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "idarəvi fayllara yetişmə"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "şəbəkə vasitələrinə yetişmə"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "dərləmə vasitələrinə yetişmə"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Xahiş edirik, bir istifadəçi adı alın"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -402,150 +402,150 @@ msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "İstifadəçi adı çox uzundur"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Bu istifadəçi adı onsuzda əlavə edilib"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "İstifadəçi ID'si"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Qrup ID'si"
-#: any.pm:895
+#: any.pm:894
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s seçimi rəqəm olmalıdır!"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "İstifadəçi adı"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Ali istifadəçi şifrəsini tə'yin et"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Bir istifadəçi daxil edin\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Timsal"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Həqiqi ad"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Giriş adı"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Qabıq"
-#: any.pm:972
+#: any.pm:971
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "ttmkfdir fəaliyyətdədir, xahiş edirik, gözləyin..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kompüteriniz istifadəçinin avtomatik giriş etməsi üçün qurğulana bilər."
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "İşlətmək istədiyiniz pəncərə idarəçisini seçin:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Buraxılış:"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Bağla"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Lisenziya razılığı"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Çıx"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Başqası var?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Qəbul Et"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Rədd Et"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Xahiş edirik, istifadə ediləcək dili seçin"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -556,82 +556,82 @@ msgstr ""
"dilləri seçin. Onlar qurulum tamamlanandan və sistem yenidən\n"
"başlayandan sonra istifadəyə hazır olacaqlar."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Bütün dillər"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Bütün dillər"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Dil seçkisi"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Ölkə / Bölgə"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Xahiş edirik, ölkənizi seçin"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Bütün mövcud ölkələrinn siyahısı"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Diqər Ölkələr"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Ətraflı"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Giriş yöntəmi:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Heç biri"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Bölüşmə yoxdur"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Bütün istifadəçilərə icazə ver"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Xüsusi"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -648,21 +648,21 @@ msgstr ""
"\"Xüsusi\" seçənəyi, hər istifadəçiyə fərqli icazə vermək üçün istifadə "
"edilir.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -670,12 +670,12 @@ msgstr ""
"NFS ya da SMB işlədərək ixrac edə bilərsiniz. Xahiş edirik, işlətmək "
"istədiyinizi seçin."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake-ni başlat"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -685,7 +685,7 @@ msgstr ""
"Bu qrupa istifadəçiləri əlavə etmək üçün userdrake'dən istifadə edə "
"bilərsiniz. "
-#: any.pm:1504
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -693,48 +693,48 @@ msgid ""
msgstr ""
"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Vaxt Zolağı"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Vaxt zolağınız hansıdır?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Avadanlıq saatı GMT'yə görə quruludur"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Avadanlıq saatı GMT'yə görə quruludur"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Verici"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)"
@@ -1062,7 +1062,7 @@ msgstr "Domen İdarəçi Şifrəsi"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1072,56 +1072,56 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "Mətn menyulu LILO"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini %s bölməsinə qura bilməzsiniz\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Sistem Yükləyicisini Yenidən Qur"
@@ -1238,7 +1238,7 @@ msgstr "Qurtardı"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1262,7 +1262,7 @@ msgstr "URL http:// ya da https:// ilə başlamalıdır"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Xəbərdarlıq"
@@ -2294,7 +2294,7 @@ msgstr "Yeni vericiləri axtar"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s paketi qurulmalıdır. Qurmaq istəyirsiniz?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Xorg paketi qurula bilmir: %s"
@@ -2304,17 +2304,17 @@ msgstr "Xorg paketi qurula bilmir: %s"
msgid "Mandatory package %s is missing"
msgstr "Vacib olan %s paketi əksikdir"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Aşağıdakı paketlər qurulmalıdır:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Paketlər qurulur..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Paketlər silinir..."
@@ -4751,7 +4751,7 @@ msgstr "Zambiya"
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoş Gəldiniz"
@@ -4777,7 +4777,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4790,8 +4790,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Giriş\n"
"\n"
@@ -4803,7 +4802,8 @@ msgstr ""
"to the operating \n"
"system and the different components of the Mageia distribution."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4845,7 +4845,8 @@ msgstr ""
"copies of the \n"
"Software Products."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4925,7 +4926,8 @@ msgstr ""
"cryptography components \n"
"included in the Software Products."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4964,7 +4966,8 @@ msgstr ""
"documentation for \n"
"further details."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4988,7 +4991,8 @@ msgstr ""
"parts, by all means and for all purposes.\n"
"\"Mageia\" and associated logos are trademarks of Mageia"
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5020,8 +5024,7 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact Mageia"
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5040,7 +5043,7 @@ msgstr ""
"gözdən keçirin."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index f3f01141b..22156c7b2 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -14,21 +14,21 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Калі ласка, пачакайце"
-#: any.pm:262
+#: any.pm:261
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Усталяванне загрузчыку"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнікла наступная памылка:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -55,7 +55,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -65,268 +65,268 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Усталяванне загрузчыку"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Першы сектар прылады (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Першы сектар прылады (MBR)"
-#: any.pm:373
+#: any.pm:372
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:375
+#: any.pm:374
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Захаванне на дыскету"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Прапусціць"
-#: any.pm:412
+#: any.pm:411
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Настройка IDE"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:432
+#: any.pm:431
#, fuzzy, c-format
msgid "Bootloader"
msgstr "Усталяванне загрузчыку"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, fuzzy, c-format
msgid "Bootloader to use"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Загрузачная прылада"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Сервер друку"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Сервер друку"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Бясьпека"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Пароль"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролі не супадаюць"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Паўтарыце пароль"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Ачышчаць /tmp пры кожнай загрузцы"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:471
+#: any.pm:470
#, fuzzy, c-format
msgid "Enable CD Boot?"
msgstr "Дазволіць 6dB павышэнне + цяжкае лімітаванне"
-#: any.pm:472
+#: any.pm:471
#, fuzzy, c-format
msgid "Enable OF Boot?"
msgstr "Дазволіць 6dB павышэнне + цяжкае лімітаванне"
-#: any.pm:473
+#: any.pm:472
#, fuzzy, c-format
msgid "Default OS?"
msgstr "Па дамаўленню"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Вобраз"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Далучыць"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Відэа-рэжым"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, fuzzy, c-format
msgid "Network profile"
msgstr "Сеткавы інтэрфейс"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Метка"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Па дамаўленню"
-#: any.pm:576
+#: any.pm:575
#, fuzzy, c-format
msgid "NoVideo"
msgstr "Відэа"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:588
+#: any.pm:587
#, fuzzy, c-format
msgid "You must specify a root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Які тып пункта жадаеце дадаць?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Іншая АС (SunOS,...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Іншая АС (MacOS,...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Іншая АС (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Настройка IDE"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -335,47 +335,47 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змяніць існуючыя."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:871
+#: any.pm:870
#, fuzzy, c-format
msgid "access to administrative files"
msgstr "Выкарыстоўваць настройкі сыстэмнага адміністратара"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:873
+#: any.pm:872
#, fuzzy, c-format
msgid "access to compilation tools"
msgstr "Канфігурацыя сістэмных сэрвісаў"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(ужо дададзена %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Калі ласка, увядзіце імя карыстальніку"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -384,149 +384,149 @@ msgstr ""
"Імя карыстальніку павінна змяшчаць літары толькі на ніжнім рэгістры, \n"
"лічбы, ‛-’ і ‛_’"
-#: any.pm:887
+#: any.pm:886
#, fuzzy, c-format
msgid "The user name is too long"
msgstr "Імя занадта доўгае"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Гэта імя карыстальніку ўжо дададзена"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID карыстальніка"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID групы"
-#: any.pm:895
+#: any.pm:894
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "UIN павінен утрымліваць толькі лічбы.\n"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "Карыстальнік"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Пароль для root"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Увядзіце імя карыстальніку\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Піктаграма"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Уласнае імя"
-#: any.pm:924
+#: any.pm:923
#, fuzzy, c-format
msgid "Login name"
msgstr "Гульня ў косьці"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Абалонка:"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Аўтаматычны ўваход у сістэму"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Зачыніць гэтую тэчку"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Абярыце асноўнага карыстальніка:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Абярыце мэнэджар вокнаў:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Калі ласка, пачакайце"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Зачыніць"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Ліцэнзійная дамова"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Выхад"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Ці ёсць у вас іншы?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Прыняць"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Адказаць"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, fuzzy, c-format
msgid "Please choose a language to use"
msgstr "калі ласка, пазначце тып вашай мышы"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -534,82 +534,82 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Вы можаце абраць іншыя мовы, якія будуць даступны пасля ўсталявання"
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Выбар мовы"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, fuzzy, c-format
msgid "All languages"
msgstr "Выбар мовы"
-#: any.pm:1192
+#: any.pm:1191
#, fuzzy, c-format
msgid "Language choice"
msgstr "Выбар мовы"
-#: any.pm:1246
+#: any.pm:1245
#, fuzzy, c-format
msgid "Country / Region"
msgstr "Краіна - рэгіён і мова"
-#: any.pm:1247
+#: any.pm:1246
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "калі ласка, пазначце тып вашай мышы"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1250
+#: any.pm:1249
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Парты вываду:"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Адмысловае"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Нічога"
-#: any.pm:1340
+#: any.pm:1339
#, fuzzy, c-format
msgid "No sharing"
msgstr "Нічога"
-#: any.pm:1340
+#: any.pm:1339
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Дадаць карыстальніка"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Па выбару"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -619,86 +619,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, fuzzy, c-format
msgid "Timezone"
msgstr "Тэма"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Які ваш часавы пояс?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-#: any.pm:1576
+#: any.pm:1575
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS сэервер:"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1022,7 +1022,7 @@ msgid "Domain Admin Password"
msgstr "Яшчэ раз пароль:"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1032,56 +1032,56 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "Не хапае дыскавай прасторы ў /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, fuzzy, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Усталяванне загрузчыку"
@@ -1194,7 +1194,7 @@ msgstr "Зроблена"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1218,7 +1218,7 @@ msgstr ""
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Увага!"
@@ -2227,7 +2227,7 @@ msgstr ""
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Зьмяненьні не былі захаваныя. Ці жадаеце працягнуць?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr ""
@@ -2237,17 +2237,17 @@ msgstr ""
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "Наступныя пакеты будуць даданы да сістэмы"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, fuzzy, c-format
msgid "Installing packages..."
msgstr "Усталяванне пакету %s"
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Прагляд даступных пакетаў"
@@ -4564,7 +4564,7 @@ msgstr "Замбія"
msgid "Zimbabwe"
msgstr "Зімбабве"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
@@ -4590,7 +4590,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4603,12 +4603,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4631,7 +4630,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4676,7 +4676,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4696,7 +4697,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4710,7 +4712,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4728,7 +4731,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4741,7 +4744,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 6d1bf8e6a..d777b4bc4 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-bg\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2009-03-21 13:58+0200\n"
"Last-Translator: Kolio Kolev <kolio_kolev@biotronica.net>\n"
"Language-Team: Bulgarian <Mageia User Group - Bulgaria <mandriva-"
@@ -23,21 +23,21 @@ msgstr ""
"X-Generator: Lokalize 0.3\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Моля, изчакайте"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Инсталира се програма за начално зареждане"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -48,14 +48,14 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Инсталацията програмата за начално зареждане се провали. Появи се следната "
"грешка:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -66,7 +66,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -81,268 +81,268 @@ msgstr ""
"\n"
"Кое дисково устройство ще ползвате за начално зареждане?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Инсталация на програма за начално зареждане"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Къде искате да инсталирате програмата за начално зареждане?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Първи сектор (MBR) на дисково устройство %s "
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Първи сектор на дисковото устройство (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Първия сектор на дисковия дял (PBS) с Mageia"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Запазване на дискета"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Пропусни"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Настройка на начина на стартиране"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Опции на програмата за начално зареждане"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Програма за начално зареждане"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Използвана програма за начално зареждане"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Устройство за зареждене"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Основни настойки"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Време за изчакване преди зареждане"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Включи ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Включи SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Включи APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Включи Local APIC"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Сигурност"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Парола"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролите не съвпадат"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Моля, опитайте отново"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Вие не можете да използвате парола включваща %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Парола (повтори)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Почистване на директория /tmp при всяко зареждане"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Начално съобщение"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Изчакване на Open Firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Време за изчакване"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Зареждане от оптично устройство (CD/DVD)?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Стартиране от OF ?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Операционна система по подразбиране?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Образ"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Коренов дял"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Параметри"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen параметри"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Видео режим"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Мрежов профил"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Име"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "По подразбиране"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "Без графичен режим"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Полето 'Име' не трябва да е празно"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Трябва да зададете обаз на ядрото"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Трябва да зададете коренов дял"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Това 'Име' вече се използва"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Какъв тип информация искате да прибавите"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Друга ОС (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Друга ОС (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Друга ОС (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Конфигуриране на програмата за начално зареждане"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -351,47 +351,47 @@ msgstr ""
"Това са записите в менюто за начално зареждане.\n"
"Можете да добавите още или да промените съществуващите."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "достъп до X програми"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "достъп до rpm инструменти"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "позволява \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "достъп до файлове за администриране"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "достъп до мрежови инструменти"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "достъп до инструменти за разработка"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(вече прибавих %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Моля, задайте потребителско име"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -399,149 +399,149 @@ msgid ""
msgstr ""
"Потребителското име може да включва само малки букви, номера, `-' и `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Това потребителско име е твърде дълго"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Това потребителско име е вече добавено"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Потребителски номер"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Номер на група"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s трябва да е число"
-#: any.pm:896
+#: any.pm:895
#, fuzzy, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s трябва да е над 500. "
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Управление на потребител"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Въведете парола за root"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Въведете потребител"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Икона"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Истинско име"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Потебителско име"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Обвивка"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Моля, изчакайте. Обновява се източник..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автоматично влизане"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Мога да настроя компютъра ви за автоматично влизане в системата като някой "
"потребител."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Използвай тази характеристика"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Изберете подразбиращ се потребител:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Изберете графична среда за стартиране:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Бележки към версията"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Затвори"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Лицензионен договор"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Изход"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Приемате ли този лиценз ?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Приеми"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Откажи"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Моля, изберете език"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -552,82 +552,82 @@ msgstr ""
"езиците, които искате да инсталирате. Те ще бъдат налични след\n"
"като завърши инсталацията и рестартирате системата."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Многоезикова поддръжка"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Съвместимост с преди използващи се (различни от UTF-8) кодировки"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Всички езици"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Избор на език"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Страна / Регион"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Моля, изберете вашата държава"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Пълен списък на достръпните страни"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Други държави"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Разширени настройки"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr " Метод за въвеждане:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Няма"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Без споделяне"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Позволи на всички потребители"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Позволи на отделни потребители"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -644,7 +644,7 @@ msgstr ""
"\"Позволи на отделни потребители\" разрешава споделянето само на "
"потребителите, които са членове на групата \"fileshare\".\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -654,7 +654,7 @@ msgstr ""
"ограничено \n"
" приложима за Mac OS X и Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -664,7 +664,7 @@ msgstr ""
"повечето\n"
" съвременни Linux системи."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -672,12 +672,12 @@ msgstr ""
"Вие може да споделяте файлове използвайки NFS или SMB протоколи. \n"
"Моля, изберете кой от тях ще използвате."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Стартира userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -686,7 +686,7 @@ msgstr ""
"За споделянето на потребителски директории използва група \"fileshare\".\n"
"Може да използвате userdrake, за да добавите потребител към тази група."
-#: any.pm:1504
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -695,49 +695,49 @@ msgstr ""
"За да се активират направените промени е необходимо да излезете от текущата "
"сесия и отново да влезете"
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"За да се активират направените промени е необходимо да излезете от текущата "
"сесия и отново да влезете"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Часова зона"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Коя е вашата времевата зона?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Дата, Часовник и Настройки на часова зона"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Кое е най-доброто време?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (хадруерният часовник е настроен по GMT)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (хадруерният часовник е настроен по локалното време)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP сървър"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматична синхронизация на времето (използва NTP)"
@@ -1064,7 +1064,7 @@ msgstr "Парола за администратор на домейн"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1079,42 +1079,42 @@ msgstr ""
"изчакайте да се зареди избраната по подразбиране.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO с текстово меню"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB в графично меню"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB с текстово меню"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "няма достатъчно място в /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Не можете да инсталирате програмата за начално зареждане на дяла %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1123,7 +1123,7 @@ msgstr ""
"Конфигурацията на програмата за начално зареждане трябва да се актуализира, "
"защото дисковите дялове бяха преномерирани"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1132,7 +1132,7 @@ msgstr ""
"Програмата за начално зареждане не може да бъде коректно инсталирана. Трябва "
"да стартирате режим rescue и да изберете \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Преинсталиране на програмата за начално зареждане"
@@ -1250,7 +1250,7 @@ msgstr "Готово"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1274,7 +1274,7 @@ msgstr "URL трябва да започва с http:// или https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Предупреждение"
@@ -2332,7 +2332,7 @@ msgstr ""
"Пакет %s трябва да бъде инсталиран\n"
"Искате да го инсталирате?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Пакетът %s не може да бъде инсталиран!"
@@ -2342,17 +2342,17 @@ msgstr "Пакетът %s не може да бъде инсталиран!"
msgid "Mandatory package %s is missing"
msgstr "Задължителният пакет %s липсва"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Следните пакети ще трябва да се инсталират:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Инсталиране на пакети ..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Премахване на пакети ..."
@@ -4735,7 +4735,7 @@ msgstr "Замбия"
msgid "Zimbabwe"
msgstr "Зимбабве"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Добре дошли в %s"
@@ -4761,7 +4761,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4774,8 +4774,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Въведение\n"
"\n"
@@ -4787,7 +4786,8 @@ msgstr ""
"система и различните\n"
"компоненти на Mageia дистрибуцията."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4828,7 +4828,8 @@ msgstr ""
"унижтожите всички\n"
"копия на Софтуерния лиценз."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4906,7 +4907,8 @@ msgstr ""
"криптографски компоненти включени\n"
"в Софтуерния Продукт."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4945,7 +4947,8 @@ msgstr ""
"за\n"
"повече информация."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4969,7 +4972,8 @@ msgstr ""
"части, по всякакъв начин и с всякакви цели.\n"
"\"Mageia\" и свързаните логота са запазена марка на Mageia"
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5005,8 +5009,7 @@ msgstr ""
"неговия оригинал на\n"
"английски."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5019,7 +5022,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index ec9b01687..7d5698df2 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX HEAD\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2005-03-19 23:18+0600\n"
"Last-Translator: Samia <mailsamia2001@yahoo.com>\n"
"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
@@ -17,21 +17,21 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "অনুগ্রহ করে অপেক্ষা করুন"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "বুট লোডার ইনস্টল করা হচ্ছে"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgstr ""
"উইন্ডোজ সমস্যা।\n"
"নতুন একটি ভলিউম আই-ডি দেয়া হবে?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Bootloader ইনষ্টলেশন ব্যর্থ হয়েছে। এ সমস্ত ত্রুটি ঘটেছে:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -67,7 +67,7 @@ msgstr ""
" তারপর টাইপ করুন: shut-down\n"
"পরবর্তীতে বুট হওয়ার সময় বুটলোডার প্রম্প্‌ট দেখতে পাওয়া উচিত।"
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -83,268 +83,268 @@ msgstr ""
"\n"
"আপনি কোন ড্রাইভ থেকে বুট করছেন?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "বুট লোডার ইনস্টল করা হচ্ছে"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "আপনি bootloader টি কোথায় ইনস্টল করতে চান?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "ড্রাইভের প্রথম সেক্টর (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "ড্রাইভের প্রথম সেক্টর (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "রুট পার্টিশনের প্রথম সেক্টর"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "ফ্লপি তে"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "উপেক্ষা"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "বুটের ধরণ কনফিগারেশন"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "বুটলোডারের আসল অপশনসমুহ"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "বুটলোডার"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "ব্যবহারের জন্য বুটলোডার"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "বুট ডিভাইস"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "স্বাভাবিক ইমেজ লোড করার আগে দেরী করো"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "ACPI এনেবল করো"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI এনেবল করো"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI এনেবল করো"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI এনেবল করো"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "সিকিউরিটি"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "পাসওয়ার্ড"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "পাসওয়ার্ডটি মিলছে না"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "অনুগ্রহ করে আবার চেষ্ট করুন"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "পাসওয়ার্ড (পুনরায়)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "প্রতি বুটে /tmp পরিষ্কার করো"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Init বার্তা"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "বিলম্বিত ওপেন ফার্মওয়্যার"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "কার্নাল বুটের সময় অতিক্রান্ত হয়েছে"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "সিডি বুট সক্রিয় করা হবে?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "OF বুট সক্রিয় করা হবে?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "স্বাভাবিক অবস্থায় ব্যবহৃত OS?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "ইমেজ"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "যুক্ত"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "ভিডিওর ধরণ"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "নেটওয়ার্ক প্রোফাইল"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "শিরোনাম"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "স্বাভাবিক"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "কোন ভিডিও নেই"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "খালি শিরোনাম গ্রহণযোগ্য নয়"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "আপনাকে অবশ্যই একটি কার্নালের ইমেজ নির্ধারণ করে দিতে হবে"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "আপনাকে অবশ্যই একটি রুট পার্টিশন নির্ধারণ করে দিতে হবে"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "এই শিরোনামটি আগেই ব্যবহার হয়েছে"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "আপনি কি ধরণের এন্ট্রি যোগ করতে চান?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "লিনাক্স"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "অন্যান্য OS (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "অন্যান্য OS (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "অন্যান্য OS (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "বুটের ধরণ কনফিগারেশন"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -353,197 +353,197 @@ msgstr ""
"এপর্যন্ত আপনার বুটমেনুর এন্ট্রিগুলি এখানে।\n"
"আপনি অন্যান্য এন্ট্রি তৈরী করতে পারেন অথবা আগের এন্ট্রিগুলি পরিবর্তন করতে পারেন।"
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "X প্রোগ্রামসমূহে প্রবেশাধিকার"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "RPM টুলে প্রবেশাধিকার"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "\"su\" গ্রহন করো"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "এডমিনিষ্ট্রেশন সংক্রান্ত ফাইলে প্রবেশাধিকার"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "নেটওয়ার্ক টুলে প্রবেশাধিকার"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "compilation টুলে প্রবেশাধিকার"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s আগেই যোগ করা হয়েছে)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "অনুগ্রহ করে একটি উইজার নেম দিন"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "ইউজারনেমে অবশ্যই ছোটহাতের অক্ষর, নম্বর \"-\" এবং \"_\" থাকতে হবে"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "ইউজারনেমটি অনেক বড়"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "এই ইউজারনেমটি এর আগেই যোগ করা হয়েছে"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ব্যবহারকারীর ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "দলের ID"
-#: any.pm:895
+#: any.pm:894
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "অপশন %s-কে অবশ্যই একটি সংখ্যা হতে হবে!"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "ব্যবহারকারীনাম"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "আ্যাডমিনিস্ট্রেটর (root) পাসওয়ার্ড সেট করুন"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"একটি ইউজার প্রবেশ করান\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "আইকন"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "আসল নাম"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "লগ-ইন নাম"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "শেল"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "মাধ্যম যোগ করা হচ্ছে, অনুগ্রহ করে অপেক্ষা করুন..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "সয়ংক্রিয় লগ-ইন"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"আমি আপনার কম্পিউটারকে সয়ংক্রিয়ভাবে একটি ইউজারকে লগইন করার জন্য সেট করতে পারি।"
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "এই সুবিধাটি কি আপনি ব্যবহার করতে চান?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "স্বাভাবিক ব্যবহারকারীকে পছন্দ করুন:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "রান করার জন্য উইন্ডো ম্যানেজারকে পছন্দ করুন:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "সংস্করণ মন্তব্য"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "বন্ধ"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "লাইসেন্স এগ্রিমেন্ট"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "বাহির"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "আপনার কি আরও একটি আছে?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "গ্রহণ"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "অস্বীকার"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "ব্যবহার করার জন্য একটি ভাষা পছন্দ করুন"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -554,82 +554,82 @@ msgstr ""
"আপনি যেই ভাষাটি ইনস্টল করতে চান তা পছন্দ করুন।\n"
"ইনস্টল শেষে রি-স্টার্ট করার পরে সেই ভাষাগুলি উপলব্ধ হবে।"
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "পছন্দনীয় ভাষা"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "দেশ / স্থান"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "অনুগ্রহ করে তোমার দেশ পছন্দ করো।"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "উপলব্ধ সমস্থ দেশের নাম এখানে রয়েছে"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "অন্যান্য দেশসমুহ"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "উন্নত"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "ইনপুট মাধ্যম:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "একটিও না"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "শেয়ারিং নেই"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "সব ব্যবহারকারীদের গ্রহণ করো"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "ব্যবস্থা"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -639,7 +639,7 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr "আপনি কি ব্যবহারকারীদের কিছু ডিরেক্টরি শেয়ার করতে দিতে চান?\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -647,7 +647,7 @@ msgid ""
msgstr ""
"NFS: ঐতিহ্যগত ইউনিক্স ফাইল শেয়ারিং সিস্টেম, যা ম্যাক এবং উইন্ডোজে স্বল্প সমর্থিত।"
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -656,7 +656,7 @@ msgstr ""
"SMB: উইন্ডোজ, ম্যাক ও-এস এক্স এবং অনেক আধুনিক লিনাক্স সিস্টেম কর্তৃক ব্যবহৃত ফাইল "
"শেয়ারিং সিস্টেম।"
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -664,12 +664,12 @@ msgstr ""
"আপনি NFS বা SMB ব্যবহার করে ফাইল পাঠাতে পারেন। যেটি আপনি ব্যবহার করতে চান "
"অনুগ্রহ করে নির্বাচন করুন।"
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "userdrake শুরু করো"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -678,54 +678,54 @@ msgstr ""
"প্রত্যেক ব্যবহারকারী গ্রুপের \"ফাইল ভাগাভাগি\" ভাগাভাগি করতে পারেন। \n"
"এই গ্রুপে একজণ ব্যবহারকারী যোগ করতে আপনি userdrake ব্যবহার করতে পারেন।"
-#: any.pm:1504
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "টাইমজোন"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "আপনার টাইমজোন কি?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP সার্ভার"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "সয়ংক্রিয়ভাবে সময় মেলাও (NTP ব্যবহার করে)"
@@ -1056,7 +1056,7 @@ msgid "Domain Admin Password"
msgstr "ডোমেইন অ্যাডমিনের পাসওয়ার্ড"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1071,43 +1071,43 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "টেক্সট মেনুর সাথে LILO"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "/boot -এ বেশী জায়গা নেই"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "আপনি %s পার্টিশনে বুটলোডার ইনস্টল করতে পারবেননা\n"
# renumber = রি-নাম্বার লিখলাম। আসলটা আমি জানিনা
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1115,7 +1115,7 @@ msgid ""
msgstr ""
"পার্টিশন রি-নাম্বার করার কারনে আপনার বুটলোডারের কনফিগারেশন অবশ্যই আপডেট করতে হবে"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1124,7 +1124,7 @@ msgstr ""
"বুটলোডার সঠিকভাবে ইনস্টল হতে পারবেনা। আপনাকে rescue বুট করতে হবে এবং \"%s\" "
"পছন্দ করতে হবে"
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "বুট লোডার রি-ইনস্টল করো"
@@ -1243,7 +1243,7 @@ msgstr "হয়েছে"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1267,7 +1267,7 @@ msgstr "URL অবশ্যই http:// অথবা https:// দিয়ে শু
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "নোটিশ"
@@ -2300,7 +2300,7 @@ msgstr "নতুন সার্ভারের খোজ করো"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s প্যাকেজগুলি ইনস্টল করা প্রয়োজন। আপনি কি ইনস্টল করতে চান?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "%s প্যাকেজটি ইনস্টল করা যায় নি!"
@@ -2310,17 +2310,17 @@ msgstr "%s প্যাকেজটি ইনস্টল করা যায়
msgid "Mandatory package %s is missing"
msgstr "%s আবশ্যিক প্যাকেজ নেই"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "নিম্নোক্ত প্যাকেজসমূহ ইনস্টল করা প্রয়োজন:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "প্যাকেজসমূহ ইনস্টল করা হচ্ছে..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "প্যাকেজসমূহ অপসরণ করা হচ্ছে..."
@@ -4769,7 +4769,7 @@ msgstr "জাম্বিয়া"
msgid "Zimbabwe"
msgstr "জিম্বাবুয়ে"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "%s -এ আপনাকে স্বাগতম"
@@ -4795,7 +4795,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4808,12 +4808,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4836,7 +4835,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4881,7 +4881,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4901,7 +4902,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4915,7 +4917,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4933,7 +4936,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4951,7 +4954,7 @@ msgstr ""
"একটি আপনার জন্যও প্রযোজ্য হতে পারে, আপনার স্থানীয় আইন পরীক্ষা করুন।"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 03296f835..f030001cd 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2012-04-30 10:42+0200\n"
"Last-Translator: Thierry Vignaud <thierry.vignaud.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -16,21 +16,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1;plural=0\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Gortozit mar plij"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "O staliañ ar c'harger loc'hañ"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -41,13 +41,13 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Staliadur ar c'harger loc'hañ zo sac'het. Degouezhet eo ar fazi a heul :"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -58,7 +58,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -68,268 +68,268 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Staliadur ar c'harger loc'hañ"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Rann gentañ (MBR) pladenn %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Rann gentañ ar bladenn (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Rann gentañ ar parzhadur kentañ"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "War bladennig"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Tremen e-biou"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Kefluniadur giz al loc'hañ"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Dibarzhoù pennañ ar c'harger loc'hañ"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Karger loc'hañ"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Karger loc'hañ da implijout"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Trobarzhell loc'hañ"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Dibarzhoù pennañ"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Bevaat ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Bevaat SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Bevaat APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Bevaat APIC lec'hel"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Diogelroez"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Tremenger"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "An tremegerioù ne glot ket"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Gellout a rit implij ur ger tremen gant %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Skarañ /tmp bep ma loc'her"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Amzer-hont ar galon"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr ""
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "RK dre ziouer ?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Skeudenn"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Gwrizienn"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Ouzhpennañ en diwezh"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Mod video"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Profil rouedad"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Skridennad"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Dre ziouer"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "N'eo ket video"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoù goullo"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Ret eo deoc'h kaout ur skeudenn kalon"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Ret eo deoc'h kaout ur parzhadur gwrizienn"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennañ ?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Reizhiadoù all (SunOS ...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Reizhiadoù all (MacOS ...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Reizhiadoù all (Windows ...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Kefluniadur al loc'hañ"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -338,47 +338,47 @@ msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "Aotreañ « su »"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -387,149 +387,149 @@ msgstr ""
"An anv arveriad a zle bezañ ennañ lizherennoù munut, sifroù, `-' ha `_' "
"hepken"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Re hir eo an anv arveriad-se"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID an arveriad"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID ar strollad"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "red eo da bezañ un niver %s"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Merañ an arveriaded"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Termeniñ tremenger ar merour (root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Skrivit anv un arveriad"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Arlun"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Anv gwirion"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Anv ereañ"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Gortozit mar plij, emaon oc'h ouzhpennañ ur media ..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Emereañ"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek gant un arveriad a "
"c'hellañ."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Implij an arc'hwel-mañ"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Dibabit an arveriad dre ziouer :"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dibabit ar merour prenestrer da seveniñ :"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Cheñchamentoù"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Serriñ"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Emglev an aotre"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Kuitaat"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Hag e plij an aotre-mañ deoc'h ?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Plijout a ra din"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Ne blij ket din"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Dibabit ar yezh da implijout, mar plij"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -540,82 +540,82 @@ msgstr ""
" yezhoù all hag a vo hegerz goude staliañ (ur wech e vo bet adloc'het\n"
" ar reizhiad)"
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Lesyezh"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodadur kozh (n'eo ket UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "An holl yezhoù"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Dibab ho yezh"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Bro / Rannvro"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Dibabit ho pro, mar plij"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Setu eo listenn leun ar broioù holl"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Broioù all"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Barek"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Hentenn enkas :"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Hini ebet"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "N'eo ket lodañ"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Aotreiñ pep arveriad"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personelañ"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -625,86 +625,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lañsañ userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Takad-eur"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Kefluniadur an deizid, an eurier hag an amzer"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Peseurt hini zo an amzer gwelloc'h ?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (war UTC eo lakaet ho eurier periantel)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (war GMT eo lakaet ho eurier periantel)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Servijer NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1027,7 +1027,7 @@ msgid "Domain Admin Password"
msgstr "Tremenger merour an domani"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1042,42 +1042,42 @@ msgstr ""
"gortozit \n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gant meuziad grafek"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB gant meuziad skrid"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "n'eus ket a-walc'h egor e /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne mennit ket staliañ ar c'harger loc'hañ war ur parzhadur %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1086,7 +1086,7 @@ msgstr ""
"Red eo da vremañat kefluniadur ho karger loc'hañ peogwir e oa cheñchet niver "
"ar parzhiadurioù"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1095,7 +1095,7 @@ msgstr ""
"N'hell ket bet staliet ar c'harger loc'hañ. Dao eo deoc'h loc'hañ gant ar "
"bladenn skoazell ha dibab « %s »"
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Staliañ ar c'harger loc'hañ c'hoazh"
@@ -1208,7 +1208,7 @@ msgstr "Graet"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1232,7 +1232,7 @@ msgstr "Ezhom en deus an URL da gregiñ gant http:// pe https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Ho evezh"
@@ -2251,7 +2251,7 @@ msgstr "Klask servijerioù nevez"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ar pakad %s zo war-nes bezañ staliet. Mennout a rit staliañ anezhañ ?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "N'eo ket evit staliañ ar pakad %s !"
@@ -2261,17 +2261,17 @@ msgstr "N'eo ket evit staliañ ar pakad %s !"
msgid "Mandatory package %s is missing"
msgstr "Mankout a ra ar pakad ret %s"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Ar pakadoù a-heul zo war-nes bezañ staliet :\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "O staliañ pakadoù ..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Lemel pakadoù ..."
@@ -4643,7 +4643,7 @@ msgstr "Zambi"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
@@ -4669,7 +4669,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "N'eus ket moaien da loc'hañ gant /boot war meur a levrenn fizikel"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4682,12 +4682,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4710,7 +4709,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4755,7 +4755,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4775,7 +4776,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4789,7 +4791,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4807,7 +4810,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4820,7 +4823,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index b49185389..818aa70f4 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bs\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2006-09-13 19:15+0200\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
@@ -19,21 +19,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Molim sačekajte"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalacija bootloadera u toku"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Da li da podesim novi ID volumena?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -74,7 +74,7 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -89,268 +89,268 @@ msgstr ""
"\n"
"Sa kojeg diska vršite boot?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Instalacija bootloadera u toku"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite smjestiti bootloader?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prvi sektor diska (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Prvi sektor root particije"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Na disketi"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Preskoči"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Boot uređaj"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Glavne opcije"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Pauza prije pokretanja izabrane opcije"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Uključi ACPI"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Uključi ACPI"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Uključi APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Uključi Local APIC"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurnost"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Šifra"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Šifre se ne poklapaju"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Šifra (ponovo)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Očisti /tmp prilikom svakog starta"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Init poruka"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Čekanje na Open Firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Vrijeme za boot kernela"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Omogući boot sa CDa?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Omogući boot sa OFa?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Podrazumjevani OS?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen append"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Mrežni profil"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Oznaka"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka je već u upotrebi"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu opcije želite dodati?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ostali OSi (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguracija stila boota"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -359,196 +359,196 @@ msgstr ""
"Ovo su trenutne opcije u vašem boot meniju.\n"
"Možete dodati nove ili promijeniti postojeće."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "pristup mrežnim alatima"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "pristup alatima za kompajliranje"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Molim navedite korisničko ime"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Korisničko ime je predugačko"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Ovo korisničko ime je već dodano"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Korisnički ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Grupni ID"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "Opcija %s mora biti broj"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s mora biti veće od 500. Svejedno prihvati?"
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "Korisničko ime"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Podesite administratorsku (root) šifru"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Unesite korisnika\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Pravo ime"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Korisničko ime"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Molim sačekajte, dodajem medije..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mogu podesiti vaš računar da automatski prijavi jednog korisnika."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Koristi ovu mogućnost"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Napomene izdanja"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Zatvori"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Licencni ugovor"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Izlaz"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Imate li neki drugi?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Prihvatam"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Ne prihvatam"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Molim izaberite jezik koji ćete koristiti"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -559,82 +559,82 @@ msgstr ""
"želite instalirati. Oni će biti dostupni kada se završi vaša\n"
"instalacija i restartujete vaš sistem."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Višejezična podrška"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kompatibilnost sa starim (ne-UTF8) kodiranjem"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Svi jezici"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Izbor jezika"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Država / Oblast"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Molim izaberite vašu državu"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ovdje je puna lista svih dostupnih država"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Ostale države"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Više opcija"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Metod unosa:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Ništa"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Vlastito"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -652,7 +652,7 @@ msgstr ""
"\"Izaberi korisnike\" vam omogućuje da podesite ovu opciju zasebno za svakog "
"korisnika.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -661,7 +661,7 @@ msgstr ""
"NFS: tradicionalni Unix sistem za dijeljenje datoteka, koji ima slabiju "
"podršku na Macintoshu i Windowsu."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -670,7 +670,7 @@ msgstr ""
"SMB: sistem za dijeljenje datoteka koji koristi Windows, Mac OS X i većina "
"modernih Linux sistema."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -678,12 +678,12 @@ msgstr ""
"Možete eksportovati koristeći NFS ili Sambu. Molim izaberite sistem koji "
"želite koristiti."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -692,7 +692,7 @@ msgstr ""
"Dijeljenje na nivou korisnika koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: any.pm:1504
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -701,49 +701,49 @@ msgstr ""
"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
"snagu"
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
"snagu"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Vremenska zona"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Postavke datuma, sata i vremenske zone"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Koje je vrijeme tačnije?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardverski sat podešen na UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardverski sat podešen na lokalno vrijeme)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP server"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
@@ -1076,7 +1076,7 @@ msgid "Domain Admin Password"
msgstr "Administratorska šifra domena"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1091,42 +1091,42 @@ msgstr ""
"sacekajte da se pokrene podrazumjevani OS.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB sa grafičkim menijem"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB sa tekstualnim menijem"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1135,7 +1135,7 @@ msgstr ""
"Konfiguracija vašeg bootloadera mora biti ažurirana pošto su particije "
"renumerisane"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1144,7 +1144,7 @@ msgstr ""
"Ne mogu ispravno instalirati bootloader. Morate pokrenuti \"rescue\" sistem "
"i izabrati \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstalacija bootloadera"
@@ -1261,7 +1261,7 @@ msgstr "Gotovo"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1285,7 +1285,7 @@ msgstr "URL mora počinjati sa http:// ili https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Upozorenje"
@@ -2335,7 +2335,7 @@ msgstr "Traži nove servere"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Ne mogu instalirati paket %s!"
@@ -2345,17 +2345,17 @@ msgstr "Ne mogu instalirati paket %s!"
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Sljedeći paketi trebaju biti instalirani:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Uklanjam pakete..."
@@ -4802,7 +4802,7 @@ msgstr "Zambija"
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
@@ -4828,7 +4828,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Bootloader ne može rukovati /boot particijom na više fizičkih volumena"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4841,8 +4841,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Budući da prevodilac ovog teksta nije u mogućnosti da osigura pravnu\n"
"provjeru prevedenog teksta, tekst licence je ostavljen u originalnom\n"
@@ -4859,7 +4858,8 @@ msgstr ""
"to the operating \n"
"system and the different components of the Mageia distribution."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4901,7 +4901,8 @@ msgstr ""
"copies of the \n"
"Software Products."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4981,7 +4982,8 @@ msgstr ""
"cryptography components \n"
"included in the Software Products."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5020,7 +5022,8 @@ msgstr ""
"documentation for \n"
"further details."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5044,7 +5047,8 @@ msgstr ""
"parts, by all means and for all purposes.\n"
"\"Mageia\" and associated logos are trademarks of Mageia"
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5076,8 +5080,7 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact Mageia"
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5097,7 +5100,7 @@ msgstr ""
"sigurni da li se patent odnosi na vas, provjerite vaše lokalne zakone."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 01f34f2ae..67c86515f 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2012-03-08 23:49+0000\n"
"Last-Translator: Paul Charbonneau <paulcharbo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Espereu si us plau"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instal·lació del carregador de l'arrencada en curs"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -40,14 +40,14 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Ha fallat la instal·lació del carregador de l'arrencada. S'ha produït "
"l'error següent:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -66,7 +66,7 @@ msgstr ""
"En l'arrencada següent heu de veure l'indicador del carregador de "
"l'arrencada."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -81,268 +81,268 @@ msgstr ""
"\n"
"En quina unitat arrenqueu?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr ""
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instal·lar el carregador de l'arrencada?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Primer sector de la partició de root"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "En el disquet"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Omet"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Opcions principals del carregador de l'arrencada"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Carregador d'arrencada"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Carregador de l'arrencada a utilitzar"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Habilita l'ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr ""
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr ""
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguretat"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contrasenya"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Buida /tmp en cada arrencada"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Missatge d'inicialització"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Demora per al firmware obert"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Temps màxim d'arrencada del nucli"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Voleu habilitar l'arrencada des de CD?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Voleu habilitar l'arrencada des d'OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "SO per defecte?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Imatge"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Arrel"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Afegeix"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Mode de vídeo"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Perfil de xarxa"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predeterminat"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Heu d'especificar una imatge del nucli"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Heu d'especificar una partició arrel"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Aquesta etiqueta ja està en ús"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Un altre SO (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -351,196 +351,196 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne més o canviar-ne les existents."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "accés a programes X"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "accés a les eines rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "permet \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "accés a fitxers administratius"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "accés a les eines de xarxa"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "accés a les eines de compilació"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Si us plau, introduïu un nom d'usuari"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "El nom d'usuari és massa llarg"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID d'usuari"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID de grup"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s ha de ser un número"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s hauria de ser superior a 500. Continuar tot i això?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Estableix la contrasenya de l'administrador (root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Nom real"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Nom d'accés"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Si us plau espereu, s'estan afegint fonts..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Entrada automàtica"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Puc configurar el vostre ordinador de manera que entri automàticament amb un "
"nom d'usuari."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Utilitza aquesta característica"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Tanca"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Acord de llicència"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Surt"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Accepta"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Rebutja"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Si us plau, trieu un idioma per utilitzar"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -548,82 +548,82 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "diferents llengües"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Tots els idiomes"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Tria d'idioma"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "País / Regió"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Si us plau, seleccioneu el vostre país"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquesta és la llista completa de països"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Altres països"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avançat"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Mètode d'entrada:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Cap"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "No es comparteix"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permet tots els usuaris"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalitzada"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -638,7 +638,7 @@ msgstr ""
"\n"
"\"Personalitzat\" permet configurar cada usuari per separat.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -647,7 +647,7 @@ msgstr ""
"NFS: el sistema de compartició de fitxers tradicional de Unix, amb menys "
"suport a Mac i Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -656,18 +656,18 @@ msgstr ""
"SMB: un sistema de compartició de fitxers usat per Windows, Mac OS X i "
"bastants sistemes Linux moderns."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Podeu exportar utilitzant NFS o SMB. Seleccioneu quin voleu utilitzar."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -676,54 +676,54 @@ msgstr ""
"La compartició per usuari utilitza el grup \"fileshare\".\n"
"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Heu de sortir i tornar a entrar per tal que els canvis tinguin efecte"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Fus horari"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "En quina zona horària us trobeu?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronització automàtica de la hora (usant NTP)"
@@ -1049,7 +1049,7 @@ msgid "Domain Admin Password"
msgstr "Contrasenya de l'administrador del domini"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1064,42 +1064,42 @@ msgstr ""
"per arrencar en el sistema operatiu predeterminat.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO amb menú de text"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB amb menú gràfic"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB amb menú de text"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "No podeu instal·lar el carregador de l'arrencada a una partició %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1108,7 +1108,7 @@ msgstr ""
"La configuració del vostre carregador d'arrencada s'ha d'actualitzar ja que "
"la partició ha estat renumerada"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1117,7 +1117,7 @@ msgstr ""
"El carregador d'arrencada no s'ha pogut instal·lar correctament. Heu "
"d'arrencar amb l'opció de rescat i escollir \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstal·la el carregador de l'arrencada"
@@ -1235,7 +1235,7 @@ msgstr "Fet"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1259,7 +1259,7 @@ msgstr "L'URL ha de començar per http:// o https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Advertència"
@@ -2293,7 +2293,7 @@ msgstr "Cerca nous servidors"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Cal instal·lar el paquet %s. Voleu instal·lar-lo?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "No es pot instal·lar el paquet %s!"
@@ -2303,17 +2303,17 @@ msgstr "No es pot instal·lar el paquet %s!"
msgid "Mandatory package %s is missing"
msgstr "El paquet %s necessari falta"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Cal instal·lar els paquets següents:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "S'estan instal·lant els paquets..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "S'estan eliminant els paquets..."
@@ -4741,7 +4741,7 @@ msgstr "Zàmbia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
@@ -4767,7 +4767,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4780,12 +4780,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4808,7 +4807,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4853,7 +4853,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4873,7 +4874,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4887,7 +4889,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4905,7 +4908,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4927,7 +4930,7 @@ msgstr ""
"consulteu les lleis locals."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 086accb5a..aaf96eea9 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2012-03-10 14:30+0000\n"
"Last-Translator: Oliver Burger <oliver.bgr@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Prosím počkejte"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Probíhá instalace zaváděcího programu"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -47,12 +47,12 @@ msgstr ""
"\n"
"Přiřadit nové ID svazku?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalace zaváděcího programu selhala. Stala se tato chyba:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -69,7 +69,7 @@ msgstr ""
" Potom zadejte: shut-down\n"
"Při dalším spuštění už uvidíte prompt."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -84,268 +84,268 @@ msgstr ""
"\n"
"Z jakého disku startujete systém?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Instalace zaváděcího programu"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zaváděcí program?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "První sektor (MBR) disku %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "První sektor disku (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "První sektor kořenového oddílu"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Na disketu"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Přeskočit"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Nastavení stylu zavádění"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Základní nastavení zaváděcího programu"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Zaváděcí program"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Zaváděcí program"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Startovací zařízení"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Hlavní volby"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Prodleva před zavedením výchozího obrazu"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Povolit ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Povolit SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Povolit APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Povolit lokální APIC"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Bezpečnost"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Heslo"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Hesla nejsou shodná"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Zkuste to znovu, prosím"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nemůžete použít heslo s %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Heslo (podruhé)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Vyčistit adresář /tmp při každém startu"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Úvodní zpráva"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Prodleva pro firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Prodleva při spuštění"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Povolit spuštění z CD?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Povolit zavaděč OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Výchozí OS?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Obraz(image)"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Kořenový(root)"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Připojit"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Připojit Xen"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Vyžaduje pro zavedení heslo"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Síťový profil"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Značka"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Výchozí"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "Bez Videa"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Prázdná značka není povolena"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Musíte zadat soubor s jádrem"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Musíte zadat kořenový oddíl"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Tato značka se již používá"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Jaký typ záznamu chcete přidat?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Jiný systém (SunOs...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Jiný systém (MacOs...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Jiný systém (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Nastavení zaváděcího programu"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -354,47 +354,47 @@ msgstr ""
"Zde jsou záznamy z vašeho zaváděcího menu.\n"
"Můžete přidat další nebo změnit stávající."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "přístup k programům v X prostředí"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "přístup k rpm nástrojům"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "přístup k administrativním souborům"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "přístup k síťovým nástrojům"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "přístup k nástrojům pro kompilaci"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(už byl přidán %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Prosím zadejte uživatelské jméno"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -403,148 +403,148 @@ msgstr ""
"Uživatelské jméno musí začínat malým písmenem a pokračovat pouze malými "
"písmeny, číslicemi nebo znaky „-” a „_”"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Toto uživatelské jméno je příliš dlouhé"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Toto uživatelské jméno už bylo přidáno"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID uživatele"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID skupiny"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s musí být číslo"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s by mělo být vyšší než 500. Přesto použít?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Správa uživatelů"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Povolit účet hosta"
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Heslo správce (uživatele root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Zadejte uživatele"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Skutečné jméno"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Přihlašovací jméno"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Prosím počkejte, přidávám zdroje..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatické přihlášení"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Můžu nastavit váš počítač tak, aby automaticky přihlásil vybraného uživatele."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Použít tuto vlastnost"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Zvolte standardního uživatele:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vyberte si, který správce oken má být spouštěn:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Poznámky k vydání"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Zavřít"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Souhlas s licencí"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Konec"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Přijímáte tuto licenci?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Přijmout"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Odmítnout"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Prosím zvolte si jazyk, který chcete používat"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -555,82 +555,82 @@ msgstr ""
"chcete nainstalovat podporu. Tyto budou dostupné po dokončení\n"
"instalace a restartu systému."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Více jazyků"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Stará (ne UTF-8) kódování pro kompatibilitu"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Všechny jazyky"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Výběr jazyka"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Země"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Vyberte si prosím svoji zem"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Zde je kompletní seznam dostupných zemí"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Jiné země"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Rozšíření"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Vstupní metoda:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Žádné"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Nesdílet"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Povolit všem uživatelům"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Vlastní"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -646,7 +646,7 @@ msgstr ""
"\n"
"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -655,7 +655,7 @@ msgstr ""
"NFS: tradiční systém pro sdílení souborů v prostředí Unix, s menší podporou "
"operačních systémů Mac a Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -664,7 +664,7 @@ msgstr ""
"SMB: systém pro sdílení souborů používaný ve Windows, MacOS X a mnohými "
"moderními Linuxovými systémy."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -672,12 +672,12 @@ msgstr ""
"Nyní lze provést export přes protokol NFS nebo SMB. Vyberte prosím, který "
"chcete použít."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Spustit UserDrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -686,7 +686,7 @@ msgstr ""
"Sdílení mezi uživateli používá skupinu \"fileshare\". \n"
"Uživatele lze do této skupiny přidat pomocí nástroje UserDrake."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -695,47 +695,47 @@ msgstr ""
"Aby se změny projevily, je nutné se odhlásit a opět přihlásit. Stisknutím OK "
"se ihned odhlásíte."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Aby se změna projevila, je nutné se odhlásit a opět přihlásit"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Časová zóna"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Jaké je vaše časové pásmo?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Nastavení data, hodin a časové zóny"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Jaké vedení času je nejvhodnější?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardwarové hodiny nastaveny na UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardwarové hodiny nastaveny na místní čas)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Server"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatická synchronizace času (pomocí NTP)"
@@ -1074,7 +1074,7 @@ msgid "Domain Admin Password"
msgstr "Heslo Správce domény"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1089,42 +1089,42 @@ msgstr ""
"vyckejte na automaticke zavedeni.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO s textovým menu"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB s grafickým menu"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB s textovým menu"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "není dost místa v adresáři /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Na oddíl %s nelze instalovat zavaděč\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1133,7 +1133,7 @@ msgstr ""
"Nastavení vašeho zavaděče musí být aktualizováno, protože se změnilo pořadí "
"oddílů na disku"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1142,7 +1142,7 @@ msgstr ""
"Zavaděč se nepodařilo řádně nainstalovat. Spusťte systém v záchranném režimu "
"a zvolte \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Znovu instalovat zaváděcí program"
@@ -1261,7 +1261,7 @@ msgstr "Hotovo"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1285,7 +1285,7 @@ msgstr "URL musí začínat znaky http:// nebo https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Varování"
@@ -2326,7 +2326,7 @@ msgstr "Hledat nové servery"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Balíček %s musí být nainstalován. Chcete ho nainstalovat?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Nelze nainstalovat balíček %s!"
@@ -2336,17 +2336,17 @@ msgstr "Nelze nainstalovat balíček %s!"
msgid "Mandatory package %s is missing"
msgstr "Chybí potřebný balíček %s"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Je potřeba nainstalovat tyto balíčky:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Instaluji balíčky..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Odstraňuji balíčky..."
@@ -4781,7 +4781,7 @@ msgstr "Zambie"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Vítá vás %s"
@@ -4807,7 +4807,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Zavaděč neumí pracovat s adresářem /boot na více fyzických svazcích"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4820,8 +4820,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Úvodem\n"
"\n"
@@ -4832,7 +4831,8 @@ msgstr ""
"veškeré aplikace šířené spolu s touto distribucí poskytnuté třetími subjekty "
"a držiteli autorských práv."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4869,7 +4869,8 @@ msgstr ""
"ze strany sdružení Mageia. V případě, že dojde k odstoupení od smlouvy, "
"musíte okamžitě přestat užívat Software a zničit všechny jeho kopie."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4924,7 +4925,8 @@ msgstr ""
"je 1,-- Kč. Toto omezení se vztahuje též na kryptografické knihovny obsažené "
"v Software."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4957,7 +4959,8 @@ msgstr ""
"GPL. Dokumentace sepsaná sdružením Mageia je vydávána pod specifickou "
"licencí. Prosím nahlédněte do dokumentace pro další detaily."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4978,7 +4981,8 @@ msgstr ""
"kdykoliv pozměnit či upravit Software či jeho součásti bez omezení. \n"
"\"Mageia\" a její loga jsou ochrannými známkami sdružení Mageia."
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5007,7 +5011,7 @@ msgstr ""
"\n"
"Máte-li k tomuto dokumentu jakékoliv dotazy, kontaktujte sdružení Mageia."
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5026,7 +5030,7 @@ msgstr ""
"vaše místně příslušné právní normy."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 789a18b7d..47b4ef7c5 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia DrakX.cy\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2009-10-01 20:12-0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Cymraeg <post@meddal.com>\n"
@@ -17,21 +17,21 @@ msgstr ""
"X-Poedit-Country: UNITED KINGDOM\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Aros..."
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Wrthi'n gosod cychwynnwr"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -47,12 +47,12 @@ msgstr ""
"\n"
"Neilltuo enw Cyfrol newydd?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Methodd gosod cychwynnwr. Digwyddodd y gwall canlynol:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -69,7 +69,7 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y cychwynnwr."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -84,268 +84,268 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Gosod Cychwynnwr"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Lle rydych chi eisiau gosod y cychwynnwr?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Adran gyntaf (MBR) o ddisg %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r disg (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Adran gyntaf o'r rhaniad gwraidd"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Ar Ddisg Meddal"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Hepgor"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Prif ddewisiadau'r cychwynnwr"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Cychwynnwr"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Dewis cychwynnwr"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Prif ddewisiadau"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Galluogi ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Galluogi SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Galluogi APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Galluogi APIC Lleol"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Diogelwch"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Cyfrinair"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cyd-fynd"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nid oes modd defnyddio cyfrinair gyda %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Neges Init"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Agor Oedi Cadarnwedd"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Goramser Cychwyn y Cnewyllyn"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Galluogi Cychwyn o CD?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Galluogi Cychwyn OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "System Weithredu Rhagosodedig?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Delwedd"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Gwraidd"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Atodi"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Atodiad Xen"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Modd fideo"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Proffil rhwydwaith"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Rhagosodedig"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Nid yw label wag yn cael ei chaniatáu"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Systemau Gweithredu eraill (SunOS..)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Systemau Gweithredu Eraill (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Ffurfweddu'r Cychwynnwr"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -354,47 +354,47 @@ msgstr ""
"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -402,147 +402,147 @@ msgid ""
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Enw Defnyddiwr"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Enw Grŵp"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "Rhaid i %s fod yn rhif!"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "Dylai %s fod dros 500. Parhau beth bynnag?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Rheoli defnyddiwr"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Gosod cyfrinair gweinyddwr (root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Eicon"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Enw cywir"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Enw mewngofnodi"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Cragen"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Arhoswch, ychwanegu cyfrwng..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Awto mewngofnodi"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mewngofnodi'n awtomatig ar gyfer un defnyddiwr."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Defnyddiwch y nodwedd"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i redeg:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Nodiadau Ryddhau"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Cau"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Cytundeb trwyddedu"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Gadael"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "A ydych chi'n derbyn y drwydded hon?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Derbyn"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Gwrthod"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Dewiswch iaith i'w defnyddio"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -553,82 +553,82 @@ msgstr ""
"pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n"
"wedi ei gwblhau a phan fyddwch yn ail gychwyn eich system."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Amlieithog"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Hen Amgodiad (nid utf-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Pob iaith"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Dewis iaith"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Gwlad / Ardal"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Dewiswch eich gwlad"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Dyma restr lawn o'r gwledydd sydd ar gael"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Gwledydd eraill"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Uwch"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Dull mewnbwn:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Dim"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Peidio rhannu"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Arddull"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -643,7 +643,7 @@ msgstr ""
"\n"
"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -652,7 +652,7 @@ msgstr ""
"NFS: system rhannu ffeiliau traddodiadol Unix, sydd â llai o gefnogaeth ar "
"Mac a Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -661,19 +661,19 @@ msgstr ""
"SMB: system rhannu ffeiliau sy'n cael ei ddefnyddio yn Windows, Mac OSX a "
"nifer o systemau Linux diweddar."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Gallwch allforio gan ddefnyddio NFS neu SMB. Pa un hoffech chi ei ddefnyddio?"
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -682,7 +682,7 @@ msgstr ""
"Mae'r rhannu yn ôl defnyddiwr yn defnyddio grŵp \"rhannu ffeiliau\" .\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grŵp. "
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -691,47 +691,47 @@ msgstr ""
"Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd. Cliciwch Iawn i "
"allgofnodi nawr."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd."
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Cylchfa amser"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Gosodiadau Dyddiad Cloc a Chylchedd Amser"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Beth yw'r amser gorau?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (cloc caledwedd wedi ei osod i UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (cloc caledwedd wedi ei osod i'r amser lleol)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
@@ -1066,7 +1066,7 @@ msgid "Domain Admin Password"
msgstr "Cyfrinair Gweinyddol y Parth"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1081,42 +1081,42 @@ msgstr ""
"aros am y cychwyn rhagosodedig\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gyda dewislen raffigol"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB gyda dewislen testun"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y cychwynnwr ar raniad %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1125,7 +1125,7 @@ msgstr ""
"Rhaid i ffurfweddiad eich cychwynnwr gael ei ddiweddaru am i'r rhaniadau "
"gael eu hail rifo."
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1134,7 +1134,7 @@ msgstr ""
"Methu gosod eich cychwynnwr yn iawn, Rhaid defnyddio achub cychwyn a dewis "
"\"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ail osod Cychwynnwr"
@@ -1251,7 +1251,7 @@ msgstr "Gorffen"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1275,7 +1275,7 @@ msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Rhybudd"
@@ -2326,7 +2326,7 @@ msgstr "Chwiliwch weinyddion newydd"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Methu gosod pecyn %s!"
@@ -2336,17 +2336,17 @@ msgstr "Methu gosod pecyn %s!"
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Mae'r pecynnau canlynol angen eu gosod:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Tynnu pecyn..."
@@ -4788,7 +4788,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
@@ -4814,7 +4814,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Nid yw'r cychwynnydd yn gallu trin /boot ar gyfrolau ffisegol niferus"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4827,8 +4827,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Cyflwyniad\n"
"\n"
@@ -4843,7 +4842,8 @@ msgstr ""
"ac unrhyw rhaglenni wedi eu dosbarthu gyda'r cynnyrch hwn darperir gan "
"drwyddedwyr Mageia ."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4885,7 +4885,8 @@ msgstr ""
"ddinistrio'n syth pob\n"
"copi o'r Cynnyrch Meddalwedd."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4968,7 +4969,8 @@ msgstr ""
"ddifrod o ganlyniad neu yn ei sgil, nid yw'r cyfyngiadau uchod yn berthnasol "
"i chi. "
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5004,7 +5006,8 @@ msgstr ""
"Darllenwch y dogfennau\n"
"am fwy o fanylion."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5026,10 +5029,11 @@ msgstr ""
"Mae Mageia, ei gyflenwyr a'i drwyddedwyr yn cadw eu hawl i newid neu "
"addasu'r Cynnyrch Meddalwedd,\n"
"yn rhannol neu yn gyfan, drwy unrhyw ddull ac ar gyfer unrhyw bwrpas.\n"
-"Mae \"Mageia\" a'r logos cysylltiedig yn nodau masnachol sy'n "
-"perthyn i Mageia"
-
+"Mae \"Mageia\" a'r logos cysylltiedig yn nodau masnachol sy'n perthyn i "
+"Mageia"
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5061,8 +5065,7 @@ msgstr ""
"perthnasol, - Ffrainc. \n"
"Am unrhyw gwestiwn ynghylch y ddogfen hon cysylltwch â Mageia"
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5080,7 +5083,7 @@ msgstr ""
"siŵr os yw'r patent yn berthnasol i chi, gwiriwch eich cyfreithiau lleol."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 814efc6a6..eee8cf298 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: da\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2010-06-06 12:39+0200\n"
"Last-Translator: Keld Simonsen <keld@keldix.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@@ -21,21 +21,21 @@ msgstr ""
"X-Generator: Lokalize 1.0\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Vent venligst"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation af systemopstarteren er i gang"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -52,12 +52,12 @@ msgstr ""
"\n"
"Tildel en ny Volumen-ID?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Installation af opstarter mislykkedes. Den følgende fejl opstod:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -74,7 +74,7 @@ msgstr ""
" Skriv så: shut-down\n"
"Ved næste opstart burde du se systemstarteren."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -89,268 +89,268 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Installation af systemopstarter"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstartsprogrammet?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Første sektor (MBR) på drev %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Første sektor på disken (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Første sektor af rodpartitionen"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "På diskette"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Spring over"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Systemopstarter"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Opstartsenhed"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Hovedvalg"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Ventetid før opstart af forvalgt styresystem"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Aktivér ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Aktivér SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Aktivér APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Aktivér lokal APIC"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sikkerhed"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Adgangskode"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Prøv igen"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Du kan ikke bruge en adgangskode med %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Rens /tmp ved hver systemopstart"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Init-besked"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Åben firmwareforsinkelse"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ventetid før kerneopstart"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Skal det være muligt at starte fra CD?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Skal det være muligt at starte fra OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Forvalgt styresystem?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Billede"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Rod"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Vedhæft"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen-tilføjning"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Kræver adgangskode for at starte op"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Videoindstilling"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Netværksprofil"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Mærkat"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "Ingen video"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Tom mærkat er ikke tilladt"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Denne mærkat er allerede brugt"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type ønsker du at tilføje"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Andet styresystem (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration af opstarter"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -359,47 +359,47 @@ msgstr ""
"Her er følgende typer indgange.\n"
"Du kan tilføje flere eller ændre de eksisterende."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "adgang til rpm-værktøjer"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "adgang til netværksværktøjer"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "adgang til oversættelsesværktøjer"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilføjet %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -408,148 +408,148 @@ msgstr ""
"Brugernavnet skal starte et lille bogstav, efterfulgt kun af små bogstaver, "
"tal, `-' og `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Dette brugernavn eksisterer allerede"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Bruger-id"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Gruppe-id"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s skal være et tal"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s burde være over 500. Acceptér alligevel?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Administration af brugere"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Aktivér kontoen guest"
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Sæt administrator (root) adgangskode"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Indtast en bruger"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Rigtige navn"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Logindnavn"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Skal"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Vent venligst, tilføjer medie..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Brug denne facilitet"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Vælg den forvalgte bruger:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vælg den vindueshåndtering du ønsker at benytte:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Udgivelsesnoter"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Luk"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Licensaftale"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Afslut"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Accepterer du denne licens?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Acceptér"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Nægt"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Vælg det sprog, der skal bruges"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,82 +558,82 @@ msgid ""
msgstr ""
"Du kan vælge andre sprog der vil være tilgængelige efter installationen"
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Flere sprog"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Gammel kompatibilitetskoding (ikke UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Alle sprog"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Sprogvalg"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Land / Region"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Vælg dit land"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Her er den komplette liste over tilgængelige lande"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Andre lande"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avanceret"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Indtastningsmetode:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Ingen"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ingen fildeling"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Tilpasset"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -647,7 +647,7 @@ msgstr ""
"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
"'Fildeling' i konqueror og nautilus.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -656,7 +656,7 @@ msgstr ""
"NFS: det traditionlle Unix fildelingssystem, med mindre funktionalitet på "
"Mac og Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -665,18 +665,18 @@ msgstr ""
"SMB: et fildelingssystem brugt på Windows, Mac OS X og mange moderne Linux-"
"systemer."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Du kan eksportere med NFS eller SMB. Hvilken vil du bruge"
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -685,7 +685,7 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -694,47 +694,47 @@ msgstr ""
"Du skal logge ud og ind igen for at ændringerne skal gælde. Tryk O.k. for at "
"logge ud nu."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Du skal logge ud og ind igen for at ændringerne skal gælde"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Tidszone"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dato-, klokke- og tidszoneopsætning"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Hvad er den bedste tid?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Maskin-ur sat til UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Maskin-ur sat til lokal tid)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-server"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
@@ -1079,7 +1079,7 @@ msgstr "Adgangskode for domæneadministrator"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1094,42 +1094,42 @@ msgstr ""
"vent paa at starte standard-systemet.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO med tekstmenu"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB med grafisk menu"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB med tekstmenu"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1138,7 +1138,7 @@ msgstr ""
"Din opstartsindlæserkonfiguration behøver at opdateres da rækkefølgen på "
"dine partitioner er blevet ændret"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1147,7 +1147,7 @@ msgstr ""
"Opstartsindlæseren kan ikke blive installeret korrekt. Du skal lave "
"nødopstart og vælge \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Geninstallér systemopstarter"
@@ -1265,7 +1265,7 @@ msgstr "Færdig"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1289,7 +1289,7 @@ msgstr "URL'en skal begynde med http:// eller https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Advarsel"
@@ -2335,7 +2335,7 @@ msgstr "Søg efter nye servere"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal være installeret. Ønsker du at installere den?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Kunne ikke installerer pakken %s!"
@@ -2345,17 +2345,17 @@ msgstr "Kunne ikke installerer pakken %s!"
msgid "Mandatory package %s is missing"
msgstr "Krævet pakke %s mangler"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "De følgende pakker behøver at blive installeret\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Installerer pakker..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Fjerner pakker..."
@@ -4790,7 +4790,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
@@ -4817,7 +4817,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Opstartsindlæseren kan ikke håndtere /boot på flere fysiske volumer"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4830,8 +4830,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Introduktion\n"
"\n"
@@ -4843,7 +4842,8 @@ msgstr ""
"distribueret med disse produkter leveret af mandrivas licenstagere eller "
"leverandører."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4877,10 +4877,10 @@ msgstr ""
"at installere, kopiere eller bruge disse programmelprodukter på en måde som "
"ikke er i overensstemmelse med betingelserne og reglerne i denne licens er "
"ugyldig og vil ophæve dine rettighedder under denne licens. Ved ophævelse af "
-"licensen skal du med det samme ødelægge alle kopier af "
-"programmelprodukterne."
-
+"licensen skal du med det samme ødelægge alle kopier af programmelprodukterne."
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4954,7 +4954,8 @@ msgstr ""
"jurisdiktioner ikke tillader udelukkelse eller begrænsning af ansvar for "
"følge- eller ulykkes-skader. "
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4988,7 +4989,8 @@ msgstr ""
"bliver reguleret efter en specifik licens. Referér venligst til "
"dokumentationen for yderligere detaljer."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5007,10 +5009,11 @@ msgstr ""
"respektive forfattere, og er beskyttet af intellektuelle rettigheds- og "
"ophavsretslove, gældende for programmel. Mageia forbeholder sine rettigheder "
"til at ændre eller tilpasse programmelprodukterne, helt eller delvist, med "
-"alle midler og til alle formål. \"Mageia\" samt de tilhørende "
-"logoer er varemærker for Mageia "
-
+"alle midler og til alle formål. \"Mageia\" samt de tilhørende logoer er "
+"varemærker for Mageia "
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5038,9 +5041,8 @@ msgstr ""
"rette domstol i Paris, Frankrig. Ved spørgsmål omkring dette dokument, "
"kontakt venligst Mageia"
-
# Mangler
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5058,7 +5060,7 @@ msgstr ""
"om et patent kan vedrøre dig, så tjek din lokale lovgivning."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index bf1d9b677..da7ebe0b6 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2012-03-09 08:41+0000\n"
"Last-Translator: Peter Grun <p.grun@bluewin.ch>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Bitte warten"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation des Bootloaders ..."
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,14 +46,14 @@ msgstr ""
"\n"
"Neue Datenträger-ID zuweisen?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Die Installation des Betriebssytemstarters schlug fehl. Folgender Fehler "
"trat auf:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -71,7 +71,7 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -87,268 +87,268 @@ msgstr ""
"\n"
"Von welchem Laufwerk booten Sie?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Installation des Bootloaders"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Bootloader installiert werden?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Erster Sektor der %s Platte (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Erster Sektor der Root-Partition"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Auf Diskette"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Überspringen"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Haupt-Optionen des Bootloaders"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Zu verwendender Bootloader"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Boot-Gerät"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Haupt-Optionen"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Wartezeit vor dem Starten des Standard-Betriebssystems"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "ACPI aktivieren"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "SMP aktivieren"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "APIC aktivieren"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Lokales APIC aktivieren"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sicherheit"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Passwort"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Die Passwörter stimmen nicht überein"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Sie können kein Passwort mit %s benutzen"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr " „/tmp“ bei jedem Systemstart säubern"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Init-Nachricht"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Open-Firmware-Verzögerung"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Kernel-Start-Wartezeit"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Booten von CD erlauben?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Open-Firmware-Start erlauben?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Standard-Betriebssystem?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Abbild"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Hinzufügen / Erweitern"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen hinzufügen"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Benötigt Passwort zum Booten"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Video-Modus"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Init-RamDisk"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Netzwerk Profil"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Bezeichnung"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Sie müssen ein Kernel-Image angeben"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Sie müssen die Root-Partition festlegen"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Anderes OS (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Anderes OS (MacOS ...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Anderes OS (Windows ...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration des Bootloaders"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -357,47 +357,47 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "Zugriff auf Kompilier-Werkzeuge"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Bitte geben Sie einen Benutzernamen an"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -406,149 +406,149 @@ msgstr ""
"Der Benutzername muss mit einem Kleinbuchstaben beginnen und sollte nur aus "
"Kleinbuchstaben, Ziffern, „-“ und „_“ bestehen."
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Dieser Benutzername ist zu lang"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Dieser Benutzername existiert bereits"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Benutzer-ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Gruppen-ID"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s muss eine Zahl sein"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s sollte größer als 500 sein. Trotzdem akzeptieren?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Benutzerverwaltung"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Den Gastzugang aktivieren"
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Administratorpasswort setzen"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Benutzer einrichten"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Symbol"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Vollständiger Name"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Benutzername"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Bitte warten, füge Medien hinzu ..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatisch anmelden"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ich kann Ihren Computer so einrichten, dass ein Benutzer automatisch "
"angemeldet wird."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Diese Möglichkeit nutzen"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Versionshinweise"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Schließen"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Lizenzvereinbarung"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Verlassen"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Akzeptieren Sie diese Lizenz?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Akzeptieren"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Ablehnen"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Bitte wählen Sie die zu verwendende Sprache"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -560,82 +560,82 @@ msgstr ""
"sein,\n"
"wenn Ihre Installation beendet ist und Sie das System neu starten."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Mehrere Sprachen"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Alte (nicht UTF-8) Kodierung"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Alle Sprachen"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Sprachauswahl"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Staat / Region"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Bitte wählen Sie Ihr Land"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier ist die komplette Liste aller Länder"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Andere Länder"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Fortgeschritten"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Eingabe-Methode:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Keine"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Keine Freigaben"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Benutzerdefiniert"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -650,7 +650,7 @@ msgstr ""
"\n"
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Benutzer vornehmen.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -659,7 +659,7 @@ msgstr ""
"NFS: das traditionelle Unix-Dateisystem für Freigaben im Netz, mit weniger "
"Unterstützung für Mac und Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -668,7 +668,7 @@ msgstr ""
"SMB: ein Dateisystem für Freigaben im Netz von Windows, Mac OS X und vielen "
"modernen Linux-Systemen verwendet"
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -676,12 +676,12 @@ msgstr ""
"Sie können die Dateien mittels SMB oder NFS anbieten. Welche Variante wollen "
"Sie verwenden?"
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake starten"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -690,7 +690,7 @@ msgstr ""
"Die Freigaben zwischen Benutzern regelt die Gruppe „fileshare“. \n"
"Sie können UserDrake verwenden, um Benutzer in diese Gruppe aufzunehmen."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -699,49 +699,49 @@ msgstr ""
"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
"werden. Klicken Sie auf OK, um sich nun abzumelden."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
"werden"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Zeitzone"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Datum, Zeit und Zeitzonen Einstellungen"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Welches ist die beste Zeit?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Hardware Uhr gestellt auf GMT)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Hardware Uhr gestellt auf Ortszeit)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-Server"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
@@ -1084,7 +1084,7 @@ msgid "Domain Admin Password"
msgstr "Passwort des Domänen-Administrators"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1099,42 +1099,42 @@ msgstr ""
"oder warten Sie auf das Starten des Standard-Betriebssystems.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO mit Textmenü"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB mit grafischem Menü"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB mit Textmenü"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Sie können den Bootloader nicht auf einer %s-Partition installieren.\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1143,7 +1143,7 @@ msgstr ""
"Ihre Bootloaderkonfiguration muss geändert werden, da sich Ihre "
"Partitionsnummerierung geändert hat"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1152,7 +1152,7 @@ msgstr ""
"Der Bootloader kann nicht richtig installiert werden. Sie müssen ins "
"Rettungssystem booten und „%s“ wählen"
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Bootloader neu installieren"
@@ -1270,7 +1270,7 @@ msgstr "Fertig"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1294,7 +1294,7 @@ msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Warnung"
@@ -2355,7 +2355,7 @@ msgstr "Suche nach neuen Servern"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Das Paket %s muss installiert sein. Soll es installiert werden?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Das Paket konnte %s nicht installiert werden!"
@@ -2365,17 +2365,17 @@ msgstr "Das Paket konnte %s nicht installiert werden!"
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Die folgenden Pakete müssen installiert werden:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Pakete werden installiert..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Pakete werden entfernt..."
@@ -4849,7 +4849,7 @@ msgstr "Sambia"
msgid "Zimbabwe"
msgstr "Simbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
@@ -4879,7 +4879,7 @@ msgstr ""
"Datenträgern umgehen"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4892,8 +4892,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Bei dieser Übersetzung handelt es sich um eine inoffizielle Übersetzung\n"
"der Mageia-Lizenz in die deutsche Sprache. Sie ist keine\n"
@@ -4915,7 +4914,8 @@ msgstr ""
"Anwendungen\n"
"von Mageia-Lizenznehmern und Zulieferern."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4953,7 +4953,8 @@ msgstr ""
"Sie die Ihnen mit dieser Lizenz eingeräumten Rechte. In diesem Fall\n"
"haben Sie unverzüglich alle Kopien der Software-Produkte zu vernichten."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -5030,7 +5031,8 @@ msgstr ""
"nur, auf die in den Software-Produkten enthaltenen Komponenten für\n"
"starke Kryptographie."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5063,7 +5065,8 @@ msgstr ""
"spezifischen Lizenz. Bitte lesen Sie die Dokumentation für weitere\n"
"Details."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5087,7 +5090,8 @@ msgstr ""
"„Mageia“ und entsprechende Logos sind eingetragene\n"
"Warenzeichen der Mageia."
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5117,8 +5121,7 @@ msgstr ""
"Zu jeglicher Frage zu diesem Dokument kontaktieren Sie bitte\n"
"Mageia"
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5138,7 +5141,7 @@ msgstr ""
"sind ob ein Patent sie betrifft prüfen Sie die Gesetze Ihres Landes."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index b24cb3709..d149c9717 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2012-08-11 12:39+0200\n"
"Last-Translator: Dimitrios Glentadakis <dglent@gmail.com>\n"
"Language-Team: Greek <i18n-el@ml.mageia.org>\n"
@@ -22,21 +22,21 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: Lokalize 1.4\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Παρακαλώ περιμένετε"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Γίνεται εγκατάσταση του προγράμματος εκκίνησης του υπολογιστή"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -55,14 +55,14 @@ msgstr ""
"\n"
"Να γίνει ανάθεση μιας νέα Ταυτότητας Τόμου;"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Η εγκατάσταση του προγράμματος εκκίνησης απέτυχε. Παρουσιάστηκε το ακόλουθο "
"σφάλμα:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -81,7 +81,7 @@ msgstr ""
"Στην επόμενη εκκίνηση θα πρέπει να δείτε την προτροπή του προγράμματος "
"εκκίνησης ."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -96,270 +96,270 @@ msgstr ""
"\n"
"Ποιος είναι ο δίσκος εκκίνησης;"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Εγκατάσταση του προγράμματος εκκίνησης"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Πού θέλετε να εγκαταστήσετε το πρόγραμμα εκκίνησης;"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Πρώτος τομέας (MBR) του δίσκου %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Πρώτος τομέας του δίσκου (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Πρώτος τομέας της κατάτμησης root"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Στη δισκέτα"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Παράλειψη"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Ρύθμιση του στυλ εκκίνησης"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Κύριες επιλογές του προγράμματος εκκίνησης"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Πρόγραμμα εκκίνησης"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Χρήση του προγράμματος εκκίνησης"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Συσκευή εκκίνησης"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Κύριες επιλογές"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr ""
"Καθυστέρηση πριν την εκκίνηση\n"
"της προεπιλεγμένης εικόνας"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Ενεργοποίηση του ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Ενεργοποίηση του SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Ενεργοποίηση του APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Ενεργοποίηση του τοπικού APIC"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Ασφάλεια"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Κωδικός πρόσβασης"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Παρακαλώ προσπαθήστε ξανά"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Δεν μπορείτε να χρησιμοποιήσετε έναν κωδικό πρόσβασης με %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Κωδικός πρόσβασης (ξανά)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Καθαρισμός του φακέλου /tmp σε κάθε εκκίνηση"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Μήνυμα εκκίνησης"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Καθυστέρηση του Open Firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Χρονικό όριο εκκίνησης του πυρήνα"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Ενεργοποίηση της εκκίνησης από CD;"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Ενεργοποίηση της εκκίνησης στο OF;"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Προκαθορισμένο λειτουργικό σύστημα ;"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Εικόνα"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Κατάτμηση root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Επιλογές περασμένες στον πυρήνα"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Επιλογές Xen περασμένες στον πυρήνα"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Απαιτείται ένας κωδικός πρόσβασης για την εκκίνηση"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Λειτουργία βίντεο"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Προφίλ δικτύου"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Ετικέτα"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Προκαθορισμένο"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Δεν επιτρέπεται μια κενή ετικέτα"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Πρέπει να ορίσετε μια εικόνα πυρήνα"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Πρέπει να ορίσετε μια κατάτμηση root"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Αυτή η ετικέτα χρησιμοποιείται ήδη"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Τι τύπου σύστημα θέλετε να προσθέσετε;"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Άλλο λειτουργικό (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Άλλο λειτουργικό (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Άλλο λειτουργικό (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Ρύθμιση του προγράμματος εκκίνησης"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -368,47 +368,47 @@ msgstr ""
"Ορίστε οι καταχωρήσεις στο μενού εκκίνησης.\n"
"Μπορείτε να προσθέσετε κι άλλες ή να αλλάξετε τις υπάρχουσες."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "πρόσβαση σε προγράμματα γραφικού περιβάλλοντος"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "πρόσβαση σε εργαλεία rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "επιτρέπεται η «su»"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "πρόσβαση σε αρχεία διαχείρισης"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "πρόσβαση σε εργαλεία δικτύου"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "πρόσβαση σε εργαλεία σύνθεσης"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s έχει ήδη προστεθεί)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Παρακαλώ εισάγετε ένα όνομα χρήστη"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -417,149 +417,149 @@ msgstr ""
"Το όνομα χρήστη πρέπει να αρχίζει με πεζό γράμμα και τα γράμματα που "
"ακολουθούν να είναι επίσης πεζά, αριθμοί, «-» και «_»"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Αυτό το όνομα χρήστη είναι πολύ μακρύ"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Αυτό το όνομα χρήστη έχει ήδη προστεθεί"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Αναγνωριστικό χρήστη"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Αναγνωριστικό ομάδας"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "Το %s πρέπει να είναι αριθμός"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
"Το %s πρέπει να είναι μεγαλύτερο ή ίσο του 500. Αποδοχή έτσι κι αλλιώς;"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Διαχείριση χρηστών"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Ενεργοποίηση του λογαριασμού επισκέπτη "
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ορίστε τον κωδικό πρόσβασης του διαχειριστή (root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Εισάγετε ένα χρήστη"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Εικονίδιο"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Πραγματικό όνομα"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Όνομα χρήστη"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Κέλυφος"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Παρακαλώ περιμένετε, προσθήκη μέσου..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Αυτόματη σύνδεση"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Μπορώ να ρυθμίσω το σύστημά σας έτσι ώστε να συνδέει αυτόματα ένα χρήστη."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Χρήση αυτού του χαρακτηριστικού"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Επιλέξτε τον προκαθορισμένο χρήστη:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Επιλέξτε το διαχειριστή παραθύρων που θέλετε να χρησιμοποιήσετε:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Σημειώσεις έκδοσης"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Κλείσιμο"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Άδεια χρήσης"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Έξοδος"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Αποδέχεστε αυτήν την άδεια ;"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Αποδοχή"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Άρνηση"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Παρακαλώ επιλέξτε τη γλώσσα"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -570,82 +570,82 @@ msgstr ""
"τις γλώσσες που επιθυμείτε να εγκαταστήσετε. Θα είναι διαθέσιμες\n"
"μετά την ολοκλήρωση της εγκατάστασης και την επανεκκίνηση του υπολογιστή."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Πολλαπλές γλώσσες"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Κωδικοποίηση παλιάς συμβατότητας (μη UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Όλες οι γλώσσες"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Επιλογή γλώσσας"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Χώρα / Περιοχή"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Παρακαλώ επιλέξτε τη χώρα σας"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων χωρών"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Άλλες χώρες"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Για προχωρημένους"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Μέθοδος εισαγωγής:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Κανένα"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Χωρίς κοινή χρήση"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Επιτρέπεται για όλους τους χρήστες"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Προσαρμοσμένο"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -660,7 +660,7 @@ msgstr ""
"\n"
"Το \"Προσαρμοσμένο\" επιτρέπει την ανά χρήστη ρύθμιση.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -669,7 +669,7 @@ msgstr ""
"NFS: το παραδοσιακό σύστημα κοινής χρήσης του Unix, με περιορισμένη "
"υποστήριξη για Mac και Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -678,7 +678,7 @@ msgstr ""
"SMB: ένα σύστημα κοινής χρήσης, που χρησιμοποιείται από τα Windows, από το "
"Mac OS X και από πολλά μοντέρνα συστήματα Linux."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -686,12 +686,12 @@ msgstr ""
"Μπορείτε να κάνετε εξαγωγή με τη χρήση NFS ή SMB. Παρακαλώ επιλέξτε ποιο θα "
"θέλατε να χρησιμοποιήσετε."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Εκκίνηση του userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -701,7 +701,7 @@ msgstr ""
"Μπορείτε να προσθέσετε ένα χρήστη σε αυτήν την ομάδα χρησιμοποιώντας το "
"userdrake."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -710,49 +710,49 @@ msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε. Πατήστε «Εντάξει» για να αποσυνδεθείτε τώρα."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε."
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Ωρολογιακή ζώνη"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Ποια είναι η ζώνη ώρας σας;"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Ρυθμίσεις της ημερομηνίας, της ώρας και της ωρολογιακής ζώνης"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Ποια είναι η σωστή ώρα;"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί σε UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί στην τοπική ώρα)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Εξυπηρετητής NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Αυτόματος συγχρονισμός της ώρας (μέσω NTP)"
@@ -1096,7 +1096,7 @@ msgid "Domain Admin Password"
msgstr "Κωδικός πρόσβασης του διαχειριστή τομέα"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1111,43 +1111,43 @@ msgstr ""
"περιμένετε την εκκίνηση από προεπιλογή.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO με μενού κειμένου"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB με γραφικό μενού "
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB με μενού κειμένου"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "δεν υπάρχει αρκετός χώρος στο /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
"Δεν μπορείτε να εγκαταστήσετε το πρόγραμμα εκκίνησης σε μια κατάτμηση %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1156,7 +1156,7 @@ msgstr ""
"Η ρύθμιση του προγράμματος εκκίνησης πρέπει να ενημερωθεί επειδή κάποιες "
"κατατμήσεις έχουν επαναριθμηθεί"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1166,7 +1166,7 @@ msgstr ""
"εκκινήσετε το CD-ROM της εγκατάστασης με την επιλογή «διάσωση» και να "
"επιλέξετε «%s»"
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Επανεγκατάσταση του προγράμματος εκκίνησης"
@@ -1286,7 +1286,7 @@ msgstr "Έγινε"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1310,7 +1310,7 @@ msgstr "Η διεύθυνση πρέπει να ξεκινά με http:// ή htt
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Προσοχή"
@@ -2368,7 +2368,7 @@ msgstr "Αναζήτηση για νέους εξυπηρετητές"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Το πακέτο %s πρέπει να εγκατασταθεί. Θέλετε να το εγκαταστήσετε;"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Αδυναμία εγκατάστασης του πακέτου %s!"
@@ -2378,17 +2378,17 @@ msgstr "Αδυναμία εγκατάστασης του πακέτου %s!"
msgid "Mandatory package %s is missing"
msgstr "Το απαραίτητο αρχείο %s δεν υπάρχει"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Τα παρακάτω πακέτα χρειάζεται να εγκατασταθούν:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Εγκατάσταση πακέτων..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Αφαίρεση πακέτων..."
@@ -3307,7 +3307,7 @@ msgstr ""
"Εδώ μπορείτε να επιλέξετε έναν εναλλακτικό οδηγό (OSS ή ALSA) για την κάρτα "
"ήχου σας (%s)"
-#. -PO: here the first %s is either "OSS" or "ALSA",
+#. -PO: here the first %s is either "OSS" or "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:369
@@ -4868,7 +4868,7 @@ msgstr "Ζάμπια"
msgid "Zimbabwe"
msgstr "Ζιμπάμπουε"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Καλώς ήλθατε στο %s"
@@ -4896,7 +4896,7 @@ msgstr ""
"φυσικούς τόμους"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4909,8 +4909,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Εισαγωγή\n"
"\n"
@@ -4924,7 +4923,8 @@ msgstr ""
"διανομής Mageia, καθώς και οποιοδήποτε εφαρμογών που διανέμονται από τους "
"προμηθευτές της Mageia."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4966,7 +4966,8 @@ msgstr ""
"αντίγραφα των \n"
"Προϊόντων Λογισμικού."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -5054,7 +5055,8 @@ msgstr ""
"επακόλουθες ή συμπτωματικές ζημίες, ο παραπάνω περιορισμός ενδέχεται να μην "
"ισχύει για εσάς."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5089,7 +5091,8 @@ msgstr ""
"διέπεται από ειδική άδεια. Παρακαλώ ανατρέξτε στην τεκμηρίωση για "
"περισσότερες λεπτομέρειες."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5111,10 +5114,10 @@ msgstr ""
"αναπροσαρμογή ή την προσαρμογή \n"
"των προϊόντων λογισμικού, στο σύνολό τους ή κατά τμήματα, με όλα τα μέσα και "
"για όλους τους σκοπούς.\n"
-"«Mageia» και τα σχετιζόμενα με αυτά λογότυπα είναι εμπορικά σήματα της "
-"Mageia"
-
+"«Mageia» και τα σχετιζόμενα με αυτά λογότυπα είναι εμπορικά σήματα της Mageia"
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5148,8 +5151,7 @@ msgstr ""
"Για οποιαδήποτε ερώτηση σχετικά με αυτό το έγγραφο, παρακαλούμε "
"επικοινωνήστε με τη Mageia."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5170,7 +5172,7 @@ msgstr ""
"της χώρας σας."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index afda924d8..91d339640 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2003-03-12 18:31-0400\n"
"Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n"
"Language-Team: esperanto <eo@li.org>\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.6\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Bonvole atendu"
-#: any.pm:262
+#: any.pm:261
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Startŝargila instalado"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -40,12 +40,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalado de startŝargilo malsukcesis. La sekvanta eraro okazis:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -56,7 +56,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,268 +71,268 @@ msgstr ""
"\n"
"En kiu drajvo vi startigas?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Startŝargila instalado"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startŝargilon?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Unu sektoro de drajvo (ĈefStartRikordo)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (ĈefStartRikordo)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Unua sektoro de radika subdisko"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Sur disketo"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Ellasu"
-#: any.pm:412
+#: any.pm:411
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Post-instala konfigurado"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Startŝargilo ĉefaj opcioj"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Startŝargilo"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Startŝargilo por uzi"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Starta aparato"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaŭ starti defaŭltan sistemon"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Ebligu ACPI"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Ebligu ACPI"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Ebligu ACPI"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Ebligu ACPI"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sekureco"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasvorto"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Vi ne povas uzi kriptan dosiersistemon por surmetingo %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Purigu /tmp dum ĉiuj startadoj"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Ĉu ebligi CD Boot?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Ĉu ebligi OF Boot?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Defaŭlta Mastruma Sistemo?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Kerna bildo"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Radiko"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Alfiksu"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Grafika reĝimo"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, fuzzy, c-format
msgid "Network profile"
msgstr "Nova profilo..."
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etikedo"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Defaŭlta"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Vi devas decidi pri kerno-bildo"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Vi devas difini radikan (root) subdiskon"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Ĉi tiu etikedo estas jam uzata"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linukso"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Post-instala konfigurado"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -341,196 +341,196 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "aliro al X-programoj"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "aliro al rpm-iloj"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "permesu \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "aliro al administraj dosieroj"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "aliro al retiloj"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "aliro al kompililoj"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Ĉi tiu salutnomo estas tro longa"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Ĉi tiu salutnomo estas jam aldonita"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Uzula ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Grupa ID"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "Uzulnomo"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Difinu pasvorton de root"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Enigu uzanton\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Piktogramo"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Vera nomo"
-#: any.pm:924
+#: any.pm:923
#, fuzzy, c-format
msgid "Login name"
msgstr "Domajna nomo"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Ŝelo"
-#: any.pm:972
+#: any.pm:971
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Elektas sekurnivelon"
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Aŭtomata-enregistrado"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mi povas konfiguri vian komputilon por aŭtomate enirigi unu uzulon"
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Ĉu vi deziras uzi tiun funkcion?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Elektu la defaŭltan uzulon:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanĉi:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Bonvole atendu"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Malfermu"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Licenca kontrakto"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Ĉesu"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Ĉu vi havas alian?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Akceptu"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Malakceptu"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Bonvole elektu lingvon por uzi"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -539,82 +539,82 @@ msgid ""
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaŭ la instalado"
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Ĉiuj lingvoj"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Ĉiuj lingvoj"
-#: any.pm:1192
+#: any.pm:1191
#, fuzzy, c-format
msgid "Language choice"
msgstr "Mianmaro"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Lando"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Bonvole elektu vian landon"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Jen la kompleta listo de atingeblaj landoj"
-#: any.pm:1250
+#: any.pm:1249
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Aliaj pordoj"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Progresinta"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Neniom"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ne kundivido"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permesu ĉiujn uzulojn"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Akomodata"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -630,86 +630,86 @@ msgstr ""
"\n"
"\"Custum\" ebligas per-uzulan.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Vi povas eksporti uzante NFS aŭ SMB. Bonvole elektu kiun vi ŝatus uzi."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lanĉu userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Horzono"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Aparata horloĝo estas ĝustigita laŭ GMT"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Aparata horloĝo estas ĝustigita laŭ GMT"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Servilo"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
@@ -1033,7 +1033,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1048,56 +1048,56 @@ msgstr ""
"atendu por defauxlta starto.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "mankas sufiĉe da spaco en /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Vi ne povas instali la startŝargilon en %s-subdiskon\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Instalu restart-ŝargilon"
@@ -1215,7 +1215,7 @@ msgstr "Finata"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1239,7 +1239,7 @@ msgstr "La URL devas komenci per http:// aŭ https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Averto"
@@ -2270,7 +2270,7 @@ msgstr "Serĉu servilojn"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ĉi tiu pakaĵo %s devas esti instalita. Ĉu vi deziras instali ĝin?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Instalanta pakaĵo %s"
@@ -2280,17 +2280,17 @@ msgstr "Instalanta pakaĵo %s"
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "La sekvaj pakaĵoj estos instalataj"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Instalanta pakaĵojn..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Distingivo: %s\n"
@@ -4660,7 +4660,7 @@ msgstr "Zambio"
msgid "Zimbabwe"
msgstr "Zimbabvo"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
@@ -4686,7 +4686,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, fuzzy, c-format
msgid ""
"Introduction\n"
@@ -4699,8 +4699,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Enkonduko\n"
"\n"
@@ -4712,7 +4711,8 @@ msgstr ""
"kaj la diversajnf komponantojn de la Mageia Linuks-eldono, sed\n"
"ne estas limigitaj al ili.\n"
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4748,8 +4748,8 @@ msgstr ""
"Iu ajn provo instali, duobligi aŭ uzi la softvarproduktojn en maniero kiu ne "
"kongruas kun la teksto kaj kondiĉoj de tiu ĉi licenco estas"
-
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4794,7 +4794,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4814,7 +4815,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4828,7 +4830,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4846,7 +4849,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4859,7 +4862,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 2d331c917..3afe9be8b 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2012-03-11 22:05-0500\n"
"Last-Translator: Diego Bello <dbello@gmail.com>\n"
"Language-Team: Spanish <mdktrans@blogdrake.net>\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Espere, por favor"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalación del cargador de arranque en progreso"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,13 +46,13 @@ msgstr ""
"\n"
"¿Asignar un nuevo ID de Volumen?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Falló la instalación del cargador de arranque. Ocurrió el siguiente error:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -70,7 +70,7 @@ msgstr ""
" Luego escriba: shut-down\n"
"La próxima vez que arranque debería ver el prompt del cargador de arranque."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -85,268 +85,268 @@ msgstr ""
"\n"
"¿Desde qué disco arranca?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Instalación del cargador de arranque"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "¿Dónde quiere instalar el cargador de arranque?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primer sector (MBR) del disco %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primer sector del disco (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Primer sector de la partición raíz"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "En disquete"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Omitir"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuración del estilo de arranque"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Opciones principales del cargador de arranque"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Cargador de arranque"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Cargador de arranque a usar"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Dispositivo de arranque"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Opciones principales"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Demora antes de arrancar la imagen predeterminada"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Habilitar ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Habilitar SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Habilitar APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Habilitar APIC local"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguridad"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contraseña"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Las contraseñas no coinciden"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Vuelva a intentarlo, por favor"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "No puede usar una contraseña con %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contraseña (de nuevo)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Limpiar /tmp en cada inicio del equipo"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Mensaje de inicio"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Demora de Open firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Tiempo de espera de arranque del núcleo"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "¿Habilitar el arranque desde CD?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "¿Habilitar el arranque de OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "¿SO predeterminado?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Imagen"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Raíz"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Añadir"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Añadir Xen"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Requiere contraseña para iniciar"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Modo de vídeo"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Perfil de red"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defecto"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "Sin vídeo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "No se admite una etiqueta vacía"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Debe especificar una imagen del núcleo"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Debe especificar una partición raíz"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta ya está en uso"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desea añadir?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Otro SO (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Otro SO (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Otro SO (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuración del cargador de arranque"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -355,47 +355,47 @@ msgstr ""
"Aquí están las diferentes entradas.\n"
"Puede añadir otras o cambiar las que ya existen."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "acceso a programas X"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "acceso a herramientas rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "acceso a archivos administrativos"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "acceso a herramientas de red"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "acceso a herramientas de compilación"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s ya fue añadido)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Introduzca el nombre de usuario"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -404,149 +404,149 @@ msgstr ""
"El nombre de usuario (login) debe comenzar con una letra minúscula seguida "
"sólo letras minúsculas, números, `-' y `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "El nombre de usuario es muy largo"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Este nombre de usuario ya fue añadido"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID de usuario"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID de grupo"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "¡%s debe ser un número!"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s debería ser superior a 500. ¿Aceptarlo igual?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Administración de usuarios"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Habilitar cuenta de invitado"
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Introduzca contraseña del administrador (root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Ingrese un usuario"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Icono"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Nombre y apellidos"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Nombre de conexión"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Por favor espere, agregando soportes..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Conexión automática"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Puedo configurar su computadora para que entre automáticamente con un "
"usuario."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Utilizar esa característica"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Elija el usuario predeterminado:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elija el gestor de ventanas a ejecutar:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Notas de versión"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Cerrar"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Acuerdo de licencia"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Salir"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "¿Acepta esta licencia?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Aceptar"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Rechazar"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, elija el idioma a usar"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -557,82 +557,82 @@ msgstr ""
"los idiomas que desea instalar. Estarán disponibles\n"
"cuando la instalación esté completa y reinicie el sistema."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Múltiples idiomas"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codificación (no UTF-8) para compatibilidad antigua"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Todos los idiomas"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Selección del idioma"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "País / Región"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Seleccione su país, por favor"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquí tiene la lista completa de países disponibles"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Otros países"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avanzada"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Ninguno"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "No compartir"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permitir a todos los usuarios"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalizada"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -647,7 +647,7 @@ msgstr ""
"\n"
"\"Personalizada\" permite una granularidad por usuario.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -656,7 +656,7 @@ msgstr ""
"NFS: sistema tradicional Unix para compartir archivos, con menos soporte en "
"Mac y Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -665,19 +665,19 @@ msgstr ""
"SMB: sistema para compartir archivos usado por Windows, Mac OS X y muchos "
"sistemas Linux modernos."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Puede exportar usando NFS o SMB. Por favor, elija el que desea utilizar."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lanzar UserDrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -686,7 +686,7 @@ msgstr ""
"Los recursos compartidos por usuario utilizan el grupo \"fileshare\". \n"
"Puede utilizar UserDrake para añadir un usuario a este grupo."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -695,48 +695,48 @@ msgstr ""
"Debe desconectarse y volver a conectarse para que los cambios tengan efecto. "
"Pulse OK para conectarse ahora."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Debe desconectarse y volver a conectarse para que los cambios tengan efecto"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Huso horario"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "¿Cuál es su huso horario?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configuración de la fecha, hora y huso horario"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "¿Cuál es la mejor hora?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (reloj interno puesto en hora UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (reloj interno puesto en hora local)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática de hora (usando NTP)"
@@ -1079,7 +1079,7 @@ msgid "Domain Admin Password"
msgstr "Contraseña del Administrador del Dominio"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1094,42 +1094,42 @@ msgstr ""
"a que arranque el sistema predeterminado.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menú de texto"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráfico"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB con menú de texto"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "no hay espacio suficiente en /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "No puede instalar el cargador de arranque en una partición %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1138,7 +1138,7 @@ msgstr ""
"Se debe actualizar la configuración de su cargador de arranque debido a que "
"cambió el número de la partición"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1147,7 +1147,7 @@ msgstr ""
"No se puede instalar correctamente el cargador de arranque. Debe arrancar "
"con rescate y elegir \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Volver a instalar cargador de arranque"
@@ -1265,7 +1265,7 @@ msgstr "Hecho"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1289,7 +1289,7 @@ msgstr "La URL debería empezar con http:// o https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Advertencia"
@@ -2341,7 +2341,7 @@ msgstr "Buscar servidores nuevos"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Se necesita instalar el paquete %s. ¿Quiere instalarlo?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "¡No se pudo instalar el paquete %s!"
@@ -2351,17 +2351,17 @@ msgstr "¡No se pudo instalar el paquete %s!"
msgid "Mandatory package %s is missing"
msgstr "Falta el paquete obligatorio %s"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Se deben instalar los siguientes paquetes:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Instalando paquetes..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Quitando paquetes..."
@@ -4822,7 +4822,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbaue"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"
@@ -4849,7 +4849,7 @@ msgstr ""
"El cargador de arranque no puede manejar /boot en múltiples volúmenes físicos"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4862,8 +4862,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Introducción\n"
"\n"
@@ -4879,7 +4878,8 @@ msgstr ""
"proveedores o licenciatarios\n"
"de Mageia."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4921,7 +4921,8 @@ msgstr ""
"Licencia. En caso de anulación de la Licencia, Usted deberá destruir "
"inmediatamente todas las copias de los Productos de Software."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -5006,7 +5007,8 @@ msgstr ""
"limitación \n"
"anterior puede no aplicar a Usted. "
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5045,7 +5047,8 @@ msgstr ""
"consulte \n"
"la documentación para más detalles."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5069,10 +5072,10 @@ msgstr ""
"modificar o adaptar los \n"
"Productos de Software, como un todo o en parte, por todos los medios y para "
"cualquier propósito.\n"
-"\"Mageia\" y los logos asociados son marca registrada de "
-"Mageia "
-
+"\"Mageia\" y los logos asociados son marca registrada de Mageia "
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5105,8 +5108,7 @@ msgstr ""
"Para cualquier pregunta relacionada con este documento, por favor ponerse en "
"contacto con Mageia"
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5127,7 +5129,7 @@ msgstr ""
"a Usted, por favor consulte las leyes locales."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index b8b3e3956..8e3b7cdae 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2012-04-25 02:29+0000\n"
"Last-Translator: Marek Laane <bald@smail.ee>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,21 +17,21 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Palun oodake"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Paigaldatakse alglaadurit..."
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -48,12 +48,12 @@ msgstr ""
"\n"
"Kas anda kettale uus ID?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Alglaaduri paigaldamine nurjus. Tekkis järgmine viga:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -70,7 +70,7 @@ msgstr ""
" Seejärel kirjutage: shut-down\n"
"Järgmisel käivitusel peaksite nägema alglaaduri käsurida."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -85,268 +85,268 @@ msgstr ""
"\n"
"Milliselt kettalt Te alglaadimise sooritate?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Alglaaduri paigaldamine"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kuhu soovite alglaaduri paigaldada?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Ketta %s algusesse (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Ketta algusesse (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Juurpartitsiooni algusesse"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Disketil"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Jäta vahele"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Alglaaduri stiil"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Alglaaduri põhiseadistused"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Alglaadur"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Eelistatav alglaadur"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Alglaadimisseade"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Põhivalikud"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "ACPI lubamine"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "SMP lubamine"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "APIC lubamine"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Kohaliku APIC lubamine"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Turvalisus"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Parool"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Paroolid ei klapi"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Palun proovige veel"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "%s puhul ei saa parooli kasutada"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Parool (uuesti)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "/tmp puhastatakse igal käivitumisel"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Initsialiseerimisteade"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware viivitus"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ajapiirang kerneli laadimisel"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "CD-lt laadimine lubatud?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "OF laadimine lubatud?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Vaikimisi OS?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Laadefail"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Juurpartitsioon"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Lisaargumendid"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen'i lisaargument"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Alglaadimiseks on vajalik parool"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Ekraanilahutus"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Võrguprofiil"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nimi"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Vaikimisi"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Nimi ei tohi puududa"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Teil peab olema kerneli laadepilt"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Teil peab olema juurpartitsioon"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Selline nimi on juba kasutusel"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Millist kirjet soovite lisada?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Muu OS (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Muu OS (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Muu OS (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Alglaaduri seadistamine"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -355,47 +355,47 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te võite neid lisada ning olemasolevaid muuta."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "ligipääs X'i rakendustele"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "ligipääs rpm-tööriistadele"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "\"su\" lubamine"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "ligipääs administreerimisfailidele"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "ligipääs võrgutööriistadele"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "ligipääs kompileerimistööriistadele"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Palun andke kasutajanimi"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -404,148 +404,148 @@ msgstr ""
"Kasutajanimi peab algama väiketähega ja tohib sisaldada ainult väikesi "
"tähti, arve ning märke \"-\" ja \"_\""
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "See kasutajanimi on liiga pikk"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "See kasutajanimi on juba lisatud"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Kasutaja ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Grupi ID"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s peab olema arv"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s peab olema suurem kui 500. Kas ikkagi lisada?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Kasutajate haldamine"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Külaliskonto (guest) lubamine"
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Administraatori (root) parool"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Kasutaja lisamine"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Ikoon"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Pärisnimi"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Kasutajatunnus"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Palun oodake, lisatakse andmekandja..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automaatne sisselogimine"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Teie arvutis saab määrata kasutaja, kel on lubatud automaatselt sisse logida."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Selle võimaluse lubamine"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Valige kasutaja:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Valige käivitatav aknahaldur:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Info väljalaske kohta"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Sulge"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Lõppkasutaja litsentsileping"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Välju"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Kas olete selle litsentsiga nõus?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Nõustun"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Keeldun"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Valige palun kasutatav keel"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -557,82 +557,82 @@ msgstr ""
"Need muutuvad kasutatavaks, kui olete paigaldamise\n"
"lõpetanud ja süsteemi taaskäivitanud."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Mitme keele valimine"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Varasemaga ühilduv kodeering (mitte-UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Kõik keeled"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Keelevalik"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Riik / Piirkond"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Palun valige oma riik"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "See on kõigi riikide täielik nimekiri"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Muud riigid"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Edasijõudnuile"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Sisestusmeetod:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Puudub"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Jagamiseta"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Lubatud kõigile kasutajatele"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Kohandatud"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -647,7 +647,7 @@ msgstr ""
"\n"
"\"Kohandatud\" lubab määrata seda kasutajate kaupa.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -656,7 +656,7 @@ msgstr ""
"NFS: UNIX-i traditsiooniline failijagamissüsteem, mida Mac ja Windows eriti "
"ei toeta."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -665,18 +665,18 @@ msgstr ""
"SMB: failijagamissüsteem, mida toetavad Windows, Mac OS X ja enamik moodsaid "
"Linuxi süsteeme."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Eksportida saab NFS või SMB abil. Palun valige, kumba kasutada."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake käivitamine"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -685,7 +685,7 @@ msgstr ""
"Kasutaja kaupa jagamise lubamine rakendab gruppi \"fileshare\". \n"
"Sellesse gruppi kasutajate lisamiseks saab tarvitada userdraket."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -694,47 +694,47 @@ msgstr ""
"Muudatuste rakendamiseks tuleb end uuesti sisse logida. Vajutage "
"väljalogimiseks OK."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Muudatuste rakendamiseks tuleb end uuesti sisse logida"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Ajavöönd"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Kuupäeva, kellaaja ja ajavööndi seadistamine"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Milline on korrektne aeg?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (arvuti sisekell on seatud GMT ajale)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (arvuti sisekell on seatud kohalikule ajale)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP server"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Aja automaatne sünkroniseerimine (NTP abil)"
@@ -1071,7 +1071,7 @@ msgid "Domain Admin Password"
msgstr "Domeeni administraatori parool"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1086,49 +1086,49 @@ msgstr ""
"ehk oodake, kuni laetakse vaikimisi valitu.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LiLo tekstirežiimis"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB graafilises režiimis"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB tekstirežiimis"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "/boot on liiga täis"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Alglaadurit ei saa paigaldada %s partitsioonile\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "Alglaaduri seadistust tuleb uuendada, sest partitsioon on ümber seatud"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1137,7 +1137,7 @@ msgstr ""
"Alglaadurit ei saa korrektselt paigaldada. Peate tegema taaskäivituse "
"päästerežiimi (rescue) ja valima \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Alglaaduri taaspaigaldamine"
@@ -1254,7 +1254,7 @@ msgstr "Tehtud"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1278,7 +1278,7 @@ msgstr "URL peab algama kas http:// või https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Hoiatus"
@@ -2319,7 +2319,7 @@ msgstr "Uute serverite otsimine"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakett %s tuleks kindlasti paigaldada. Kas soovite seda teha?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Ei õnnestunud paigaldada %s paketti!"
@@ -2329,17 +2329,17 @@ msgstr "Ei õnnestunud paigaldada %s paketti!"
msgid "Mandatory package %s is missing"
msgstr "Puudub kohustuslik pakett %s"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Paigaldada tuleb järgmised paketid:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Pakettide paigaldamine..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Pakettide eemaldamine..."
@@ -4777,7 +4777,7 @@ msgstr "Sambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "See ongi %s"
@@ -4805,7 +4805,7 @@ msgstr ""
"partitsiooni /boot"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4818,8 +4818,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Järgnev lõppkasutaja litsents on eksimuste vältimiseks originaalkeeles!\n"
"\n"
@@ -4834,10 +4833,10 @@ msgstr ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
-
+"distributed with these products provided by Mageia's licensors or suppliers."
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4879,7 +4878,8 @@ msgstr ""
"copies of the \n"
"Software Products."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4965,7 +4965,8 @@ msgstr ""
"consequential or incidental damages, the above limitation may not apply to "
"you."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5001,7 +5002,8 @@ msgstr ""
"documentation for \n"
"further details."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5025,7 +5027,8 @@ msgstr ""
"Products, as a whole or in parts, by all means and for all purposes.\n"
"\"Mageia\" and associated logos are trademarks of Mageia"
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5057,8 +5060,7 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact Mageia."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5078,7 +5080,7 @@ msgstr ""
"uurige oma riigi seadusi."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 1dcc3390c..c440432c6 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2010-06-29 13:27+0200\n"
"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Basque <kde-i18n-doc@kde.org>\n"
@@ -18,21 +18,21 @@ msgstr ""
"X-Generator: Lokalize 1.0\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Itxoin mesedez"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Abio zamatzailearen instalaketa egiten ari da"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -50,12 +50,12 @@ msgstr ""
"\n"
"Bolumen ID berria ezarri nahi duzu?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Abio zamatzailearen instalaketak huts egin du. Akats hau gertatu da:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -73,7 +73,7 @@ msgstr ""
" Gero, idatzi: shut-down\n"
"Hurrengo abiaraztean abio zamatzailearen gonbita ikusi beharko zenuke."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -88,268 +88,268 @@ msgstr ""
"\n"
"Zein unitatetik abiatzen duzu?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Abio zamatzailearen instalaketa"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Non instalatu nahi duzu abio zamatzailea?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "%s unitatearen lehen sektorea (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Unitatearen lehen sektorea (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Erro partizioko lehen sektorea"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Disketean"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Utzi"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Abio tankera konfiguraketa"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Abio zamatzailearen aukera nagusiak"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Abio zamatzailea"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Erabili beharreko abio zamatzailea"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Abio gailua"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Aukera nagusiak"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Imajina lehenetsia abiarazi arteko denbora"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Gaitu ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Gaitu SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Gaitu APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Gaitu bertako APIC"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Segurtasuna"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasahitza"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Pasahitzak ez datoz bat"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Saiatu berriro"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Ezin duzu %s-rekin pasahitz bat erabili"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasahitza (berriro)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Garbitu /tmp abiatzen den bakoitzean"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Hasierako mezua"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware-ren atzerapena"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Nukleoaren abioaren denbora-muga"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Gaitu CDtik abiaraztea?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Gaitu OF abiaraztea?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "SE lehenetsia?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Imajina"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Erroa"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Erantsi"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen erantsi"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Abiarazteko pasahitza behar da"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Bideo modua"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Sare profila"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiketa"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Lehenetsia"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "BideorikEz"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Ez da etiketa hutsik onartzen"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Nukleo-imajina bat zehaztu behar duzu"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Erroko partizio bat zehaztu behar duzu"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Etiketa hau jadanik erabili da"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Zer sarrera-mota gehitu nahi duzu?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Beste SE bat (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Beste SE bat (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Beste SE bat (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Abio zamatzailearen konfiguraketa"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -358,47 +358,47 @@ msgstr ""
"Hona hemen abioko menuko orain arteko sarrerak.\n"
"Sarrera gehgiago sor ditzakezu, edo lehendik daudenak aldatu."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "X programen atzipena"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "rpm tresnen atzipena"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "onartu \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "administrazio-fitxategien atzipena"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "sare-tresnen atzipena"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "konpilazio-tresnen atzipena"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s jadanik gehituta)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Eman erabiltzaile-izen bat"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -407,147 +407,147 @@ msgstr ""
"Erabiltzaile izena letra minuskulaz hasi behar da eta jarraian soilik letra "
"minuskulak, zenbakiak, `-' eta `_' izan ditzake"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Erabiltzaile-izena luzeegia da"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Erabiltzaile ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Talde ID"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s zenbakia izan behar da"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s 500 gainetik egon behar luke. Onartu hala ere?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Erabiltzaile kudeaketa"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Gaitu gonbidatuaren kontua"
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ezarri administratzaile (root) pasahitza"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Sartu erabiltzaile bat"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Ikonoa"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Benetako izena"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Saioa hasteko izena"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Itxoin mesedez, euskarria eransten..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatikoki hasi saioa"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Ezaugarri hau erabili"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Aukeratu erabiltzaile lehenetsia:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Askapen Oharrak"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Itxi"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Lizentzia-kontratua"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Irten"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Lizentzia hau onartzen duzu ?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Onartu"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Ezetsi"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Aukeratu erabiltzeko hizkuntza bat"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,82 +558,82 @@ msgstr ""
"instalatu nahi dituzun hizkuntzak. Instalazioa osatzean eta\n"
"sistema berrabiaraztean, erabilgarri egongo dira."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Hizkuntza anitz"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodeketa bateragarritasun zaharra (ez UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Hizkuntza guztiak"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Hizkuntza aukera"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Estatua / Eskualdea"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Aukeratu zure herrialdea edo estatua"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hona hemen herrialde erabilgarri guztien zerrenda"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Beste Herrialde batzuk"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Aurreratua"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Sarrera metodoa:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Bat ere ez"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ez partekatu"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Eman baimena erabiltzaile guztiei"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Pertsonalizatua"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -648,7 +648,7 @@ msgstr ""
"\n"
"\"Custom\"ek erabiltzaileen araberako banaketa egiteko aukera ematen du.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -657,7 +657,7 @@ msgstr ""
"NFS: usadioz Unixen fitxategiak elkarbanatzeko sistema, Mac eta Windowsen "
"euskarri gutxiago duena."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -666,18 +666,18 @@ msgstr ""
"SMB: fitxategiak elkarbanatzeko sistema, Windows, Mac OS X eta gaur egungo "
"hainbat Linux sistemek erabiltzen dutena."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "NFS edo SMB-rekin esporta dezakezu. Hautatu zein erabili nahi duzun."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Abiarazi userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -687,7 +687,7 @@ msgstr ""
"taldea erabiltzen du. \n"
"Userdrake erabil dezakezu talde honetan erabiltzaileak gehitzeko."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -696,48 +696,48 @@ msgstr ""
"Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten. "
"Sakatu Ados saioa orain amaitzeko."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Ordu-zona"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Zein da zure ordu-zona?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Data, ordulari eta ordu gune ezarpenak"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Zein da ordu onena?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardware ordularia UTC-ra ezarria)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardware ordularia bertako ordura ezarria)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Zerbitzaria"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
@@ -1081,7 +1081,7 @@ msgid "Domain Admin Password"
msgstr "Domeinu-administratzailearen pasahitza"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1096,42 +1096,42 @@ msgstr ""
"itxaron lehenespenez berrabiarazi arte.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO testu-menuarekin"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB menu grafikoarekin"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB testu menuarekin"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "ez dago nahikoa leku /boot-en"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Abioko kargatzailea ezin da instalatu %s partizio batean\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1140,7 +1140,7 @@ msgstr ""
"Abioko kargatzailearen konfigurazioa eguneratu egin behar da, partizioa "
"berriro zenbakitu delako"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1149,7 +1149,7 @@ msgstr ""
"Abioko kargatzailea ezin da behar bezala instalatu. Berrabiarazi "
"berreskuratzea, eta hautatu \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Berriro instalatu abioko kargatzailea"
@@ -1266,7 +1266,7 @@ msgstr "Eginda"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1290,7 +1290,7 @@ msgstr "URLak honela hasi behar du: http:// edo https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Kontuz"
@@ -2337,7 +2337,7 @@ msgstr "Bilatu zerbitzari berriak"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s paketea instalatu egin behar da. Instalatu nahi duzu?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Ezin izan da %s paketea instalatu!"
@@ -2347,17 +2347,17 @@ msgstr "Ezin izan da %s paketea instalatu!"
msgid "Mandatory package %s is missing"
msgstr "Derrigorrezko %s paketea falta da"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Ondorengo paketeak instalatu behar dituzu:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Paketeak instalatzen..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Paketeak kentzen..."
@@ -4802,7 +4802,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbawe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Ongi etorri %s(e)ra"
@@ -4830,7 +4830,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Abio-zamatzaileak ezin du /boot bolumen fisiko anitzetan maneiatu"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4843,8 +4843,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Sarrera\n"
"\n"
@@ -4857,7 +4856,8 @@ msgstr ""
"eta Mandribaren lizentziatzaile edo hornitzaileek produktu hauekin banatzen "
"duten edozein aplikazio."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4899,7 +4899,8 @@ msgstr ""
"suntsitu \n"
"behar dituzu."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4977,7 +4978,8 @@ msgstr ""
"handiko osagaiei aplikatzen \n"
"zaie, baina ez da horietara mugatzen."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4998,8 +5000,8 @@ msgid ""
msgstr ""
"3. GPL Lizentzia eta Lizentzia erlazionatuak\n"
"\n"
-"Software Produktuak hainbat pertsonak edo erakundek sortutako osagaiak dira. "
-"\n"
+"Software Produktuak hainbat pertsonak edo erakundek sortutako osagaiak "
+"dira. \n"
"Osagai horietako gehienak aurrerantzean \"GPL\" deituko diogun GNU Lizentzia "
"Publiko Orokorraren\n"
"edo antzeko lizentzien baldintzek eraenduak dira. Lizentziahorietako "
@@ -5014,7 +5016,8 @@ msgstr ""
"gehiago nahi izanez gero \n"
"jo dokumentaziora."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5036,10 +5039,10 @@ msgstr ""
"Mageiak eskubidea du Software Produktuak bere osotasunean edo zatika "
"aldatzeko, \n"
"edozein bide erabiliz eta helburu guztietarako.\n"
-"\"Mageia\" eta asoziatutako logotipoak Mageiaren marka "
-"erregistratuak dira. "
-
+"\"Mageia\" eta asoziatutako logotipoak Mageiaren marka erregistratuak dira. "
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5070,8 +5073,7 @@ msgstr ""
"Dokumentu honi buruzko edozein zalantza argitzeko, jarri harremanetan\n"
"Mageiarekin."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5092,7 +5094,7 @@ msgstr ""
"bat aplika daitekeen zalantzak badituzu, aztertu zure tokiko legeak."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index 5105981f8..ebe614318 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-fa\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2005-02-26 06:31+0100\n"
"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
"Language-Team: Persian\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "لطفاً صبر کنید"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "نصب بارگذارآغازگر در پیشروی است"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgstr ""
"\n"
"شناسه‌ی جدید حجم گذارده شود؟ "
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "نصب بارگذار آغازگر شکست خورد. خطای بدنبال آمده رخ داد:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -70,7 +70,7 @@ msgstr ""
" سپس تایپ کنید: shut-down\n"
"در آغازگری بعدی بایستی اعلان بارگذار آغازگر را مشاهده کنید."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -85,269 +85,269 @@ msgstr ""
"\n"
"شما از روی کدام دستگاه آغازگری می‌کنید؟"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "نصب بارگذارآغازگر در پیشروی است"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "کجا می‌خواهید بارگذارآغازگر را نصب کنید؟"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "اولین بند گرداننده (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "اولین بند گرداننده (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "اولین بند قسمت‌بندی ریشه"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "بر دیسکچه"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "پرش"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "پیکربندی سبک آغازگری"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "گزینه‌های اصلی بارگذارآغازگری"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "بارگذار آغازگر"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "بارگذارآغازگری برای استفاده"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "دستگاه آغازگری"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "تأخیر قبل از آغازگری تصویر پیش‌فرض"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "بکار انداختن ACPI"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "بکار انداختن ACPI"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "بکار انداختن ACPI"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "بکار انداختن ACPI"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "امنیت"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "گذرواژه"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "گذرواژه‌ها مطابقت نمی‌کنند"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "لطفاً دوباره امتحان کنید"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"نمی‌توانید از سیستم پرونده‌ی رمزگذاری شده برای نقطه سوارسازی %s استفاده کنید"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "گذرواژه (دوباره)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "پاک کردن شاخه‌ی /tmp در هر آغازگری"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "پیغام init"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "تأخیر Firmware متن باز"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "مدت انتظار آغازگری هسته"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "بکار انداختن آغازگری سی‌دی؟"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "بکار انداختن آغازگری OF؟"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "سیستم‌عامل پیش‌فرض؟"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "تصویر"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "ریشه"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "پیوست به انتها"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "حالت ویدیوئی"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "نمایه‌ی شبکه"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "برچسب"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "پیش‌فرض"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "بدون‌ ویدیو"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "برچسب خالی اجازه داده نمی‌شود"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "تصویر هسته‌ایی را باید مشخص کنید"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "قسمت‌بندی ریشه‌ایی را باید مشخص کنید"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "این جدول از قبل مورد استفاده است"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "چه نوع از ورودیی را می‌خواهید اضافه کنید؟"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "لینوکس"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "سیستم عامل دیگر (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "سیستم عامل دیگر (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "سیستم عامل دیگر (ویندوز...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "پیکربندی سبک آغازگری"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -356,196 +356,196 @@ msgstr ""
"اینها فعلاً ورودی‌های منوی آغازگری شما هستند.\n"
"می‌توانید ورودی‌های بیشتری را ایجاد کرده یا ورودی‌های موجود را تغییر دهید."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "دستیابی به برنامه‌های X"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "دستیابی به ابزارهای rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "اجازه دادن به \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "دستیابی به پرونده‌های مدیریت"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "دستیابی به ابزارهای شبکه"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "دستیابی به ابزارهای کمپایل کردن"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s از قبل اضافه شده است)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "لطفاً نام کاربریی را بدهید"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "نام کاربر باید فقط دارای حروف کوچک، `-' و `_' باشد"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "نام کاربر بسیار طولانی است"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "این نام کاربر از قبل اضافه شده است"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "شناسه‌ی کاربر"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "شناسه‌ی گروه"
-#: any.pm:895
+#: any.pm:894
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "گزینه‌ی %s باید یک عدد باشد!"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "نام‌کاربر"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "تعیین گذرواژه‌ی مدیر"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"کاربری را وارد کنید\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "شمایل"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "نام واقعی"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "نام ثبت‌ورود"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "پوسته"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "لطفا صبر کنید، در حال افزودن رسانه..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "ثبت‌ورود خودکار"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "می‌توانم رایانه‌اتان را برای ثبت‌ورود خودکار یک کاربر برپاسازی کنم."
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "آیا می‌خواهید از این قابلیت استفاده کنید؟"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "انتخاب کردن کاربر پیش‌فرض:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "انتخاب کردن مدیر پنجره‌ی برای اجرا:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "یادداشتهای پخش"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "بستن"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "توافق‌نامه‌ی مجوز"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "ترک"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "یکی دیگر دارید؟"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "پذیرش"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "امتناع"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "لطفاً زبان برای استفاده را انتخاب کنید"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -556,82 +556,82 @@ msgstr ""
"را که می‌خواهید نصب کنید انتخاب نمایید. آنها وقتی نصب شما تکمیل \n"
"شود و شما سیستم خود را راه‌اندازی مجدد کنید قابل دسترسی می‌باشند."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "همه‌ی زبان‌ها"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "همه‌ی زبان‌ها"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "گزینش زبان"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "کشور / منطقه"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "لطفاً کشور خود را انتخاب کنید"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "این لیست کامل کشورهای در دسترس می‌باشد"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "کشورهای دیگر"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "پیشرفته"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "روش درونداد:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "هيچکدام"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "بدون اشتراک"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "اجازه دادن به تمام کاربرها"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "سفارشی"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -646,7 +646,7 @@ msgstr ""
"\n"
"\"سفارشی\" اجازه‌ی هر-کاربر تکی را می‌دهد.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -654,7 +654,7 @@ msgid ""
msgstr ""
"NFS: سیستم سنتی اشتراک پرونده یونیکس، با پشتیبانی کمتر بر Mac و ویندوز."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -663,7 +663,7 @@ msgstr ""
"SMB: سیستم اشتراک پرونده که بوسیله ویندوز، Mac OS X و بسیاری از سیستم‌‌های "
"مدرن لینوکس استفاده می‌گردد."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -671,12 +671,12 @@ msgstr ""
"می‌توانید با استفاده از NFS یا SMB صادر کنید. لطفاً آن را که می‌خواهید استفاده "
"کنید را انتخاب کنید."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "راه‌اندازی userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -685,54 +685,54 @@ msgstr ""
"اشتراک هر-کاربر از گروه \"fileshare\" استفاده می‌کند. \n"
"برای افزودن کاربری به این گروه می‌توانید از userdrake استفاده کنید."
-#: any.pm:1504
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "باید ثبت خروج کرده و باز برگردید برای اینکه تغییرات تأثیر کنند"
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "باید ثبت خروج کرده و باز برگردید برای اینکه تغییرات تأثیر کنند"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "زمان منطقه‌ای"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "منطقه‌ی زمانی شما کدام است؟"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "گذاردن ساعت سخت‌افزار به GMT"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "گذاردن ساعت سخت‌افزار به GMT"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "کارگزار NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "هم‌گاه‌سازی خودکار زمان (با استفاده از NTP)"
@@ -1065,7 +1065,7 @@ msgstr "گذرواژه‌ی مدیریت دامنه"
# this text MUST be in ASCII! it has to be rewritten in ascii-transliteration
# of Farsi (or left in english)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1080,42 +1080,42 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO با منوی متنی"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "فضای کافی در شاخه‌ی /boot وجود ندارد"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "نمی‌توانید بارگذارآغازگر را بر یک قسمت‌بندی %s نصب کنید\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1124,7 +1124,7 @@ msgstr ""
"پیکربندی بارگذار آغازگر باید بروزسازی شود برای اینکه قسمت‌بندی شماره‌گذاری "
"مجدد گردیده است"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1133,7 +1133,7 @@ msgstr ""
"بارگذار آغازگر نمی‌تواند بدرستی نصب گردد. شما باید با گزینه‌ی نجات آغازگری "
"کرده و \"%s\" را انتخاب کنید"
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "نصب-مجدد بارگذار آغازگر"
@@ -1252,7 +1252,7 @@ msgstr "انجام شد"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1276,7 +1276,7 @@ msgstr "نشانی اینترنتی باید با http:// یا https:// شروع
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "هشدار"
@@ -2312,7 +2312,7 @@ msgstr "جستجوی کارگزارهای جدید"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "بسته‌ی %s لازم است نصب شود. آیا می‌خواهید آن را نصب کنید؟"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "بسته‌ی %s نتوانست نصب گردد!"
@@ -2322,17 +2322,17 @@ msgstr "بسته‌ی %s نتوانست نصب گردد!"
msgid "Mandatory package %s is missing"
msgstr "بسته‌ی ضروری %s حضور ندارد"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "بسته‌های بدنبال آمده لازم است نصب شوند:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "نصب بسته‌ها..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "حذف بسته‌ها..."
@@ -4775,7 +4775,7 @@ msgstr "زامبیا"
msgid "Zimbabwe"
msgstr "زیمبابوه"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "به %s خوش آمدید"
@@ -4801,7 +4801,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4814,8 +4814,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"معرفی\n"
"\n"
@@ -4824,7 +4823,8 @@ msgstr ""
"یک مجموعه از نرم‌افزار‌ها، روش‌ها، قواعد و نوشتارهای مربوط به سیستم عامل\n"
"و اجزای مختلف پخش لینوکس ماندریبا می‌باشد."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4859,7 +4859,8 @@ msgstr ""
"این مجوز پایان می‌بخشد. با باطل شدن مجوز، باید بیدرنگ تمام کپی‌های\n"
"محصولات نرم‌افزاری را نابود کنید."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4930,7 +4931,8 @@ msgstr ""
"در\n"
"محصولات نرم‌افزاری وجود دارند می‌باشد."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4964,10 +4966,10 @@ msgstr ""
"نرم‌افزار بایستی به نویسنده‌ی آن نرم‌افزار ونه به ماندریبا فرستاده شوند. "
"برنامه‌های تهیه شده بوسیله \n"
"ماندریبا توسط مجوز GPL اداره می‌شوند. نوشتارهای نوشته شده توسط Mageia تحت \n"
-"مجوز مخصوص اداره می‌شوند. لطفاً به این نوشتارها برای توضیحات بیشتر مراجعه "
-"کنید."
-
+"مجوز مخصوص اداره می‌شوند. لطفاً به این نوشتارها برای توضیحات بیشتر مراجعه کنید."
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4986,10 +4988,10 @@ msgstr ""
"مالکیت نبوغی و قوانین حق امتیاز برنامه‌های نرم‌افزاری حفاظت می‌شوند. \n"
"شرکت Mageiaحقوق امتیازی خود را برای تغییر یا وفق دادن محصولات نرم‌افزاری \n"
"بطور کامل یا قسمت‌هایی از آنها، در هر صورت و برای هر منظور محفوظ می‌دارد. \n"
-"\"Mageia\" و علائم مربوطه آرم‌های بازرگانی Mandriva S.A. می "
-"باشند."
-
+"\"Mageia\" و علائم مربوطه آرم‌های بازرگانی Mandriva S.A. می باشند."
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5018,8 +5020,7 @@ msgstr ""
"مرحله، اختلاف به دادسرای قانون پاریس - فرانسه ارجاع داده خواهد شد. \n"
"برای هر سؤالی درباره این نوشتار لطفاً با Mageia تماس بگیرید."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5037,7 +5038,7 @@ msgstr ""
"نیستید به قوانین محل اقامت خود مراجعه کنید."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index b13e701ee..b0c2252f3 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -16,7 +16,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-fi\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2011-08-08 22:43+0300\n"
"Last-Translator: Jani Välimaa <wally@mageia.org>\n"
"Language-Team: Finnish <mageia-i18n@mageia.org>\n"
@@ -26,21 +26,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Odota hetki"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Käyttöjärjestelmän lataimen asennus käynnissä"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -58,12 +58,12 @@ msgstr ""
"\n"
"Määritetäänkö uusi Volume ID?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Käynnistyslataimen asennus epäonnistui. Tapahtui seuraava virhe:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -81,7 +81,7 @@ msgstr ""
" shut-down\n"
"Seuraavalla käynnistyskerralla käynnistyslataimen pitäisi näkyä."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -96,268 +96,268 @@ msgstr ""
"\n"
"Miltä kiintolevyltä käynnistys tapahtuu?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Käynnistyslataimen asennus"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Minne käyttöjärjestelmän latain asennetaan?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Kiintolevyn %s käynnistyssektorille (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Kiintolevyn käynnistyssektorille (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Juuriosion ensimmäiselle sektorille"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Levykkeelle"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Ohita"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Käynnistystavan asetukset"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Käynnistyslataimen asetukset"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Käynnistyslatain"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Käytettävä käynnistyslatain"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Käynnistyslaite"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Asetukset"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Viive ennen oletusjärjestelmän käynnistystä"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Ota ACPI käyttöön"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Ota moniprosessorituki käyttöön"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Ota APIC käyttöön"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Ota paikallinen APIC käyttöön"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Tietoturva"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Salasana"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Salasanat eivät täsmää"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Yritä uudelleen"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Et voi käyttää salasanaa %s kanssa"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Tyhjennä /tmp jokaisella käynnistyskerralla"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Käynnistysviesti"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware -viive"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ytimen käynnistämisen aikakatkaisu"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Ota käynnistäminen CD/DVD-levyltä käyttöön?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Ota Open Firmware -käynnistäminen käyttöön?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Oletuskäyttöjärjestelmä?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Kuva"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Juuri"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Lisäys"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen-lisäys"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Käynnistys vaati salasanan"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Näyttötila"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Verkkoprofiili"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nimi"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Oletus"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "Ei näyttöä"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Tyhjää nimiä ei sallita"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Sinun täytyy määritellä ydin"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Sinun täytyy määritellä juuriosio"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Nimi on jo käytössä"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Minkä tyyppisen tietueen haluat lisätä?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Muu käyttöjärjestelmä (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Muu käyttöjärjestelmä (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Muu käyttöjärjestelmä (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Käynnistyslataimen asetukset"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -366,47 +366,47 @@ msgstr ""
"Tämän hetkiset käynnistysvalikon tietueet.\n"
"Voit lisätä uusia tai muuttaa olemassa olevia."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "Oikeudet X-ohjelmiin"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "Oikeudet RPM-työkaluihin"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "Salli \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "Oikeudet ylläpidollisiin tiedostoihin"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "Oikeudet verkkotyökaluihin"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "Oikeudet ohjelmointityökaluihin"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(lisätty jo: %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Anna käyttäjätunnus"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -414,148 +414,148 @@ msgid ""
msgstr ""
"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita ja merkit - ja _"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Käyttäjätunnus on liian pitkä"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Käyttäjätunnus on jo olemassa"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Käyttäjän tunnistenumero (UID)"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Ryhmän tunnistenumero (GID)"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s pitää olla luku"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s pitäisi olla suurempi kuin 500. Jatka silti?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Käyttäjien hallinta"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Aktivoi vierastili"
# Asennuksen sivuvalikko
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Aseta pääkäyttäjän (root) salasana"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Lisää käyttäjä"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Kuvake"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Oikea nimi"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Käyttäjätunnus"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Komentotulkki"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Odota, lisätään lähteitä..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Yksi käyttäjä voidaan asettaa kirjautumaan sisään automaattisesti."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Käytä automaattista kirjautumista"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Valitse oletuskäyttäjä:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Julkaisutiedote"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Sulje"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Käyttöoikeussopimus"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Lopeta"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Hyväksy käyttöoikeussopimus?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Hyväksy"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Kieltäydy"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Valitse käytettävä kieli"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -566,84 +566,84 @@ msgstr ""
"kielet. Kielet ovat käytettävissä asennuksen ja koneen\n"
"uudelleenkäynnistämisen jälkeen."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Asenna useita kieliä"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Vanhempi ei-UTF-8-merkistö"
# Asennuksen sivuvalikko
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Kaikki kielet"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Kielivalinta"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Maa / alue"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Valitse maa, jossa olet"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Lista kaikista käytettävissä olevista maista"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Muut maat"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Lisäasetukset"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Syöttömenetelmä:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Ei mitään"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ei jaettu"
# Asennuksen sivuvalikko
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Salli kaikille käyttäjille"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Mukautettu"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -658,7 +658,7 @@ msgstr ""
"\n"
"\"Mukautettu\" sallii käyttäjäkohtaiset oikeudet.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -667,7 +667,7 @@ msgstr ""
"NFS: perinteinen Unix-tiedostonjakojärjestelmä, jota Mac ja Windows tukevat "
"huonosti."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -676,7 +676,7 @@ msgstr ""
"SMB: tiedostonjakojärjestelmä, jota käyttävät Windows, Mac OS X ja monet "
"nykyaikaiset Linux-järjestelmät."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -684,12 +684,12 @@ msgstr ""
"Tiedostoja voidaan jakaa sekä NFS:llä että Samballa. Valitse kumpaa "
"käytetään."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Käynnistä Userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -698,7 +698,7 @@ msgstr ""
"Käyttäjäkohtainen jako käyttää ryhmää \"fileshare\".\n"
"Käyttäjä voidaan lisätä ryhmään Userdrake:n avulla."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -707,47 +707,47 @@ msgstr ""
"Muutosten ottaminen käyttöön vaatii uloskirjautumisen. Valitse OK "
"kirjautuaksesi ulos."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Muutosten ottaminen käyttöön vaatii uloskirjautumisen."
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Aikavyöhyke"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Valitse järjestelmän aikavyöhyke"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Päivämäärän, kellonajan ja aikavyöhykkeen asetukset"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Valitse aika, joka on lähimpänä oikeata aikaa"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (laitteistokello UTC-ajassa)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (laitteistokello paikallisessa ajassa)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-palvelin"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon tahdistus NTP:n avulla"
@@ -1099,7 +1099,7 @@ msgstr "Toimialueen pääkäyttäjän salasana"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1114,42 +1114,42 @@ msgstr ""
"odota oletuskaynnistysta.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO tekstipohjaisella valikolla"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB graafisella valikolla"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB tekstipohjaisella valikolla"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "/boot-osiolla tai -hakemistossa ei ole tarpeeksi vapaata tilaa"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Käyttöjärjestelmän lataajaa ei voida asentaa osiolle %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1158,7 +1158,7 @@ msgstr ""
"Käynnistyslataimen asetukset pitää päivittää, koska levyosiot on numeroitu "
"uudelleen"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1168,7 +1168,7 @@ msgstr ""
"rescue-tilaan ja valita \"%s\""
# Asennuksen sivuvalikko
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Asenna käynnistyslatain uudelleen"
@@ -1286,7 +1286,7 @@ msgstr "Valmis"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1310,7 +1310,7 @@ msgstr "Osoitteen tulee alkaa etuliitteellä http:// tai https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Varoitus"
@@ -2361,7 +2361,7 @@ msgstr "Etsi uudet palvelimet"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paketti %s pitää asentaa. Asennetaanko se?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Pakettia %s ei voitu asentaa!"
@@ -2371,17 +2371,17 @@ msgstr "Pakettia %s ei voitu asentaa!"
msgid "Mandatory package %s is missing"
msgstr "Pakollinen paketti %s puuttuu"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Seuraavat paketit pitää asentaa:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Asennetaan paketteja..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Poistetaan paketteja..."
@@ -4830,7 +4830,7 @@ msgid "Zimbabwe"
msgstr "Zimbabwe"
# mat
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Tervetuloa %s:n"
@@ -4858,7 +4858,7 @@ msgstr ""
"boot-osiota tai hakemistoa"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4871,8 +4871,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Johdanto\n"
"\n"
@@ -4886,7 +4885,8 @@ msgstr ""
"dokumentaation, jotka kuuluvat käyttöjärjestelmään sekä Mageia\n"
"-jakeluun kuuluvat komponentit."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4922,7 +4922,8 @@ msgstr ""
"yritykset päättävät oikeutesi tämän Lisenssin alla välittömästi. Lisenssin\n"
"päättyessä sinun pitää välittömästi tuhota kaikki Ohjelmiston kopiot."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -5001,7 +5002,8 @@ msgstr ""
"tai rajoittaminen tahallisista tai tahottomista vahingoista, yllä oleva\n"
"rajoitus voi olla soveltamaton sinulle. "
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5038,7 +5040,8 @@ msgstr ""
"dokumentaatioihin sovelletaan erillistä lisenssiä. Lue dokumentaatiota\n"
"saadaksesi lisää tietoa."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5060,7 +5063,8 @@ msgstr ""
"jokaiseen tarpeeseen. \"Mageia\" ja kaikki niihin\n"
"liittyvät logot ovat Mageia:n rekisteröityjä tavaramerkkejä."
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5205,7 +5209,7 @@ msgstr ""
"be referred to the appropriate Courts of Law of Paris - France.\n"
"For any question on this document, please contact Mageia"
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5232,7 +5236,7 @@ msgstr ""
"may be applicable to you, check your local laws."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index c4a16513a..2e2219560 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2012-09-14 11:37+0200\n"
"Last-Translator: Oliver Burger <oliver.bgr@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Veuillez patienter"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation du programme d'amorçage en cours"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -47,13 +47,13 @@ msgstr ""
"\n"
"Voulez-vous assigner un nouvel identifiant de volume ?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"L'installation du programme d'amorçage a échoué pour la raison suivante :"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -73,7 +73,7 @@ msgstr ""
"Au prochain démarrage vous devriez voir apparaître l'invite du\n"
"programme d'amorçage."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -88,268 +88,268 @@ msgstr ""
"\n"
"Sur quel disque amorcez vous ?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Installation du programme d'amorçage"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Où désirez-vous installer le programme d'amorçage ?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Premier secteur (MBR) du disque %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Premier secteur du disque (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Premier secteur de la partition racine"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Sur disquette"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Passer"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuration du style de démarrage"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Principales options du programme d'amorçage"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Programme d'amorçage"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Programme d'amorçage à utiliser"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Périphérique d'amorçage"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Options principales"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Délai avant l'activation du choix par défaut"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Activer l'ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Activer le SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Activer l'APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Activer l'APIC local"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sécurité"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Mot de passe"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Les mots de passe ne sont pas identiques"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Veuillez réessayer"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Vous ne pouvez pas utiliser de mot de passe avec %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Mot de passe (vérification)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Vider le dossier /tmp à chaque démarrage"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Message de démarrage"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Délai de l'Open Firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Délai d'amorçage du noyau"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Autoriser le démarrage sur CD-ROM ?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Autoriser le démarrage sur l'OF ?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Système d'exploitation par défaut ?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Partition racine"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Options passées au noyau"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Options Xen passées au noyau"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Nécessite un mot de passe pour le démarrage"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Mode vidéo"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Fichier RamDisk"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Profil réseau"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Choix par défaut"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Un label vide n'est pas autorisé"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Vous devez spécifier l'image noyau désirée"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Vous devez spécifier une partition racine"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Ce label est déjà utilisé"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quel type de système souhaitez-vous ajouter ?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Autre système (SunOS, etc.)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Autre système (MacOS, etc.)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Autre système (Windows, etc.)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuration du programme d'amorçage"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -358,47 +358,47 @@ msgstr ""
"Voici les différentes entrées.\n"
"Vous pouvez en ajouter de nouvelles ou modifier les entrées existantes."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "accès aux programmes graphiques"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "accès aux outils rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "autoriser « su »"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "accès aux fichiers d'administration"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "accès aux outils réseaux"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "accès aux outils de compilation"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "Utilisateur(s) existant(s) : %s"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Veuillez taper un nom d'utilisateur"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -407,147 +407,147 @@ msgstr ""
"Le nom d'utilisateur doit commencer par une minuscule suivie seulement de "
"minuscules, de nombres, de « - » et « _ »"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Ce nom d'utilisateur est trop long"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Ce nom d'utilisateur est déjà utilisé"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Identifiant de l'utilisateur"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Identifiant du groupe"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s doit être un nombre"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s devrait être supérieur ou égal à 500. Accepter quand même ?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Gestion des utilisateurs"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Activer le compte Invité"
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Définissez le mot de passe administrateur (root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Tapez un nom d'utilisateur"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Icône"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Nom et prénom"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Identifiant de connexion"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Interpréteur"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Veuillez patienter, ajout du média…"
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Connexion automatique"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Connexion automatique d'un utilisateur au démarrage."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Utiliser cette fonctionnalité"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Choisissez l'utilisateur par défaut :"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Choisissez l'environnement graphique :"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Notes de version"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Fermer"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Licence"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Quitter"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Acceptez-vous cette licence ?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Accepter"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Refuser"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Choisissez la langue à utiliser"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,82 +558,82 @@ msgstr ""
"les langages que vous souhaitez installer. Ils seront disponibles\n"
"quand votre installation sera terminée et que vous aurez redémarré."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Multilingue"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilité encodage ancien (non UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Toutes les langues"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Choix de la langue"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Pays / Région"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Veuillez choisir votre pays"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Voici la liste complète des pays disponibles"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Autres Pays"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avancé"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Méthode d'entrée :"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Aucun"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Pas de partage"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Autoriser tous les utilisateurs"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personnalisé"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -649,7 +649,7 @@ msgstr ""
"\n"
"« Personnalisée » permet d'autoriser le partage pour certains utilisateurs.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -658,7 +658,7 @@ msgstr ""
"NFS : le système de partage de fichiers traditionnel d'UNIX, moins supporté "
"sur les systèmes Mac et Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -667,19 +667,19 @@ msgstr ""
"SMB : un système de partage de fichiers utilisé par Windows, Mac OS X et de "
"nombreux systèmes Linux modernes."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Souhaitez-vous partager par NFS (protocole Unix) ou SMB (protocole Windows) ?"
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lancer Userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -689,7 +689,7 @@ msgstr ""
"cet utilisateur dans le groupe « fileshare ».\n"
"Ceci peut se faire grâce au programme « Userdrake »."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -699,49 +699,49 @@ msgstr ""
"les changements en considération. Cliquez sur « OK » pour vous déconnecter "
"maintenant."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Vous devez vous déconnecter puis vous connecter à nouveau afin de prendre "
"les changements en considération"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Fuseau horaire"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Quel est votre fuseau horaire ?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Réglages de la date, de l'heure et du fuseau horaire"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Quelle est l'heure correcte ?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (horloge système réglée sur le temps universel - UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (horloge système réglée sur l'heure locale)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Serveur NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Synchronisation automatique de l'horloge (via NTP)"
@@ -1081,7 +1081,7 @@ msgid "Domain Admin Password"
msgstr "Mot de passe de l'administrateur du domaine"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1096,43 +1096,43 @@ msgstr ""
"ou attendez le demarrage par defaut.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO en mode texte"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB en mode graphique"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB en mode texte"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "il n'y a pas assez de place dans le dossier /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
"Vous ne pouvez pas installer le chargeur d'amorçage sur une partition %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1141,7 +1141,7 @@ msgstr ""
"La configuration de votre programme d'amorçage doit être mise à jour car les "
"partitions ont été renumérotées"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1150,7 +1150,7 @@ msgstr ""
"Le chargeur d'amorçage ne peut pas être installé correctement. Vous devez "
"redémarrer en mode secours et choisir « %s »"
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Réinstaller le programme d'amorçage"
@@ -1269,7 +1269,7 @@ msgstr "Terminé"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1293,7 +1293,7 @@ msgstr "L'URL doit commencer par http:// ou https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Attention"
@@ -2353,7 +2353,7 @@ msgstr "Recherche de nouveaux serveurs"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Le paquetage %s doit être installé. Souhaitez-vous l'installer ?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Impossible d'installer le paquetage %s !"
@@ -2363,17 +2363,17 @@ msgstr "Impossible d'installer le paquetage %s !"
msgid "Mandatory package %s is missing"
msgstr "Le paquetage %s, requis, est manquant"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Les paquetages suivants doivent être installés :\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Installation des paquetages…"
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Suppression des paquetages…"
@@ -4839,7 +4839,7 @@ msgstr "Zambie"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenue sur %s"
@@ -4869,7 +4869,7 @@ msgstr ""
"volumes physiques"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4882,8 +4882,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Introduction\n"
"\n"
@@ -4895,7 +4894,8 @@ msgstr ""
"Mageia, ainsi que toutes les applications distribuées avec ces produits par "
"les bailleurs de licence ou fournisseurs de Mageia."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4931,7 +4931,8 @@ msgstr ""
"fin à vos droits sous cette licence. En conséquence de cette fin de licence, "
"vous devez immédiatement détruire toutes les copies des produits logiciels."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -5006,7 +5007,8 @@ msgstr ""
"responsabilité pour les dommages indirects ou accessoires, la limitation ci-"
"dessus peut ne pas s'appliquer à votre cas."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5038,7 +5040,8 @@ msgstr ""
"régie par une licence spécifique. Veuillez vous référer à la documentation "
"pour plus de détails."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5061,7 +5064,8 @@ msgstr ""
"les moyens et à toute fin. « Mageia » et les logos associés sont des marques "
"commerciales de Mageia."
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5089,8 +5093,7 @@ msgstr ""
"présenté devant le tribunal compétent de Paris-France. Pour toute question "
"au sujet de ce document, veuillez contacter Mageia."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5112,7 +5115,7 @@ msgstr ""
"dans votre pays."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index 9c8a17ad4..92c7864b7 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2004-06-28 17:41+0200\n"
"Last-Translator: Andrea Gracco <graccoandrea@tin.it>\n"
"Language-Team: furlan <gft@freelists.org>\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Par plasè, spiete"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr ""
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -40,12 +40,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -56,7 +56,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -66,464 +66,464 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Instalazion LILO/grub"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prin setôr dal disc (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prin setôr dal disc (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Prin setôr de partizion lidrie"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Su dischet"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Salte"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Configurazion dal stîl di inviament"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr ""
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr ""
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr ""
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Dispositîf di inviament"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Ritart prin di inviâ le imagjin predefinide"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Abilite ACPI"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Abilite ACPI"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Abilite ACPI"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Abilite ACPI"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurece"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Password"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Le password no corispuint"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Par plasè torne a provâ"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Password (ancjemò)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Nete /tmp a ducj i inviaments"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Abilite l'inviament di CD?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Sisteme Operatîf predefinît?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Imagjin"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Lidrie"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Modalitât video"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, fuzzy, c-format
msgid "Network profile"
msgstr "Gnûf profîl..."
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etichete"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predefinît"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Etichete vueide no permitude"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Tu âs di specificâ une imagjin kernel"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Tu âs di specificâ une partizion lidrie"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Le etichete e je dizà in vore"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Cuâle sorte di vôs vuelistu zontâ?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Altri sisteme operatîf (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Altri sisteme operatîf (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, fuzzy, c-format
msgid "Other OS (Windows...)"
msgstr "Altri sisteme operatîf (windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Configurazion dal stîl di inviament"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "acès ai programs X"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "acès ai imprescj rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "permèt \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "acès ai file di aministrazion"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "acès ai imprescj di rêt"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "acès ai imprescj di compilazion"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(dizà zontât %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Par plasè, insede un non utent"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Il non utent al à di vê dome letaris minusculis, numars , `-' e `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Il non utent al è masse lunc"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Il non utent al è stât dizà zontât"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID Utent"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID Grop"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "Non utent"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Insede un utent\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Icone"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Non reâl"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Acès automatic"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "O pues impostâ il to computer par fâ acedi automatichementri un utent."
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Vuelistu doprâ cheste fature?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Sielç un utent predefinît:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Sielç il gjestôr grafic di doprâ:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Par plasè sielç"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Siere"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Jessî"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr ""
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr ""
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Par plasè sielç une lenghe di doprâ"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -531,82 +531,82 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Dutis les lenghis"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Dutis les lenghis"
-#: any.pm:1192
+#: any.pm:1191
#, fuzzy, c-format
msgid "Language choice"
msgstr "Lenghis"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Nazion / Regjon"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Par plasè sielç le to nazion"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Cheste e je le liste complete di dutis les nazions disponibilis"
-#: any.pm:1250
+#: any.pm:1249
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Un altri"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr ""
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Nissun"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Nissune condivision"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permet ducj i utents"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalizât"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -616,86 +616,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Invie userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1018,7 +1018,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1028,56 +1028,56 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO cun menu di test"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "no son a vonde stanziis in /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1190,7 +1190,7 @@ msgstr "Fat"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1214,7 +1214,7 @@ msgstr ""
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Avertence"
@@ -2230,7 +2230,7 @@ msgstr "Cîr gnûfs server"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Il pachet %s al à di sedi instalât. Vuelistu instalâlu?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr ""
@@ -2240,17 +2240,17 @@ msgstr ""
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr ""
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "O instali i pachets..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "O rimôf i pachets..."
@@ -4555,7 +4555,7 @@ msgstr "Zambie"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Benvignût su %s"
@@ -4581,7 +4581,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4594,12 +4594,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4622,7 +4621,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4667,7 +4667,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4687,7 +4688,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4701,7 +4703,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4719,7 +4722,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4732,7 +4735,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index b434daa96..da169b1a4 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2005-09-12 18:04+0200\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -13,21 +13,21 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Fan tamall"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Tá an clár dúisithe á shuiteáil"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -38,12 +38,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -54,7 +54,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -64,464 +64,464 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Tá an clár dúisithe á shuiteáil"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:373
+#: any.pm:372
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Níl aon ranna agat!"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Ar dhiosca flapach"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Scipeáil"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Cumraíocht Stíl Tosnú"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Príomhroghanna bootáil"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Clár dúisithe"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Ríomhchlar Tosnaithe a úsáid "
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Gaireas bootáil"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Cumasaigh ACPI"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Cumasaigh ACPI"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Cumasaigh ACPI"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Cumasaigh ACPI"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Slándáil"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasfhocal"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Ní mar a chéile na pasfhocail"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Aththrialaigh"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasfhocal (arís)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Glan /tmp nuair a thosnaigh an coráis"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Scéal Tosnú"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Cumasaigh dúiseacht ón dlúthdhiosca?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Cumasaigh dúiseacht OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "OS Loiceadh?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Iomha"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Mód fís"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Próifíl líonra"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Lipéad"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Gnáth"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "GanBhideó"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Níl ceadaigh an lipéad folamh ann"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Is gá íomhá eithne a shonrú"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Ní mór rann fréamhach"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Cén sort iontráil a suimigh do?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "CO Eile (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "CO Eile (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "CO Eile (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Cumraíocht Stíl Tosnú"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Tá an ainm úsáideora ró-fhada"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID Úsáideoir"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID Grupa"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "Ainm úsáideora"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Socraigh pasfhocal root"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Dealbh"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Fíor ainm"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Ainm logála isteach:"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Blaosc"
-#: any.pm:972
+#: any.pm:971
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Roghnaigh liebhéal slándáil"
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Uath-Logann"
-#: any.pm:1005
+#: any.pm:1004
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "An mian leat an gné seo a úsáid?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Roghnagih an úsáidoer gneás:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Fan tamall"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Dún"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Ceadúnas"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Éalaigh"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "An bhfuil ceann eile agat?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Aontaigh"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Tarrtháil"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Roghnaigh teanga le húsáid, le do thoil"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -529,82 +529,82 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Gach teanga"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Gach teanga"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Rogha teanga"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Tír / Réigiún"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Roghnaigh do thír, le do thoil"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1250
+#: any.pm:1249
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Eile"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Réamhioaíocht"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Neamhní"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Gan roinnt"
-#: any.pm:1340
+#: any.pm:1339
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Suimigh úsáideoir"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Socraithe"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -614,86 +614,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Am Críos"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Cén ceann do chrois ama?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Freastalaí NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1016,7 +1016,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1026,56 +1026,56 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO le chlár teacs"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ath-shuiteáil an clár dúisithe"
@@ -1188,7 +1188,7 @@ msgstr "Críochnithe"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1212,7 +1212,7 @@ msgstr ""
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Rabhadh"
@@ -2222,7 +2222,7 @@ msgstr "Cuardaigh freastalaithe nua"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Ag feistiál pacáiste %s"
@@ -2232,17 +2232,17 @@ msgstr "Ag feistiál pacáiste %s"
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "Roghnaigh pacáistí ..."
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Ag suiteáil pacáistí..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Ag baint pacáistí..."
@@ -4593,7 +4593,7 @@ msgstr "An tSaimbia"
msgid "Zimbabwe"
msgstr "An tSiombáib"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Fáilte go %s"
@@ -4619,7 +4619,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4632,12 +4632,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4660,7 +4659,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4705,7 +4705,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4725,7 +4726,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4739,7 +4741,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4757,7 +4760,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4770,7 +4773,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index e486478af..9159da6db 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-gl\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2009-09-25 18:43+0200\n"
"Last-Translator: Alejo Pacín Jul <alejopj@gmail.com>\n"
"Language-Team: Galician <cooker-i18n@mandrivalinux.org>\n"
@@ -20,21 +20,21 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 0.3\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Agarde"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalando o cargador de arrinque"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Desexa asignar un novo ID de Volume?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "A instalación do cargador de arrinque fallou. Ocorreu o seguinte erro:"
-#: any.pm:290
+#: any.pm:289
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -75,7 +75,7 @@ msgstr ""
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -90,268 +90,268 @@ msgstr ""
"\n"
"¿Dende qué unidade está arrincando?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Instalación do cargador de arrinque"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "¿Onde quere instala-lo cargador de arrinque?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primeiro sector (MBR) do disco %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primeiro sector do disco (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Primeiro sector da partición raiz"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Nun Disquete"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Omitir"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuración do Estilo de Arrinque"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Opcións principais do cargador de arrinque"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Cargador de Arrinque"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Cargador de arrinque que se usará"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Dispositivo de arrinque"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Opcións principais"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Retardo antes de arrinca-la imaxe por omisión"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Habilitar ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Habilitar SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Habilitar APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Habilitar APIC Local"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguridade"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contrasinal"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Por favor, inténteo de novo"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Non pode usar un contrasinal con %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Baleirar /tmp en cada arrinque"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Mensaxe Inicial"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Retardo de Open Firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Tempo de Espera do Arrinque do Kernel"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Permiti-lo arrinque dende un CD?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Habilitar o Arrinque OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "¿S.O. por defecto?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Imaxe"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Raíz"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Agregar"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Modo de video"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Perfil de rede"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defecto"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Etiqueta baleira non permitida"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Debe especificar unha imaxe do kernel"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Debe especificar unha partición raíz"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta xa se está usando"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desexa engadir?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Outros S.O. (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Outros S.O. (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Outros S.O. (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuración do Cargador de Arrinque"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -360,47 +360,47 @@ msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas máis ou cambia-las que xa existen."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "acceso ós programas X"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "acceso ás ferramentas rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "acceso ós ficheiros de administración"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "acceso ás ferramentas de rede"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "acceso ás ferramentas de compilación"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Por favor, indique un nome de usuario"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -409,149 +409,149 @@ msgstr ""
"O nome de usuario (login) só pode conter letras minúsculas, números, '-' e "
"'_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "O nome de usuario é moi longo"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Este nome de usuario xa está engadido"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID de Usuario"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID do Grupo"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s debe ser un número"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s debe estar por riba de 500. Desexa aceptar de tódolos xeitos?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Xestión de usuarios"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Estableza o contrasinal do administrador (root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Introduza un usuario"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Nome real"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Nome de usuario"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Agarde, engadindo soportes..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Login automático"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Pódese configurar o ordenador para que entre automáticamente\n"
"un usuario determinado."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Usar esta funcionalidade"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras que se executará:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Notas da Versión"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Pechar"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Acordo da licenza"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Saír"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Acepta esta licenza?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Aceptar"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Rexeitar"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, escolla a lingua que desexe empregar"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -562,82 +562,82 @@ msgstr ""
"as linguas que desexa instalar. Esta linguas estarán dispoñibles\n"
"cando a instalación estea completa e reinicie o seu sistema."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Multilinguaxe"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codificación de compatibilidade cara atrás (non UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Tódalas linguas"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Selección da Lingua"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "País"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Por favor, escolla o seu país"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Esta é a lista completa dos paises dispoñibles"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Outros Paises"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avanzado"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Ningún"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Non compartir"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permitirlle a tódolos usuarios"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalizado"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -652,7 +652,7 @@ msgstr ""
"\n"
"\"Personalizado\" permite especificalo usuario a usuario.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -661,7 +661,7 @@ msgstr ""
"NFS: o sistema tradicional de compartimento de ficheiros de Unix, con menos "
"soporte en Mac e Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -670,18 +670,18 @@ msgstr ""
"SMB: un sistema de compartimento de ficheiros que se usa en sistemas "
"Windows, Mac OS X e varios Linux modernos."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Pode exportar usando NFS ou SMB. Por favor, escolla cal quere usar."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Executar userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -690,7 +690,7 @@ msgstr ""
"O compartimento por usuario usa o grupo \"fileshare\". \n"
"Pode usar userdrake para engadir un usuario a este grupo."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -699,48 +699,48 @@ msgstr ""
"Cómpre que saia do sistema e volva entrar para que os cambios surtan efecto. "
"Prema OK para saír agora."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Cómpre que saia do sistema e volva entrar para que os cambios surtan efecto"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Zona Horaria"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Cal é a súa zona horaria?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configuración de Data, Reloxo e Zona Horaria"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Cal é a mellor hora?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (o reloxo do hardware usa a hora UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (o reloxo do hardware usa a hora local)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática da hora (usando NTP)"
@@ -1075,7 +1075,7 @@ msgstr "Contrasinal do Administrador do Dominio"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1090,42 +1090,42 @@ msgstr ""
"agarde a que arrinque o sistema predeterminado.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menú de texto"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráfico"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB con menú de texto"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "non hai espacio dabondo en /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Non se pode instala-lo cargador de arrinque nunha partición %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1134,7 +1134,7 @@ msgstr ""
"A configuración do seu cargador de arrinque ten que actualizarse porque "
"cambiou o número da partición"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1143,7 +1143,7 @@ msgstr ""
"Non se puido instalar de xeito correcto o cargador de arrinque. Ten que "
"arrincar co disco de rescate e elixir \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstala-lo Cargador de Arrinque"
@@ -1261,7 +1261,7 @@ msgstr "Feito"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1285,7 +1285,7 @@ msgstr "A URL debe comezar con http:// ou https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Advertencia"
@@ -2332,7 +2332,7 @@ msgstr "Buscar novos servidores"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Precísase instala-lo paquete %s. ¿Desexa instalalo?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "¡Non se puido instala-lo paquete %s!"
@@ -2342,17 +2342,17 @@ msgstr "¡Non se puido instala-lo paquete %s!"
msgid "Mandatory package %s is missing"
msgstr "Non se atopa o paquete obrigatorio %s"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Cómpre instala-los seguintes paquetes:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Instalando os paquetes..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Eliminando os paquetes..."
@@ -4803,7 +4803,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Cimbabue"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Benvido a %s"
@@ -4831,7 +4831,7 @@ msgstr ""
"O cargador de arrinque non pode manexar /boot en varios volumes físicos"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4844,8 +4844,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"ESTE TEXTO É UNHA TRADUCCIÓN, CON PROPÓSITO EXCLUSIVAMENTE \n"
"INFORMATIVO, DOS TERMOS DA LICENZA DE MANDRIVA LINUX. EN NINGÚN CASO \n"
@@ -4867,7 +4866,8 @@ msgstr ""
"relacionada co sistema operativo e os diferentes compoñentes da distribución "
"Mageia."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4908,7 +4908,8 @@ msgstr ""
"inmediatamente \n"
"tódalas copias dos Productos de Software."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4990,7 +4991,8 @@ msgstr ""
"aplícase, pero non está restrinxida a, os compoñentes de cifrado forte "
"incluidos nos Productos de Software."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5030,7 +5032,8 @@ msgstr ""
"baixo unha licenza específica. Por favor refírase á documentación para obter "
"máis detalles."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5053,10 +5056,10 @@ msgstr ""
"de \n"
"Software, en conxunto ou en parte, de calquera maneira e para tódolos "
"propósitos.\n"
-"\"Mageia\" e os logos asociados son marcas comerciais de "
-"Mageia "
-
+"\"Mageia\" e os logos asociados son marcas comerciais de Mageia "
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5087,8 +5090,7 @@ msgstr ""
"Para calquera pregunta sobre este documento, por favor contacte con Mageia S."
"A."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5109,7 +5111,7 @@ msgstr ""
"locais."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 97ed217e1..b11683557 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2008-03-24 03:26+0200\n"
"Last-Translator: Dotan Kamber <kamberd@yahoo.com>\n"
"Language-Team: Hebrew\n"
@@ -24,21 +24,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "נא להמתין"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "התקנת מנהל האתחול"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -54,12 +54,12 @@ msgstr ""
"\n"
"האם להקצות תג זיהוי חדש?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "התקנת מנהל האתחול נכשלה. השגיאות הבאות התרחשו:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -75,7 +75,7 @@ msgstr ""
"Command-Option-O-F בזמן האתחול ולהזין setenv boot-device %s,\\\\:tbxi\n"
"אחר כך יש להקליד shut-down. באתחול הבא צפוי להופיע מנהל האתחול."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -89,268 +89,268 @@ msgstr ""
"\n"
"מהו הכונן ממנו נטענת המערכת? "
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "התקנת מנהל האתחול"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "איפה ברצונך להתקין את מנהל האתחול?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "מקטע ראשון של הכונן (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "מקטע ראשון של הכונן (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "מקטע ראשון של מחיצת השורש"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "על תקליטון"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "דילוג"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "הגדרת סגנון מנהל אתחול"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "הגדרות עיקריות של מנהל האתחול"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "מנהל אתחול"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "מנהל אתחול (ברירת מחדל):"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "מחיצת האתחול (ברירת מחדל):"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "אפשרויות ראשיות"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "השהייה לפני אתחול מערכת ברירת המחדל"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "הפעלת ACPI (ניהול צריכת אנרגיה מתקדמת)"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "הפעלת ACPI (ניהול צריכת אנרגיה מתקדמת)"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "הפעלת APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "הפעלת APIC מקומי"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "הגדרות אבטחה"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "סיסמה"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "הסיסמאות לא זהות"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "יש לנסות שנית"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "אסור להשתמש בסיסמה עם %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "סיסמה (שוב)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "ניקוי קבצים זמניים בספריית tmp/ בכל אתחול"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "הודעת אתחול"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "השהיית קושחה (Firmware) פתוחה"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "משך המתנה מירבי לאתחול גרעין"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "האם לאפשר אתחול מתקליטור?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "האם לאפשר אתחול OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "מהי מערכת הפעלה שתיטען כברירת מחדל?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "תצורה"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "מנהל מערכת (root)"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "הוספה"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "הוספת Xen"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "תצורת תצוגה"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "תצורת רשת"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "תווית"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "ברירת מחדל"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "ללא תצוגה"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "אסור להגדיר תווית שם ריקה"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "חובה להגדיר תמונת גרעין"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "חובה להגדיר מחיצת שורש"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "התווית הזאת כבר בשימוש"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "איזה סוג כניסה ברצונך להוסיף?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "לינוקס"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "מערכת הפעלה אחרת (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "מערכת הפעלה אחרת (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "מערכת הפעלה אחרת (חלונות...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "הגדרת סגנון מנהל אתחול"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -359,195 +359,195 @@ msgstr ""
"להלן הרשומות שהוגדרו כבר בתפריט האתחול\n"
"ניתן להוסיף רשומות או לשנות רשומות קיימות."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "גישה ליישומים גרפיים"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "גישה לכלי התקנת תוכנה"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "איפשור שינוי למנהל מערכת (\"su\")"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "אפשרות גישה לקבצי ניהול"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "אפשרות גישה לכלי רשת"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "אפשרות גישה לכלי הידור"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(כבר נוסף %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "עליך להגדיר שם משתמש"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "שם המשתמש יכול להכיל אך ורק אותיות קטנות, מספרים, `-' ו `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "שם המשתמש ארוך מדי"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "שם משתמש זה כבר קיים"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "קוד זיהוי משתמש"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "קוד זיהוי קבוצה"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "הערך %s חייב להיות מספר"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s צריך להיות מעל 500. האם להמשיך בכל זאת?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "ניהול משתמשים"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "קביעת סיסמת מנהל"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "הזנת משתמש"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "סמל"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "שם אמיתי"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "שם משתמש"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "מעטפת"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "נא להמתין, מוסיף מקור..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "כניסה-אוטומטית"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"ניתן להגדיר שכאשר המערכת תופעל היא תכנס אוטומטית לחשבון של אחד המשתמשים."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "הפעל אפשרות זו"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "בחירת משתמש ברירת המחדל: "
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "יש לבחור את מנהל החלונות:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "הערות שחרור"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "סגור"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "הסכם משתמש"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "יציאה"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "האם יש לך עוד אחד?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "הסכמה"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "סירוב"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "יש לבחור את השפה העיקרית"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,82 +558,82 @@ msgstr ""
"את השפות שברצונך להתקין. השפות יהיו זמינות כאשר\n"
"ההתקנה תסתיים והמחשב יופעל מחדש."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "ריבוי שפות"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "קידוד עם תאימות לאחור (לא UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "כל השפות"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "בחירת שפה"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "מדינה / אזור"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "עליך לבחור את המדינה שלך"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "להלן הרשימה המלאה של המדינות הזמינות"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "מדינות אחרות"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "מתקדם"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "שיטת קלט:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "כלום"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "ללא שיתוף"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "הרשה לכל המשתמשים"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "מותאם אישית"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -647,7 +647,7 @@ msgstr ""
"\n"
"\" התאמה אישית\" תאפשר התאמה לכל משתמש.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -655,7 +655,7 @@ msgid ""
msgstr ""
"NFS: מערכת שיתוף הקבצים המסורתית של יוניקס, עם תמיכה פחותה במק וחלונות."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -664,18 +664,18 @@ msgstr ""
"SMB: מערכת שיתוף קבצים הנמצאת בשימוש בחלונות, Mac OS X ומערכות לינוקס "
"מודרניות רבות."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "ניתן לייצא בעזרת NFS או SMB. עליך לבחור במה להשתמש."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "הפעלת userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -684,54 +684,54 @@ msgstr ""
"השיתוף לכל משתמש, משתמש בהגדרתקבוצה \"שיתוף-קבצים\".\n"
"ביכולתך להשתמש בעורך המשתמשים כדי להוסיף משתמשים לקבוצה זו."
-#: any.pm:1504
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "עליך להתנתק ולהתחבר שנית כדי שהשינויים יחולו."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "עליך להתנתק ולהתחבר שנית כדי שהשינויים יחולו."
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "אזור זמן"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "מהו אזור הזמן שלך?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "הגדרות תאריך, שעון ואזור-זמן"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "מה הזמן הנכון?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (שעון מערכת מכוון ל-UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (שעון מערכת מכוון לזמן המקומי)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "שרת NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "סנכרון זמן אוטומטי (שימוש ב-NTP)"
@@ -1058,7 +1058,7 @@ msgid "Domain Admin Password"
msgstr "סיסמת מנהל המתחם"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1073,49 +1073,49 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "מנהל אתחול 'לילו' עם תפריט טקסט"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "מנהל אתחול 'גראב' עם תפריט גרפי"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "מנהל אתחול 'גראב' עם תפריט טקסט"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "אין מספיק מקום ב-/boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "אי אפשר להתקין את מנהל האתחול על המחיצה %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "יש צורך בעדכון תצורת טוען המערכת שלך מאחר ושונו מספרי מחיצות"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1124,7 +1124,7 @@ msgstr ""
"אין אפשרות להתקין את טוען המערכת באופן תקין. עליך להפעיל את המערכת באופן "
"rescue ולבחור \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "התקנה חוזרת של מנהל האתחול"
@@ -1241,7 +1241,7 @@ msgstr "סיום"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1265,7 +1265,7 @@ msgstr "שם האתר חייב להתחיל בhttp:// או בhttps://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "אזהרה"
@@ -2300,7 +2300,7 @@ msgstr "חפש שרתים חדשים"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "יש צורך להתקין את החבילה %s. האם ברצונך להתקינה?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "אין אפשרות להתקין את החבילה %s !"
@@ -2310,17 +2310,17 @@ msgstr "אין אפשרות להתקין את החבילה %s !"
msgid "Mandatory package %s is missing"
msgstr "נדרשת החבילה %s אך היא חסרה"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "החבילות הבאות יותקנו:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "מתקין חבילות..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "מסיר חבילות..."
@@ -4742,7 +4742,7 @@ msgstr "זמביה"
msgid "Zimbabwe"
msgstr "זימבבואה"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "ברוך בואך ל-%s"
@@ -4768,7 +4768,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "מנהל האתחול אינו יכול לעבוד עם boot/ על מספר חלקים פיזיים"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4781,8 +4781,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"מבוא\n"
"\n"
@@ -4791,7 +4790,8 @@ msgstr ""
"לא מוגבלים ל- אוסף התכנות, שיטות, חוקים ומסמכים הנוגעים למערכת ההפעלה ולשאר "
"המרכיבים של מנדריבה לינוקס."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4826,7 +4826,8 @@ msgstr ""
"את זכויותיך בכפוף לרישיון זה.\n"
"עם ביטול הרישוי, עליך להשמיד באופן מיידי את כל העותקים של מוצרי התכנה."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4897,7 +4898,8 @@ msgstr ""
"החוקים המקומיים.\n"
"הגבלת אחריות זו, כוללת, בין היתר, מרכיבי הצפנה חזקה הכלולים במוצרי התכנה."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4930,7 +4932,8 @@ msgstr ""
"חברת Mageia\n"
"כפוף לרישיון מיוחד. עליך לעיין בתיעוד למידע נוסף בנידון."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4955,7 +4958,8 @@ msgstr ""
"שמורים של חברת\n"
"Mageia"
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5001,8 +5005,7 @@ msgstr ""
"המבצעים התקנה בעברית ו/או משתמשים בתרגומים לעברית שבוצעו על ידי מתרגמי הפצת "
"מנדריבה לינוקס לעברית."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5022,7 +5025,7 @@ msgstr ""
"ידוע לך האם פטנט מסויים תקף לגבייך, עליך לבדוק את החוקים המקומיים."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index 420a26861..7fc5b1e65 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-hi\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2004-04-04 21:54+0530\n"
"Last-Translator: धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>\n"
"Language-Team: हिन्दी (Hindi) <dysxhi@yahoo.co.in>\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "कृपया प्रतीक्षा करें"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "बूटलोडर का संसाधन प्रगति पर है"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -40,12 +40,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "बूटलोडर का संसाधन असफ़ल । निम्नलिखित त्रुटि उत्पन्न हो गयी है:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -61,7 +61,7 @@ msgstr ""
"और इस निर्देश को इन्टर करें: setenv boot-device %s,\\\\:tbxi और फ़िर\n"
"टाइप करें: shut-down । आपके आगामी बूट पर आप बूटलोडर प्रॉम्ट को देख सकेगें ।"
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -76,268 +76,268 @@ msgstr ""
"\n"
"आप किस ड्राइव से बूट करते है?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "बूटलोडर का संसाधन प्रगति पर है"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "बूटलोडर को आप कहाँ संसाधित करना चाहते है ?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "ड्राइव का प्रथम सेक्टर (मास्टर बूट रिकार्ड)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "ड्राइव का प्रथम सेक्टर (मास्टर बूट रिकार्ड)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "रूट विभाजन के प्रथम सेक्टर"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "फ़्लापी पर"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "छोड़े"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "बूट शैली संरचना"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "बूटलोडर के मुख्य विकल्प"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "बूटलोडर"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "उपयोगार्थ बूटलोडर"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "बूट उपकरण"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "डिफ़ाल्ट प्रतिबिंब को बूट करने के पूर्व देरी"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "ऐसीपीआई शक्तियुक्त बनायें"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ऐसीपीआई शक्तियुक्त बनायें"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ऐसीपीआई शक्तियुक्त बनायें"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ऐसीपीआई शक्तियुक्त बनायें"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "सुरक्षा"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "कूट-शब्द"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "कूटशब्द आपस में नहीं मिलते है"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "कृपया पुनः प्रयास करें"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "आरोह बिन्दु %s के लिए आप एक गूढ़-लिखित संचिका तंत्र का उपयोग नहीं कर सकते है"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "कूट-शब्द (पुनः बतायें)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "/tmp निर्देशिका को प्रत्येक बूट के समय साफ़ करें"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "आरम्भिक संदेश"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "मुक्त फ़र्मवेयर देरी"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "कर्नल बूट की समय-सीमा समाप्त"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "सीडीबूट को सक्रिय किया जायें?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "बूट के लिए समर्थ?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "डिफ़ाल्ट संचालन-तंत्र?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "प्रतिबिंब"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "रूट"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "जोड़ना"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "विडियो विधा"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "इनिटआरडी"
-#: any.pm:558
+#: any.pm:557
#, fuzzy, c-format
msgid "Network profile"
msgstr "नयी प्रोफ़ाइल..."
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "लेबिल"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "डिफ़ाल्ट"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "कोई विडियो नहीं"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "शून्य लेबिल की अनुमति नहीं है"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "आपको एक कर्नल प्रतिबिंब को बताना चाहिए"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "आपको एक रूट विभाजन को बताया चाहिए"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "यह लेबिल पहिले से उपयोग में है"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "किस प्रकार की प्रविष्टी को आप जोड़ना चाहता है?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "लिनक्स"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "अन्य संचालन-तंत्र (सन संचालन-तंत्र...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "अन्य संचालन तंत्र (मैक संचालन तंत्र...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "अन्य संचालन तंत्र (विण्डो...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "बूट शैली संरचना"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -346,198 +346,198 @@ msgstr ""
"आपके बूट मीनू में अभी तक यह प्रविष्टीयां है । \n"
"आप अतिरिक्त प्रविष्टीयों का निर्माण या वर्तमान प्रविष्टीयों को परिवर्तित कर सकते है ।"
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "एक्स कार्यक्रमों तक पहुँच"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "आरपीएम औज़ारों तक पहुँच"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "\"su\" को अनुमति"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "प्रबंधकीय संचिकाओं तक पहुँच"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "नेटवर्क औज़ारों तक पहुँच"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "संकलन औज़ारों तक पहुँच"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s को पहिले से ही जोड़ा जा चुका है)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "कृपया एक उपयोगकर्ता नाम बतायें"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "उपयोगकर्ता के नाम में सिर्फ़ अंग्रेजी के छोटे शब्द, संख्यायें, `-' और `_' होना चाहिए"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "उपयोगकर्ता नाम काफ़ी लंबा है"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "यह उपयोगकर्ता नाम पहिले से विद्यमान है"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "उपयोग-कर्ता पहचान संख्या"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "समूह पहचान संख्या"
-#: any.pm:895
+#: any.pm:894
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s विकल्प को एक संख्या होना चाहिए !"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "उपयोगकर्ता का नाम"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "महा-उपयोगकर्ता कूट-शब्द को निर्धारित करें"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"एक उपयोगकर्ता को बतायें\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "आईकॉन"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "वास्तविक नाम"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "संत्र-आरम्भ नाम"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "कोश"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "कृपया प्रतीक्षा करें, माध्यम को जोड़ा जा रहा है..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "स्वतः संत्र-आरम्भ"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"मै आपके कम्प्यूटर को एक उपयोगकर्ता के लिए स्वतः ही संत्र-आरम्भ करने के लिए स्थापित कर सकता "
"हूँ ।"
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "क्या आप इस लक्षण का उपयोग करना चाहते है?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "डिफ़ाल्ट उपयोगकर्ता का चयन:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "चलाने के लिए विण्डो प्रबंधक का चयन करे:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, fuzzy, c-format
msgid "Release Notes"
msgstr "संस्मरण: "
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "बन्द"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "अनुज्ञापत्र एकरारनामा"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "निकास"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "कया आपके पास एक और है ?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "स्वीकार"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "अस्वीकृत"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "कृपया उपयोग में लायी जाने वाली एक भाषा का चयन करें ।"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -548,82 +548,82 @@ msgstr ""
"का चयन करें जिसे आप संसाधन करना चाहते है । जब आपका संसाधन समाप्त हो\n"
"जायेगा और जब आप अपने तंत्र को पुनः आरम्भ करेगें, तो ये उपलब्ध हो जायेगी ।"
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "सभी भाषायें"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "सभी भाषायें"
-#: any.pm:1192
+#: any.pm:1191
#, fuzzy, c-format
msgid "Language choice"
msgstr "मैनुअल पसन्द"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "देश / क्षेत्र"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "कृपया अपने देश का चयन करें ।"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "यह है उपलब्ध देशों की सम्पूर्ण सूची"
-#: any.pm:1250
+#: any.pm:1249
#, fuzzy, c-format
msgid "Other Countries"
msgstr "दूसरे पोर्ट"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "उन्नत"
-#: any.pm:1256
+#: any.pm:1255
#, fuzzy, c-format
msgid "Input method:"
msgstr "नेट विधि:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "कुछ नहीं"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "कोई सहभाजिता नहीं"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "सभी उपयोगकर्ताओं को अनुमति"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "इच्छानुसार"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -638,21 +638,21 @@ msgstr ""
"\n"
"\"कस्टम\" एक प्रत्येक-उपयोगकर्ता ग्रॉन्युलॉरटि की आज्ञा देता है।\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -660,12 +660,12 @@ msgstr ""
"एन०एफ़०एस० या सॉबा का उपयोग करके आप एक्सपोर्ट कर सकते है । कृपया चयन करें आप किस का "
"उपयोग करना चाहते है ।"
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "यूज़रड्रैक को आरम्भ करें"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -674,7 +674,7 @@ msgstr ""
"प्रत्येक-उपयोगकर्ता सहभाजिता \"संचिकासाझा\" समूह का उपयोग करती है।\n"
"आप यूजरड्रैक का उपयोग करके एक उपयोगकर्ता को इस समूह में जोड़ सकते है।"
-#: any.pm:1504
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -682,48 +682,48 @@ msgid ""
msgstr ""
"परिवर्तनों को प्रभाव में लाने के लिए, आपको संत्र-समाप्त करके पुन: संत्र-आरम्भ करना होगा"
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"परिवर्तनों को प्रभाव में लाने के लिए, आपको संत्र-समाप्त करके पुन: संत्र-आरम्भ करना होगा"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "समय क्षेत्र"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "आपका समय-क्षेत्र क्या है?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "हार्डवेयर घड़ी को जी०एम०टी० पर स्थापित कर दिया गया है"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "हार्डवेयर घड़ी को जी०एम०टी० पर स्थापित कर दिया गया है"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "एन०टी०पी० सर्वर"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr " स्वचालित समय एकसारीकरण (एनटीपी का उपयोग करते हुए)"
@@ -1046,7 +1046,7 @@ msgid "Domain Admin Password"
msgstr "डोमेन प्रबंधन कूट-शब्द"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1061,42 +1061,42 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "पाठ्य मीनू के साथ लिलो"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "याबूट"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "एस०आई०एल०ओ०"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "/boot में इतना स्थान नहीं है"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "एक %s विभाजन पर आप बूट-लोडर को संसाधित नहीं कर सकते है\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1105,7 +1105,7 @@ msgstr ""
"आपकी बूटलोडर संरचना को अपडेट करना आवश्यक है क्योंकि विभाजन कोनयी क्रम-संख्या दी जा चुकी "
"है"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1114,7 +1114,7 @@ msgstr ""
"बूटलोडर को भली-भांति संसाधित नहीं किया जा सका । आपको बूट को बचाव विधा में करना होगा "
"और\"%s\" का चयन करना होगा"
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "बूटलोडर को पुनः संसाधित करना"
@@ -1234,7 +1234,7 @@ msgstr "किया गया"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1258,7 +1258,7 @@ msgstr "यू०आर०एल० का आरम्भ http:// या https:
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "चेतावनी"
@@ -2293,7 +2293,7 @@ msgstr "नये सर्वरों की खोज"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s पैकेज को संसाधन करने की आवश्यकता है । क्या आप इसे संसाधित करना चाहते है?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "%s पैकेज का संसाधन नहीं हो सका"
@@ -2303,17 +2303,17 @@ msgstr "%s पैकेज का संसाधन नहीं हो सक
msgid "Mandatory package %s is missing"
msgstr "आदेशात्मक पैकेज %s विलुप्त है"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "निम्नलिखित पैकेजों का संसाधन करना आवश्यक है:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "पैकेजों का संसाधन किया जा रहा है..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "पैकेजों को हटाया जा रहा है ..."
@@ -4748,7 +4748,7 @@ msgstr "जाम्बिया"
msgid "Zimbabwe"
msgstr "ज़िम्बावे"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "%s में स्वागत"
@@ -4774,7 +4774,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4787,8 +4787,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"भूमिका\n"
"\n"
@@ -4800,7 +4799,8 @@ msgstr ""
"to the operating \n"
"system and the different components of the Mageia distribution."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4842,7 +4842,8 @@ msgstr ""
"copies of the \n"
"Software Products."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4922,7 +4923,8 @@ msgstr ""
"cryptography components \n"
"included in the Software Products."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4961,7 +4963,8 @@ msgstr ""
"documentation for \n"
"further details."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4985,7 +4988,8 @@ msgstr ""
"parts, by all means and for all purposes.\n"
"\"Mageia\" and associated logos are trademarks of Mageia"
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5017,8 +5021,7 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact Mageia"
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5037,7 +5040,7 @@ msgstr ""
"एक पेटेंट आप पर लागू होता है तो अपने स्थानीय कानून की जाँच करें।"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 81e4db391..c32efbf70 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2005-01-04 21:25+CET\n"
"Last-Translator: auto\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -16,21 +16,21 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;;\n"
"X-Generator: TransDict server\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Molim pričekajte"
-#: any.pm:262
+#: any.pm:261
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Bootloader instalacija"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -41,13 +41,13 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Instalacija bootloader-a nije uspjela. Prijavljena je slijedeća grešska:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -64,7 +64,7 @@ msgstr ""
" Tada napišite: shut-down\n"
"Pri slijedećem podizanju trebali biste vidjeti prompt bootloadera."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -79,269 +79,269 @@ msgstr ""
"\n"
"Sa kojeg diska želite podizati?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Bootloader instalacija"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite instalirati bootloader?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prvi sektor pogona (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor pogona (MBR)"
-#: any.pm:373
+#: any.pm:372
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Prvi sektor boot particije"
-#: any.pm:375
+#: any.pm:374
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Spremi na disketu"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Preskoči"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Postava Stila Podizanja"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Glavne postavke bootloadera"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Program za pokretanje sustava"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Koristiti Bootloader"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Boot uređaj"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Odgoda prije bootiranja uobičajenog imagea"
-#: any.pm:441
+#: any.pm:440
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "Omogući CD podizanje?"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Omogući CD podizanje?"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Omogući CD podizanje?"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Omogući CD podizanje?"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurnost"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Lozinka"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"Ne možete koristiti enkriptirani datotečni sustav za točku montiranja %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Lozinka (provjera)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Očisti /tmp na svakom podizanju"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Init poruka"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Pauza Otvorenog Firmware-a"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Vrijeme čekanja podizanja kernela"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Omogući CD podizanje?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Omogući podizanje?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Uobičajeni OS?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Slika"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Korijen"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Dodaj"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Video mod"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, fuzzy, c-format
msgid "Network profile"
msgstr "Mrežni međusklop"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Oznaka"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Uobičajeno"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NemaVidea"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate odrediti sliku kernela"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Morate odrediti root particiju"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka već postoji"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa želite dodati"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Drugi OS (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Drugi OS (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Drugi OS (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Postava Stila Podizanja"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -350,198 +350,198 @@ msgstr ""
"Ovo su trenutni zapisi.\n"
"Možete dodati još koji ili urediti postojeći."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: any.pm:872
+#: any.pm:871
#, fuzzy, c-format
msgid "access to network tools"
msgstr "pristup rpm alatima"
-#: any.pm:873
+#: any.pm:872
#, fuzzy, c-format
msgid "access to compilation tools"
msgstr "pristup rpm alatima"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(već postoji %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisničko ime"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime može sadržavati samo mala slova, brojeve, `-' i `_'"
-#: any.pm:887
+#: any.pm:886
#, fuzzy, c-format
msgid "The user name is too long"
msgstr "Ovaj korisnik već postoji"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Ovaj korisnik već postoji"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Korisnički ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID grupe"
-#: any.pm:895
+#: any.pm:894
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opcija %s mora biti broj!"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "Korisničko ime"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Podešavanje root lozinke"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Unesite korisnika\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Sličica"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Puno ime"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Korisnička oznaka"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Ljuska"
-#: any.pm:972
+#: any.pm:971
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "sačekajte tijekom ttmkfdira..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Auto-prijava"
-#: any.pm:1005
+#: any.pm:1004
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Mogu podesiti da se vaše računalo automatski prijavi kao jedan korisnik.\n"
"Da li želite koristiti tu pogodnost?"
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Da li želite koristiti aboot?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite uobičajenog korisnika:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji želite pokrenuti:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Molim pričekajte"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Zatvori"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Licencni dogovor"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Izlaz"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Da li imate još koji?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Prihvati"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Odbij"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Molim izaberite jezik koji želite koristiti"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -549,82 +549,82 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Možete izabrati druge jezike koji će biti dostupni nakon instalacije"
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Svi jezici"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Svi jezici"
-#: any.pm:1192
+#: any.pm:1191
#, fuzzy, c-format
msgid "Language choice"
msgstr "Myanmar"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Država / Regija"
-#: any.pm:1247
+#: any.pm:1246
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "Molim izaberite koju vrstu miša koristite"
-#: any.pm:1249
+#: any.pm:1248
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "Ovdje je cijeli popis raspoloživih tipkovnica"
-#: any.pm:1250
+#: any.pm:1249
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Iskušaj portove"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "&Napredno"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Nijedan"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Prilagođeno"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -641,32 +641,32 @@ msgstr ""
"\n"
"\"Proizvoljno\" će omogućiti dozvoljavanje po korisniku.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Možete izvesti koristeći NFS ili Sambu. Koji od njih želite"
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -675,54 +675,54 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"Možete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Vremenska zona"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Vaš hardverski sat namješten je na GMT"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Vaš hardverski sat namješten je na GMT"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Poslužitelj"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristeći NTP)"
@@ -1051,7 +1051,7 @@ msgstr "Zaporka administratora domene"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, fuzzy, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1066,56 +1066,56 @@ msgstr ""
"pricekajte %d sekundi za uobicajeno podizanje.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "nema dovoljno mjesta u /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Instaliraj bootloader"
@@ -1228,7 +1228,7 @@ msgstr "Gotovo"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1252,7 +1252,7 @@ msgstr "URL mora početi sa http:// ili https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Upozorenje"
@@ -2287,7 +2287,7 @@ msgstr "Poslužitelji za pretraživanje"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba instalirati. Da li ga želite instalirati?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Instaliram paket %s"
@@ -2297,17 +2297,17 @@ msgstr "Instaliram paket %s"
msgid "Mandatory package %s is missing"
msgstr "Nužni paket %s nedostaje"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "Slijedeći paketi će biti instalirani"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Uklanjanje paketa..."
@@ -4688,7 +4688,7 @@ msgstr "Zambija"
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Dobrodošli u %s"
@@ -4714,7 +4714,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4727,8 +4727,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Uvod\n"
"\n"
@@ -4740,7 +4739,8 @@ msgstr ""
"operativni\n"
"sustav i različite komponente Mageia distribucije."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4781,7 +4781,8 @@ msgstr ""
"Licencom. Uslijed uništenja licence, morate odmah unišititi sve kopije \n"
"Software-skog Produkta."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4860,7 +4861,8 @@ msgstr ""
"kriptografske komponente \n"
"uključene u Software-ski Produkt."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4898,7 +4900,8 @@ msgstr ""
"dokumentaciju za \n"
"više detalja."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4920,10 +4923,10 @@ msgstr ""
"Mageia zadržava svoje pravo za izmjenu ili prilagođavanje Software-skog "
"Produkta, kao cijelinu ili u\n"
"dijelovima, u svim slučajevima za sve namjene.\n"
-"\"Mageia\" i pripadajući logoi su zaštićeni prodajni znaci "
-"Mageia "
-
+"\"Mageia\" i pripadajući logoi su zaštićeni prodajni znaci Mageia "
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4953,8 +4956,7 @@ msgstr ""
"izlaz, spor će biti predan odgovarajućem Sudu u Parizu - Francuska.\n"
"Za bilo kakva pitanja o ovom dokumentu, molimo kontaktirajte Mageia S.A."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4967,7 +4969,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index 0382649da..8d4df4fa4 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-2010.1\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2010-06-20 19:10+0100\n"
"Last-Translator: Gergely Lónyai <aleph@mandriva.org>\n"
"Language-Team: Hungarian <aleph@mandriva.org>\n"
@@ -22,21 +22,21 @@ msgstr ""
"X-Poedit-Country: HUNGARY\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Kis türelmet..."
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "A rendszerindító program telepítése folyamatban"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -53,12 +53,12 @@ msgstr ""
"\n"
"Szeretné folytatni a kötetazonosító módosítását?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "A rendszerbetöltő telepítése nem sikerült. A hiba a következő:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -75,7 +75,7 @@ msgstr ""
" Majd gépelje be ezt: shut-down\n"
"A következő indítás után meg kell jelennie a promptnak."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -92,268 +92,268 @@ msgstr ""
"\n"
"Melyik meghajtóról végzi a rendszer indítását?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Rendszerindító telepítése"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hová kerüljön a rendszerindító program (bootloader)?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "A %s lemezmeghajtó legelső szektora (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "A lemezmeghajtó legelső szektora (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "A gyökérpartíció első szektora"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Hajlékonylemez"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Kihagyás"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "A rendszerindítás beállításai"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Rendszerindítási beállítások"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Rendszerbetöltő"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "A használni kívánt rendszerbetöltő"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Rendszerindítási eszköz"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Fő beállítások"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Várakozási idő az alapértelmezett rendszer betöltése előtt"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "ACPI bekapcsolása"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "SMP bekapcsolása"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "APIC bekapcsolása"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Helyi APIC bekapcsolása"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Biztonság"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Jelszó"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "A jelszavak nem egyeznek"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Próbálja meg újra"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nem használható jelszó ezzel: %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Jelszó (még egyszer)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "A /tmp törlése minden újraindulásnál"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Indítási üzenet"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Késleltetés Open Firmware-nél"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Várakozási idő rendszerindításkor"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "CD-ről történhessen rendszerindítás?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "OF-ről történhessen rendszerindítás?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Az alapértelmezett op. rendszer?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Indítófájl"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Gyökér"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Hozzáfűzés"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen hozzáfűzés"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Kötelező a jelszó a rendszerindításhoz"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Képernyőmód"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Indítási RAM diszk"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Hálózati profil"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Címke"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Alapértelmezés"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "A címke nem lehet üres"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Meg kell adni egy kernelfájlt"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Meg kell adni egy gyökérpartíciót"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Már van ilyen nevű címke"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Milyen bejegyzést szeretne felvenni?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Egyéb op. rendszer (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Egyéb op. rendszer (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Egyéb op. rendszer (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Rendszerindító beállítása"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -362,47 +362,47 @@ msgstr ""
"Itt láthatók az indítási menü jelenlegi bejegyzései.\n"
"Új bejegyzések vehetők fel, illetve módosíthatók a meglevők."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "hozzáférés az X-es programokhoz"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "hozzáférés az RPM eszközökhöz"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "\"su\" engedélyezése"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "hozzáférés az adminisztrációs fájlokhoz"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "hozzáférés a hálózati eszközökhöz"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "hozzáférés a fordítási eszközökhöz"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(már fel van véve: %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Adjon meg egy felhasználónevet"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -411,149 +411,149 @@ msgstr ""
"A felhasználónévnek kötelező kisbetűvel kezdődnie, és csak kisbetűket, "
"számokat, `-' és `_' jeleket tartalmazhat"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "A felhasználónév túl hosszú"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Már létezik ilyen felhasználónév"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Felh.-azonosító"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Csoportazonosító"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "A(z) \"%s\" értéknek számnak kell lennie"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "A(z) \"%s\" értéknek 500-nál nagyobbnak kell lennie. Mégis elfogadja?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Felhasználó kezelés"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Vendég hozzáférés engedélyezése"
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "A rendszergazdai (root) jelszó beállítása"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Adjon meg egy felhasználót"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Valódi név"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Bejelentkezési név"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Parancsértelmező"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Adatforrások felvétele..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatikus bejelentkezés"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Beállítható, hogy rendszerindításkor egy felhasználó automatikusan "
"bejelentkezzen."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "A lehetőség használata"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Adja meg az alapértelmezett felhasználónevet:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Válassza ki a használni kívánt ablakkezelőt:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Verzióinformáció"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Bezárás"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Licencegyezmény"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Kilépés"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Elfogadja ezt a licencet?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Elfogadom"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Nem fogadom el"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Válasszon nyelvet"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -564,82 +564,82 @@ msgstr ""
"mely nyelveket szeretné telepíteni. Ezek a telepítés befejeződése\n"
"utáni újraindítást követően lesznek elérhetők."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Több nyelv"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Régebbi kompatibilitási (nem UTF-8) kódolás"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Az összes nyelv"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Nyelvválasztás"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Ország/terület"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Válassza ki az országot"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Itt található az elérhető országok listája"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Egyéb országok"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Speciális"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Beviteli módszer:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Egyik sem"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Nincs megosztás"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Az összes felhasználó engedélyezése"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Egyéni"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -657,7 +657,7 @@ msgstr ""
"\n"
"Az \"Egyéni\" opció használatával felhasználónkénti beállítás lehetséges.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -666,7 +666,7 @@ msgstr ""
"NFS: a hagyományos UNIX-os fájlmegosztási rendszer - Macintosh és Windows "
"alatt kevésbé támogatott."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -674,7 +674,7 @@ msgid ""
msgstr ""
"SMB: Windows, Mac OS X és Linux alatt használatos fájlmegosztási módszer."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -682,12 +682,12 @@ msgstr ""
"Exportálás NFS-sel vagy Sambával végezhető. Válassza ki, melyiket kívánja "
"használni."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake indítása"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -696,7 +696,7 @@ msgstr ""
"A felhasználónkénti megosztás a \"fileshare\" csoportot használja.\n"
"A UserDrake programmal lehet felhasználót felvenni ebbe a csoportba."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -705,47 +705,47 @@ msgstr ""
"A módosítások érvénybe lépéséhez ki kell lépni, majd ismét belépni. "
"Kattintson az OK gombra az azonnali kilépéshez."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "A módosítások érvénybe lépéséhez ki kell lépni, majd ismét belépni"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Időzóna"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Melyik időzónát választja?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dátum-, óra- és időzóna-beállítások"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Melyik a legmegfelelőbb idő?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (a gép órája az UTC időt mutatja)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (a gép órája a helyi időt mutatja)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP kiszolgáló"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatikus időszinkronizáció (NTP-vel)"
@@ -1086,7 +1086,7 @@ msgstr "Tartományadminisztrátor jelszava"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1101,42 +1101,42 @@ msgstr ""
"amig az alapertelmezett elindul.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO, szöveges menüvel"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB, grafikus menüvel"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB, szöveges menüvel"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "nincs elég hely a /boot partíción"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "A rendszerindító program nem tehető %s partícióra\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1145,7 +1145,7 @@ msgstr ""
"A rendszerindító beállításait frissíteni kell, mivel a partíciók számozása "
"módosult."
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1154,7 +1154,7 @@ msgstr ""
"A rendszerindító nem telepíthető. Indítsa el a rendszert egy helyreállítási "
"lemezzel, majd válassza ezt: \"%s\"."
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Rendszerindító újratelepítése"
@@ -1272,7 +1272,7 @@ msgstr "Kész"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1296,7 +1296,7 @@ msgstr "Az URL-nek http:// vagy https:// kezdetűnek kell lenni"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Figyelmeztetés"
@@ -2345,7 +2345,7 @@ msgstr "Új kiszolgálók keresése"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "A(z) %s csomagot telepíteni kell. Szeretné telepíteni?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Nem sikerült telepíteni a(z) %s csomagot."
@@ -2355,17 +2355,17 @@ msgstr "Nem sikerült telepíteni a(z) %s csomagot."
msgid "Mandatory package %s is missing"
msgstr "Hiányzik a(z) \"%s\" nevű kötelező csomag"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "A következő csomagokat szükséges telepíteni:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Csomagok telepítése..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Csomagok eltávolítása..."
@@ -4826,7 +4826,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Üdvözöljük - %s"
@@ -4856,7 +4856,7 @@ msgstr ""
"fizikai köteten helyezkedik el"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, fuzzy, c-format
msgid ""
"Introduction\n"
@@ -4869,8 +4869,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Bevezetés\n"
"\n"
@@ -4883,7 +4882,8 @@ msgstr ""
"dokumentáció a Mageia által \n"
"licencelt és támogatott termékekkel együtt.\n"
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4926,7 +4926,8 @@ msgstr ""
"azonnali hatállyal meg kell semmisítenie a Szoftvertermékek összes, \n"
"Ön által birtokolt példányát."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -5013,7 +5014,8 @@ msgstr ""
"sem közvetett, sem közvetlen mértékben, abban az esetben a fenti korlátozás "
"nem érvényes."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5048,7 +5050,8 @@ msgstr ""
"A Mageia által írt dokumentációs anyagokra egy speciális licenc vonatkozik.\n"
"További részletek a dokumentációban."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5072,7 +5075,8 @@ msgstr ""
"bármilyen célra.\n"
"A \"Mageia\" és az azokhoz tartozó logók a Mageia védjegyei."
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5105,8 +5109,7 @@ msgstr ""
"Ha jelen dokumentummal kapcsolatban kérdése van, vegye fel a kapcsolatot a "
"Mageia céggel."
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5126,7 +5129,7 @@ msgstr ""
"érvényes törvényeket."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 2f41fc532..4b63b8537 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -15,7 +15,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2007-10-27 19:26+0700\n"
"Last-Translator: Willy Sudiarto Raharjo <willysr@gmail.com>\n"
"Language-Team: Indonesia <mdk-id@yahoogroups.com>\n"
@@ -25,21 +25,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.6\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Harap tunggu"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Proses installasi Bootloader"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -57,12 +57,12 @@ msgstr ""
"\n"
"Beri Volume ID baru?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Installasi bootloader gagal. Terjadi kesalahan berikut:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -80,7 +80,7 @@ msgstr ""
" kemudian ketikkan: shut-down\n"
"Pada boot berikutnya, Anda akan melihat prompt bootloader."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -95,268 +95,268 @@ msgstr ""
"\n"
"Pada drive mana Anda melakukan booting?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Proses installasi Bootloader"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Dimana Anda akan menginstall Bootloader?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Sektor pertama pada drive (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Sektor pertama pada drive (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Sektor pertama pada partisi root"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Pada Disket"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Lewati"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfigurasi Gaya Boot"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Opsi utama Bootloader"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader yang hendak digunakan"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Perangkat boot"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Opsi utama"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Jeda sebelum boot ke image default"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Aktifkan ACPI"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Aktifkan ACPI"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Aktifkan APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Aktifkan APIC Lokal"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Keamanan"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Kata sandi"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Kata sandi tidak cocok"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Silahkan coba lagi"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Anda tidak dapat menggunakan sebuah kata sandi dengan %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Kata sandi (lagi)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Hapus /tmp setiap boot"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Pesan Init"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Jeda Open Firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Timeout Booting Kernel"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Aktifkan boot dari CD?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Aktifkan boot dari OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "OS Standar?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Tambahkan"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Tambahkan Xen"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Mode video"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Profil Jaringan"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standar"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Label kosong tidak diperbolehkan"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Anda harus menentukan image kernel"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Anda harus menentukan partisi root"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Label ini sudah dipakai"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Tipe entri mana yang hendak ditambahkan?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "OS Lain (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "OS Lain (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "OS Lain (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Konfigurasi Gaya Boot"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -365,194 +365,194 @@ msgstr ""
"Ini adalah daftar pada menu boot Anda yang ada saat ini.\n"
"Anda boleh menambah atau mengubah yang sudah ada."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "akses ke program X"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "akses ke aplikasi rpm"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "izinkan \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "akses ke file administratif"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "akses ke aplikasi jaringan"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "akses ke aplikasi kompilasi"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s sudah ditambahkan)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Silakan berikan nama pengguna"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Nama pengguna hanya boleh terdiri dari huruf, angka, `-' dan `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Nama pengguna terlalu panjang"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Pengguna ini sudah ada sebelumnya"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID Pengguna"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID Grup"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s harus sebuah angka"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s seharusnya diatas 500. Terima apa adanya?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Manajemen pengguna"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Tentukan kata sandi root"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Masukkan pengguna"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Nama asli"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Nama login"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Harap tunggu, menambahkan media..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Login otomatis"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Komputer dapat diset agar secara otomatis login dengan satu pengguna."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Gunakan fitur ini"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Pilih pengguna standar:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Pilih window manajer yang akan dijalankan:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Catatan Rilis"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Tutup"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Persetujuan Lisensi"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Keluar"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Apakah Anda punya lagi?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Terima"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Tolak"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Pilihlah bahasa yang akan dipakai"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -563,82 +563,82 @@ msgstr ""
"bahasa yang akan diinstall. Bahasa pilihan akan ditampilkan\n"
"setelah proses installasi selesai dan Anda merestart sistem Anda."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Banyak bahasa"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Enkoding kompatibilitas lama (non UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Semua bahasa"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Pilihan bahasa"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Negara / Wilayah"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Pilih negara Anda"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Berikut adalah daftar lengkap negara yang tersedia"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Negara lain"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Tingkat mahir"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Metode Input:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Tak ada"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Tanpa sharing"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Izinkan semua pengguna"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Kebiasaan"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -653,7 +653,7 @@ msgstr ""
"\n"
"\"Custom\" memungkinkan tuning masing-masing pengguna.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -661,7 +661,7 @@ msgid ""
msgstr ""
"NFS: Sistem file sharing tradisional Unix, dengan dukungan Windows dan Mac"
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -670,7 +670,7 @@ msgstr ""
"SMB: Sistem file sharing yang digunakan Windows, Mac OS X dan sistem Linux "
"modern"
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -678,12 +678,12 @@ msgstr ""
"Anda dapat mengekspor menggunakan NFS atau SMB. Pilih yang hendak Anda "
"gunakan."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Jalankan userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -692,54 +692,54 @@ msgstr ""
"Sharing setiap user menggunakan grup \"fileshare\". \n"
"Anda menggunakan userdrake untuk menambah user pada grup ini."
-#: any.pm:1504
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "Anda harus log out dan kembali agar perubahan berlaku"
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Anda harus log out dan kembali agar perubahan berlaku"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Zona waktu"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Mana zone waktu Anda?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Setting Tanggal, Jam & Zona Waktu"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Kapan jam terbaik?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (jam perangkat keras diset ke UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (jam perangkat keras diset ke waktu lokal)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sinkronisasi waktu otomatis (menggunakan NTP)"
@@ -1076,7 +1076,7 @@ msgstr "Kata sandi Admin Domain"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1091,42 +1091,42 @@ msgstr ""
"tunggu untuk boot default.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO dengan menu teks"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB dengan menu grafis"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB dengan menu teks"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "tidak cukup ruang pada /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Anda tidak dapat menginstal bootloader pada partisi %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1134,7 +1134,7 @@ msgid ""
msgstr ""
"Konfigurasi bootloader Anda harus diupdate karena nomor partisi telah berubah"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1143,7 +1143,7 @@ msgstr ""
"Bootloader tidak bisa diinstall dengan benar. Anda harus melakukan boot "
"penyelamatan dan memilih \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Instal ulang Boot Loader"
@@ -1261,7 +1261,7 @@ msgstr "Selesai"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1285,7 +1285,7 @@ msgstr "URL harus dimulai dengan http:// atau https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Peringatan"
@@ -2324,7 +2324,7 @@ msgstr "Cari server baru"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s perlu diupgrade. Anda ingin instal?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Tidak bisa menginstall paket %s"
@@ -2334,17 +2334,17 @@ msgstr "Tidak bisa menginstall paket %s"
msgid "Mandatory package %s is missing"
msgstr "Paket wajib %s hilang"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Paket berikut perlu diinstal:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Menginstall paket..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Menghapus paket..."
@@ -4793,7 +4793,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"
@@ -4819,7 +4819,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Bootloader tidak bisa menangani /boot pada beberapa volume fisik"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4832,8 +4832,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Introduction\n"
"\n"
@@ -4845,7 +4844,8 @@ msgstr ""
"to the operating \n"
"system and the different components of the Mageia distribution."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4887,7 +4887,8 @@ msgstr ""
"copies of the \n"
"Software Products."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4967,7 +4968,8 @@ msgstr ""
"cryptography components \n"
"included in the Software Products."
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5006,7 +5008,8 @@ msgstr ""
"documentation for \n"
"further details."
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5030,7 +5033,8 @@ msgstr ""
"parts, by all means and for all purposes.\n"
"\"Mageia\" and associated logos are trademarks of Mageia"
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5062,8 +5066,7 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact Mageia"
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5082,7 +5085,7 @@ msgstr ""
"Anda."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index a9516200b..61def25be 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2009-03-27 10:46+0000\n"
"Last-Translator: Pjetur G. Hjaltason <pjetur@pjetur.net>\n"
"Language-Team: Icelandic <kde-isl@molar.is>\n"
@@ -22,21 +22,21 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Augnablik"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Er að setja upp ræsistjóra"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -53,12 +53,12 @@ msgstr ""
"\n"
"Breyta diskauðkenni?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Innsetning ræsiforrits brást sökum eftirfarandi villu:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -75,7 +75,7 @@ msgstr ""
" sláðu síðan inn: shut-down\n"
"Við næstu ræsingu þá ættir þú að sjá hvata-spurningu fra ræsi-forritinu."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -90,268 +90,268 @@ msgstr ""
"\n"
"Af hvaða disk ræsir þú?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Innsetning ræsistjóra"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hvar viltu setja ræsistjórann?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Fyrsta geira (MBR) á disk %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Á fyrsta geira disks (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Á fyrsta geira rótar-disksneiðar"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Á diskling"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Sleppa"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Uppsetning ræsistíls"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Aðalvalmöguleikar ræsiforrits"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Ræsistjóri"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Ræsiforrit sem á að nota"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Ræsitæki"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Aðalvalkostir"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Töf áður en sjálfgefin ræsing byrjar"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Virkja ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Virkja SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Virkja APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Virkja staðbundið APIC"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Öryggi"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Lykilorð"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Mismunandi lykilorð"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Reyndu aftur"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Þú getur ekki notað lykilorð með %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Lykilorð (aftur)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Hreinsa /tmp við hverja ræsingu"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Init skilaboð"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Biðtími Open Firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ræsibið kjarna"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Virkja CD ræsingu?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Virkja OF ræsingu?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Sjálfgefið stýrikerfi?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Ræsikjarni"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Rót"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Bæta við"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen append"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Skjáhamur"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Netsnið"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Auðkenni"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Sjálfgefið"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Auðkenni má ekki vera autt"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Þú verður að skilgreina ræsikjarna"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Þú verður að tilgreina rótar-disksneiðina"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Þetta auðkenni er nú þegar í notkun"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Hvers konar færslu viltu bæta við?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Öðru stýrikerfi (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Öðru stýrikerfi (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Öðru stýrikerfi (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Uppsetning ræsistíls"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -360,195 +360,195 @@ msgstr ""
"Hérna eru núverandi færslur í ræsivalmynd.\n"
"Þú getur bætt við fleirum eða breytt þessum."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "aðgengi að X forritum"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "aðgengi að rpm tólum"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "leyfa \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "aðgengi að stýrikerfisskrám"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "aðgengi að nettólum"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "aðgengi að þróunartólum"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s er nú þegar til)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Vinsamlega sláðu inn notandanafn"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Notandanafnið má bara innihalda litla stafi, tölustafi, `-' og `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Þetta notandanafn er of langt"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Þetta notandanafn er nú þegar til"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID notanda"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Hópnúmer"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "Valkostur %s verður að vera tala"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s ætti að vera yfir 500. Samþykkja samt?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Notandaumsýsla"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ákveða lykilorð kerfisstjóra (root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Skrá notanda"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Táknmynd"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Fullt nafn"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Notandanafn"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Skel"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Augnablik, bæti við miðli..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Skrá notanda sjálfkrafa inn"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ég get stillt tölvuna þína til að stimpla sjálfkrafa inn ákveðinn notanda."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Nota þennan eiginleika"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Veldu sjálfgefinn notanda:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Veldu gluggastjóra sem þú vilt nota:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Athugasemdir við útgáfu"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Loka"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Notkunarskilmálar"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Hætta"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Samþykkir þú þessa skilmála ?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Samþykkja"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Hafna"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Vinsamlega veldu tungumál sem á að nota"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -559,82 +559,82 @@ msgstr ""
"sem þú vilt setja upp stuðning fyrir. Þau verða tiltæk þegar\n"
"uppsetningu er lokið, og þú hefur endurræst kerfið."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Mörg tungumál"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Samhæfni við eldri (ekki UTF-8) kóðun"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Öll tungumál"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Tungumálaval"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Land / Svæði"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Veldu þér land"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hér er listi af tiltækum löndum"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Önnur lönd"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Ítarlegra"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Innsláttaraðferð:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Engin"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Engin miðlun"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Leyfa öllum notendum"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Sérsniðið"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -649,7 +649,7 @@ msgstr ""
"\n"
"\"Sérsniðið\" leyfir að stilla fyrir hvern notanda.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -658,7 +658,7 @@ msgstr ""
"NFS: algengt Unix net-skráamiðlunarkerfi, með minni stuðning á Mac og "
"Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -666,18 +666,18 @@ msgid ""
msgstr ""
"SMB: skráarkerfi notað af Windows, Mac OS X og mörgum nýlegum Linux kerfum."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Þú getur miðlað með NFS eða SMB. Veldu hvort þú vilt nota."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Ræsa userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -686,7 +686,7 @@ msgstr ""
"Netmiðlun einstakra notanda notar hópinn \"fileshare\". \n"
"Þú getur notað userdrake til að bæta notendum í þennan hóp."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -695,47 +695,47 @@ msgstr ""
"Þú þarft að skrá þig út og inn aftur til að breytingar taki gildi. Ýttu á "
"\"Í lagi\" til að skrá þig út núna."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Þú þarft að skrá þig út og inn aftur til að breytingar taki gildi"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Tímabelti"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Hvert er þitt tímabelti?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dagsetning, Tími og tímabelti"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Hvað er er besti tíminn?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (tölvuklukka stillt á UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (tölvuklukka stillt á staðartíma)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP þjónn"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sjálfvirk tímastilling (með NTP)"
@@ -1073,7 +1073,7 @@ msgstr "Lykilorð kerfisstjóra léns"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1088,42 +1088,42 @@ msgstr ""
"biddu eftir sjalfgefinni raesingu.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO með textavalmynd"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB með myndrænni valmynd"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB með texavalmynd"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "ekki nægilegt pláss í /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Þú getur ekki sett ræsistjórann á %s disksneiðina\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1132,7 +1132,7 @@ msgstr ""
"Þú verður að uppfæra stillingar ræsistjórans því disksneiðar hafa verið "
"endurnúmeraðar"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1141,7 +1141,7 @@ msgstr ""
"Ekki er hægt að setja ræsistjórann rétt upp. Þú verður að ræsa með "
"björgunardisk og velja \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Setja aftur inn ræsistjóra"
@@ -1258,7 +1258,7 @@ msgstr "Lokið"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1282,7 +1282,7 @@ msgstr "Slóðin verður að byrja á http:// eða https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Aðvörun"
@@ -2326,7 +2326,7 @@ msgstr "Leita að nýjum þjónum"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Þarf að setja inn pakkann %s. Viltu setja hann inn?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Gat ekki sett inn pakkann %s!"
@@ -2336,17 +2336,17 @@ msgstr "Gat ekki sett inn pakkann %s!"
msgid "Mandatory package %s is missing"
msgstr "Vantar nauðsynlegan pakka %s"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Eftirfarandi pakka þarf að setja inn:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Set inn pakka..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Fjarlægi pakka..."
@@ -4782,7 +4782,7 @@ msgstr "Sambía"
msgid "Zimbabwe"
msgstr "Simbave"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Velkomin(n) að %s"
@@ -4808,7 +4808,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Ræsistjórinn getur ekki unnið með /boot sem spannar marga diska"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, fuzzy, c-format
msgid ""
"Introduction\n"
@@ -4821,8 +4821,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Inngangur\n"
"\n"
@@ -4834,7 +4833,8 @@ msgstr ""
"mismunandi hlutum \n"
"Mageia dreifingarinnar.\n"
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4874,7 +4874,8 @@ msgstr ""
"Við lok þessa samnings, verður þú að eyðileggja öll afrit af Hugbúnaðar-"
"einingunum."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4951,6 +4952,8 @@ msgstr ""
"en eru ekki takmarkaðar við dulritunar-einingar sem eru innifaldar í "
"Hugbúnaðar-einingum."
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4986,6 +4989,8 @@ msgstr ""
"eru af \n"
"fylgja sérstöku leyfi. Vinsamlega lesið vandlega þau leyfi."
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5004,9 +5009,11 @@ msgstr ""
"með höfundaréttarlögum \n"
"eins og þau eiga við um hugbúnað. Mageia tekur sér rétt til að breyta eða "
"aðlaga \n"
-"Hugbúnaðar-einingar, að hluta eða í heild, með öllum og til \"Mageia\" "
-"og tengd vörumerki eru skráð vörumerki Mageia "
+"Hugbúnaðar-einingar, að hluta eða í heild, með öllum og til \"Mageia\" og "
+"tengd vörumerki eru skráð vörumerki Mageia "
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5036,7 +5043,7 @@ msgstr ""
"dómstóla í París - Frakklandi.\n"
"Öllum spurningum um þennann samning ætti að vera beint til Mageia"
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5055,7 +5062,7 @@ msgstr ""
"um einkaleyfi athugaðu þá hjá einkaleyfisstofu landsins."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index c231e859d..b81672ce2 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2012-02-20 22:24+0000\n"
"Last-Translator: Matteo Pasotti <pasotti.matteo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,21 +15,21 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Attendi"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installazione del bootloader in corso"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -48,13 +48,13 @@ msgstr ""
"\n"
"Assegno un nuovo Volume ID?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Installazione del bootloader fallita. Si è verificato il seguente errore:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -71,7 +71,7 @@ msgstr ""
" Poi digita: shut-down\n"
"Al boot successivo dovresti vedere il prompt del bootloader."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -86,268 +86,268 @@ msgstr ""
"\n"
"Da quale disco avvii il sistema?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Installazione del bootloader in corso"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Dove vuoi installare il bootloader?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primo settore del disco (MBR) %s"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primo settore del disco (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Primo settore della partizione root"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Su floppy"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Salta"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Configurazione stile di avvio"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Opzioni principali del bootloader"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader da usare"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Dispositivo di boot"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Opzioni principali"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Ritardo prima di avviare l'immagine predefinita"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Abilitare l'ACPI"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Abilitare SMP"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Abilitare l'APIC"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Abilitare l'APIC locale"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sicurezza"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Password"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Le password non corrispondono"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Per favore, riprova"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Non puoi usare una password con %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Password (ripeti)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Svuota /tmp ad ogni avvio"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Messaggio di init"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Attesa dell'Open Firmware"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Attesa per il boot del kernel"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Abilitare l'avvio da CD-ROM?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Abilitare boot da OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Sistema operativo predefinito?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Immagine"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Opzioni per il kernel"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Accodamento Xen"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Richiedere password al boot"
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Modalità video"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Profilo di rete"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etichetta"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predefinito"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Non sono ammesse etichette vuote"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Bisogna indicare l'immagine di un kernel"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Bisogna specificare una partizione root"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Questa etichetta è già in uso"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Che tipo di voce vuoi aggiungere?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Altro S.O. (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Altro S.O. (MacOS,...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Altro S.O. (Windows, ...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Configurazione del bootloader"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -356,47 +356,47 @@ msgstr ""
"Finora ci sono queste voci nel menu di boot.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "accesso ai programmi X"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "accesso agli strumenti RPM"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "permettere \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "accesso ai file di amministrazione del sistema"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "accesso agli strumenti di rete"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "accesso agli strumenti di compilazione"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s già aggiunto)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Inserisci il nome di un utente, grazie"
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -405,149 +405,149 @@ msgstr ""
"Il nome utente deve iniziare con una lettera minuscola seguita solo da altre "
"minuscole, numeri, \"-\" e \"_\""
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Il nome utente è troppo lungo"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Il nome utente è già stato utilizzato"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID utente"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID gruppo"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s dev'essere un numero"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s dovrebbe essere superiore a 500. Accetta comunque?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "Gestione degli utenti"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Abilita l'account guest"
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Scegli password amministratore (root)"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Inserisci un utente"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Vero nome"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Nome utente"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Attendere, aggiornamento dei supporti in corso..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Si può configurare il computer per fare automaticamente il login di un "
"utente all'avvio."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Utilizza questa funzionalità"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Scegli l'utente predefinito:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Scegli il gestore di finestre da usare:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Note di rilascio"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Chiudi"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Accordo di licenza"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Esci"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Accetti questa licenza?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Accetta"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Rifiuta"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Scegli una lingua da utilizzare"
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,82 +558,82 @@ msgstr ""
"le lingue che vorresti installare. Esse saranno disponibili\n"
"quando l'installazione è completa e riavvii il sistema."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Multilingue"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codifica per vecchia compatibilità (non UTF-8)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Tutte le lingue"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Scelta della lingua"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Paese / Regione"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Scegli il tuo paese"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ecco la lista completa dei paesi disponibili"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Altre nazioni"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avanzato"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Modalità input:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Nessuno"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Nessuna condivisione"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permetti a tutti gli utenti"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalizzato"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -648,7 +648,7 @@ msgstr ""
"\n"
"\"Personalizzata\" permette un controllo più specifico per ogni utente.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -657,7 +657,7 @@ msgstr ""
"NFS: il classico sistema di condivisione dei file in ambiente Unix, con un "
"limitato supporto per Mac e Windows."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -666,19 +666,19 @@ msgstr ""
"SMB: il sistema di condivisione dei file utilizzato in Windows, Mac OS X e "
"molte distribuzioni Linux recenti."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Puoi esportare usando NFS o Samba. Scegli quello che preferisci utilizzare."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lancia userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -687,7 +687,7 @@ msgstr ""
"Per condividere le directory bisogna appartenere al gruppo \"fileshare\".\n"
"Puoi usare \"userdrake\" per aggiungervi un utente."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -696,48 +696,48 @@ msgstr ""
"Devi disconnetterti e rientrare affinché i cambiamenti abbiano effetto. "
"Premi «OK» per fare logout."
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Devi disconnetterti e rientrare affinché i cambiamenti abbiano effetto."
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Fuso orario"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Qual è il fuso orario locale?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Impostazione di data, ora e fuso orario"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Qual è l'orario migliore?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (orologio hardware impostato su UTC)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (orologio hardware impostato su ora locale)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizzazione automatica dell'ora (usando NTP)"
@@ -1079,7 +1079,7 @@ msgid "Domain Admin Password"
msgstr "Password dell'amministratore di dominio"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1094,42 +1094,42 @@ msgstr ""
"o aspetta che si avvii quello predefinito.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menu testuale"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menu grafico"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB con menu testuale"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "spazio insufficiente in /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Non puoi installare il bootloader in una partizione %s\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1138,7 +1138,7 @@ msgstr ""
"Devi aggiornare la configurazione del bootloader perché le partizioni hanno "
"cambiato numerazione"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1147,7 +1147,7 @@ msgstr ""
"Il bootloader non può essere installato correttamente. Devi fare l'avvio di "
"ripristino e scegliere \"%s\""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstallazione del bootloader"
@@ -1264,7 +1264,7 @@ msgstr "Fatto"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1288,7 +1288,7 @@ msgstr "L'URL deve iniziare con http:// o https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Attenzione"
@@ -2340,7 +2340,7 @@ msgstr "Cerca nuovi server"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Il pacchetto %s deve essere installato. Lo installo?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "È stato impossibile installare il pacchetto %s!"
@@ -2350,17 +2350,17 @@ msgstr "È stato impossibile installare il pacchetto %s!"
msgid "Mandatory package %s is missing"
msgstr "Manca il pacchetto %s, che è indispensabile"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "I seguenti pacchetti devono essere installati:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Installazione dei pacchetti ..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Rimozione i pacchetti in corso..."
@@ -4808,7 +4808,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Benvenuto in %s"
@@ -4836,7 +4836,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Il bootloader non può gestire una /boot ripartita su più volumi fisici"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4849,8 +4849,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Introduzione\n"
"\n"
@@ -4878,7 +4877,8 @@ msgstr ""
"testo giuridicamente valido per regolare i rapporti tra Mageia e i suoi "
"utenti nonché l'eventuale utilizzo commerciale dei \"Prodotti software\"."
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4931,7 +4931,8 @@ msgstr ""
"\n"
"tutte le vostre copie dei \"Prodotti software\"."
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -5034,10 +5035,10 @@ msgstr ""
"poiché alcune legislazioni non ammettono limitazioni od esclusioni per danni "
"consequenziali o \n"
"\n"
-"accidentali, la precedente limitazione potrebbe non essere applicabile a "
-"Lei."
-
+"accidentali, la precedente limitazione potrebbe non essere applicabile a Lei."
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -5082,7 +5083,8 @@ msgstr ""
"licenza specifica. Per favore si consulti la documentazione per ulteriori "
"dettagli. "
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -5111,7 +5113,8 @@ msgstr ""
"\n"
"scopo. \"Mageia\" e i relativi loghi sono proprietà di Mageia "
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5151,8 +5154,7 @@ msgstr ""
"Si prega di rivolgersi a Mageia per qualsiasi domanda riguardo questo "
"documento. "
-
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5175,7 +5177,7 @@ msgstr ""
"la propria legislazione nazionale."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index 955bde7c0..0ce6d58ff 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-ja\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2009-02-22 19:41+0900\n"
"Last-Translator: Yukiko Bando <ybando@k6.dion.ne.jp>\n"
"Language-Team: Japanese <cooker-i18n@mandrivalinux.org>\n"
@@ -19,21 +19,21 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "お待ちください"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "ブートローダをインストール中"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -50,12 +50,12 @@ msgstr ""
"\n"
"新しいボリューム ID を割り当てますか?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "ブートローダのインストールに失敗しました。以下のエラーが発生:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -73,7 +73,7 @@ msgstr ""
"と入力してください。\n"
"次回の起動時にはブートローダのプロンプトが表示されるはずです。"
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -88,268 +88,268 @@ msgstr ""
"\n"
"どのドライブから起動しますか?"
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "ブートローダのインストール"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "ブートローダをどこにインストールしますか?"
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "ドライブ %s の最初のセクタ (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "ドライブの最初のセクタ (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "root パーティションの最初のセクタ"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "フロッピー"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "スキップ"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "起動方式の設定"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "ブートローダのメインオプション"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "ブートローダ"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "使用するブートローダ"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "起動デバイス"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "メインオプション"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "デフォルトが起動するまでの秒数"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "ACPI を有効にする"
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "SMP を有効にする"
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "APIC を有効にする"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "ローカル APIC を有効にする"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "セキュリティ"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "パスワード"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "パスワードが一致しません"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "やり直してください"
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "%s にはパスワードは使えません"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "パスワード (再入力)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "起動するたびに /tmp 以下を消す"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Init メッセージ"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "オープンファームウェアの遅延"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "カーネルブートのタイムアウト"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "CD からの起動を有効にしますか?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "OF からの起動を有効にしますか?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "デフォルトの OS"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "イメージ"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "追加"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen 追加"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "ビデオモード"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "ネットワークプロファイル"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "ラベル"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "デフォルト"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "ビデオなし"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "空白のラベルは使えません"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "カーネルイメージを指定してください"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "root パーティションは必ず指定してください"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "このラベルは既に使われています"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "どの種類のエントリを追加しますか?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "他の OS (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "他の OS (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "他の OS (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "ブートローダの設定"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -358,47 +358,47 @@ msgstr ""
"起動メニューのエントリは以下のとおりです。\n"
"エントリは追加/変更できます。"
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "X プログラムへのアクセス"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "RPM ツールへのアクセス"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "su を許可する"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "管理ファイルへのアクセス"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "ネットワークツールへのアクセス"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "コンパイルツールへのアクセス"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s は追加済み)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "ユーザ名を入力してください"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -407,147 +407,147 @@ msgstr ""
"ユーザ名には英語の小文字、数字、ハイフン (-)、アンダースコア (_) しか使えませ"
"ん"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "ユーザ名が長すぎます"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "このユーザ名は既に存在します"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ユーザ ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "グループ ID"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s は数字でなければいけません"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s は 500 より上でなければいけません。このまま受け入れますか?"
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr "ユーザの管理"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "管理者 (root) のパスワードを設定"
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "ユーザ名を入力"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "アイコン"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "本名"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "ログイン名"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "シェル"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "メディアを追加しています。お待ちください..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "自動ログイン"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "自動的に特定のユーザでログオンするように設定できます。"
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "この機能を使います"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "デフォルトのユーザを選択:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "ウィンドウマネージャを選択:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "リリースノート"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "閉じる"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "ライセンスへの同意"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "終了"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "このライセンスに同意しますか?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "承諾する"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "拒否する"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "使用する言語を選んでください。"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,82 +558,82 @@ msgstr ""
"お使いになりたい言語を選んでください。\n"
"インストール後に再選択することも可能です。"
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "多言語"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "UTF-8 ではないエンコーディング (後方互換性のため)"
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "すべての言語"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "言語の選択"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "国名/地域"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "お住いの国を選んでください"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "利用可能なすべての国名のリスト"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "他の国"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "詳細"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "入力メソッド:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "なし"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "共有しない"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "すべてのユーザに許可"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "カスタム"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -647,14 +647,14 @@ msgstr ""
"クリックするだけで共有することができます。\n"
"「カスタム」を選ぶとユーザごとに細かく設定できます。\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr "NFS: 伝統的な Unix ファイル共有システム"
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -662,18 +662,18 @@ msgid ""
msgstr ""
"SMB: Windows/Mac OS X や新しい Linux システムで使われるファイル共有システム"
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "エクスポートには NFS と SMB を使用できます。どちらを使いますか?"
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "userdrake を起動"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -682,54 +682,54 @@ msgstr ""
"ユーザ別に共有する場合は \"fileshare\" グループを使います。\n"
"userdrake を使ってこのグループにユーザを追加してください。"
-#: any.pm:1504
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "変更を有効にするには再ログインしてください。"
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "変更を有効にするには再ログインしてください。"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "タイムゾーン"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "タイムゾーンを選んでください。"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "日付、時刻とタイムゾーンの設定"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "どの時刻を使いますか?"
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (ハードウェアクロックを UTC に設定)"
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (ハードウェアクロックをローカルタイムに設定)"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP サーバ"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "自動的に時間を合わせる (NTP を使用)"
@@ -1061,7 +1061,7 @@ msgstr "ドメイン管理者のパスワード"
# only the ascii charset will be available
# so use only 7bit for this message
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1075,42 +1075,42 @@ msgstr ""
"Ichiran kara OS wo erabu ka Default no OS no kidou wo\n"
"Matte kudasai.\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO (テキスト表示)"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB (グラフィカル表示)"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB (テキスト表示)"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "/boot の容量が足りません"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "ブートローダは %s パーティションにはインストールできません\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1118,7 +1118,7 @@ msgid ""
msgstr ""
"パーティション番号が変更されたので、ブートローダの設定を更新してください"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1127,7 +1127,7 @@ msgstr ""
"ブートローダを正しくインストールできません。レスキューをブートして %s を選ん"
"でください。"
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "ブートローダを再インストール"
@@ -1244,7 +1244,7 @@ msgstr "完了"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1268,7 +1268,7 @@ msgstr "URL は http:// か https:// で始まります"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "警告"
@@ -2315,7 +2315,7 @@ msgstr "新しいサーバを検索"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "パッケージ %s が必要です。インストールしますか?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "%s パッケージをインストールできません"
@@ -2325,17 +2325,17 @@ msgstr "%s パッケージをインストールできません"
msgid "Mandatory package %s is missing"
msgstr "必要なパッケージ %s がありません"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "以下のパッケージをインストールします:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "パッケージをインストール中..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "パッケージを削除..."
@@ -4768,7 +4768,7 @@ msgstr "ザンビア"
msgid "Zimbabwe"
msgstr "ジンバブエ"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "%s へようこそ"
@@ -4794,7 +4794,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "ブートローダは複数の物理ボリューム上の /boot を扱えません"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, fuzzy, c-format
msgid ""
"Introduction\n"
@@ -4807,8 +4807,7 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"序文\n"
"\n"
@@ -4819,7 +4818,8 @@ msgstr ""
"の様々なコンポーネントが含まれます。ただし、これらに限定されるものでは\n"
"ありません。\n"
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4854,7 +4854,8 @@ msgstr ""
"契約の失効にともない、ソフトウェア製品のすべてのコピーを直ちに破棄しな\n"
"ければなりません。"
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4920,7 +4921,8 @@ msgstr ""
"費用ならびに罰金、その他の間接的な損失を無制限に含みます。この限定保証\n"
"はソフトウェア製品に含まれる強力な暗号化コンポーネントにも適用されます。"
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4952,7 +4954,8 @@ msgstr ""
"準拠します。Mageia が作成したドキュメントについては、特別な\n"
"ライセンスに準拠します。詳しくはドキュメントをご参照ください。"
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4973,7 +4976,8 @@ msgstr ""
"ウェア製品を全面的・部分的に改変する権利を留保しています。\n"
"Mageia、ならびに関連するロゴは Mageia の登録商標です。"
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -5000,8 +5004,7 @@ msgstr ""
"場合は最後の手段としてパリ (フランス共和国) の適切な法廷に持ち込みます。\n"
"この文書に関し不明な点があれば、Mageia までご連絡ください。"
-
-#: messages.pm:93
+#: messages.pm:95
#, fuzzy, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -5020,7 +5023,7 @@ msgstr ""
"されるかどうか不明な場合は、お住いの国の法律をご確認ください。"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index e63fbad4e..0e4eb1f75 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2007-09-26 20:12+0200\n"
"Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n"
"Language-Team: Korean <beadaron@hanafos.com>\n"
@@ -16,21 +16,21 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "기다려 주세요"
-#: any.pm:262
+#: any.pm:261
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "부트로더 설치"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -47,12 +47,12 @@ msgstr ""
"\n"
"새로운 Volume ID를 할당하시겠습니까?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "부트로더 설치가 실패했습니다. 다음과 같은 오류가 발생했습니다:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -69,7 +69,7 @@ msgstr ""
"shut-down\n"
"그러고나면 다음부터는 부트로더 프롬프트를 볼 수 있을 것입니다."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -84,268 +84,268 @@ msgstr ""
"\n"
"어느 드라이브에서 부팅하시겠습니까?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "부트로더 설치"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "부트로더를 어디에 설치하고 싶으세요?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "드라이브의 첫번째 섹터(MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "드라이브의 첫번째 섹터(MBR)"
-#: any.pm:373
+#: any.pm:372
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "부트 파티션의 첫번째 섹터"
-#: any.pm:375
+#: any.pm:374
#, fuzzy, c-format
msgid "On Floppy"
msgstr "부트 플로피"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "건너뛰기"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "부팅 스타일 설정"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "부트로더 주 옵션들"
-#: any.pm:432
+#: any.pm:431
#, fuzzy, c-format
msgid "Bootloader"
msgstr "사용할 부트로더"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "사용할 부트로더"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "부트 장치"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr "메인 옵션"
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "기본 이미지로 부팅될 때까지 지연시간"
-#: any.pm:441
+#: any.pm:440
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "ACPI 허용"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI 허용"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "APIC 허용"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "지역 APIC 허용"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "보안"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "암호"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "암호가 일치하지 않습니다."
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "다시 시도하세요."
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr " %s 마운트 위치에는 암호를 사용할 수 없습니다.다. "
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "암호 (확인)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "부팅시 /tmp 디렉토리 자동 청소"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "초기화 메시지"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "펌웨어 열기 지연"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "커널 부트 제한시간"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "CD 부팅 허용?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "OF 부팅 허용?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "기본 OS?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "이미지"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "루트"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "추가"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Xen 추가"
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "비디오 모드"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "초기화 램디스크"
-#: any.pm:558
+#: any.pm:557
#, fuzzy, c-format
msgid "Network profile"
msgstr "네트웍 인터페이스"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "항목명"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "기본값"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "비디오 없음"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "빈 항목명은 허용되지 않습니다."
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "커널 이미지를 지정해 주세요."
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "루트 파티션은 반드시 지정되어야 합니다."
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "이 항목명은 이미 사용되고 있습니다."
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "어떤 종류의 항목을 추가하시겠습니까?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "리눅스"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "기타 OS (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "기타 OS (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "기타 OS (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "부팅 스타일 설정"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -354,200 +354,200 @@ msgstr ""
"몇 가지 항목이 여기에 표시되고 있습니다.\n"
"더 추가하거나, 기존의 것들을 수정할수 있습니다."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "X 프로그램 액세스"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "RPM 도구 액세스"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "「su」허용"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "시스템 관리파일 액세스"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "네트웍 도구 액세스"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "컴파일 도구 액세스"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(이미 %s는(은) 추가되었습니다.)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "사용자명을 입력해 주세요"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "사용자명은 영문 소문자나 숫자, '-' 그리고 '_' 만 포함될수 있습니다."
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "사용자 명이 너무 깁니다."
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "이 사용자명은 이미 추가되어 있습니다."
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "사용자 ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "그룹 ID"
-#: any.pm:895
+#: any.pm:894
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s 옵션은 숫자이어야 합니다!"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
"%s 는 500 위의 수여야 합니다. 지금의 수를 허가하고 \n"
"계속 진행하시겠습니까?"
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "사용자명"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "관리자(root) 암호 설정"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"사용자 입력\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "아이콘"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "실제 이름"
-#: any.pm:924
+#: any.pm:923
#, fuzzy, c-format
msgid "Login name"
msgstr "도메인 이름"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "명령 해석기"
-#: any.pm:972
+#: any.pm:971
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "기다려 주세요. ttmkfdir 실행 중..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "자동로그인"
-#: any.pm:1005
+#: any.pm:1004
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"자동으로 특정 사용자로서 로그인되도록 할 수 있습니다.\n"
"이런 특성을 원하세요?"
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "aboot를 사용하시겠습니까?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "기본 사용자를 선택하세요:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "사용할 윈도우 매니저를 선택하세요:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, fuzzy, c-format
msgid "Release Notes"
msgstr "릴리즈:"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "닫기"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "사용 동의서"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "종료"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "또 다른것이 설치되어 있습니까?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "동의"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "거부"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "사용할 언어를 선택해 주세요"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,82 +558,82 @@ msgstr ""
"설치할 언어를 선택하여주십시요. 설치된 언어들은 설치가 완료되고\n"
"시스템이 다시 시작되면 사용할 수 있습니다."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "다중 언어"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "이전 호환성 (non UTF-8) 인코딩"
-#: any.pm:1170
+#: any.pm:1169
#, fuzzy, c-format
msgid "All languages"
msgstr "언어 선택"
-#: any.pm:1192
+#: any.pm:1191
#, fuzzy, c-format
msgid "Language choice"
msgstr "언어선택"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "국가"
-#: any.pm:1247
+#: any.pm:1246
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "어떤 종류의 마우스를 사용하십니까?"
-#: any.pm:1249
+#: any.pm:1248
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "지원되는 키보드 목록이 여기에 있습니다."
-#: any.pm:1250
+#: any.pm:1249
#, fuzzy, c-format
msgid "Other Countries"
msgstr "기타 포트"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "고급"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "입력 방법"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "없음"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "비공유"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "모든 사용자 허용"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "사용자 정의"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -647,7 +647,7 @@ msgstr ""
"사용자에게 공유가 허가될 것입니다.\n"
"\"Custom\" 사용자마다 따로 허가 해줄 수 있습니다.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -656,7 +656,7 @@ msgstr ""
"NFS: Mac과 Windows 에서는 다소 지원이 미흡하지만\n"
"전통적인 Unix 파일 공유 시스템입니다."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -664,18 +664,18 @@ msgid ""
msgstr ""
"SMB: Window, Mac OS X 그리고 많은 최신 Linux에서 사용되는 파일 공유 시스템"
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "NFS와 삼바 중, 어느 것을 이용하시겠습니까?"
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "userdrake 실행"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -684,54 +684,54 @@ msgstr ""
"사용자 개개인의 공유를 위해서는 그룹의 \"fileshare\"를 사용합니다.\n"
"이 그룹에서 사용자를 추가하기위해 userdrake를 사용할 수 있습니다."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "시간대"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "님의 시간대는 어디입니까?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "날짜, 시간 & 시간대 설정"
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "최적의 시간은 무엇입니까?"
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "하드웨어 시계 GMT 설정"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "하드웨어 시계 GMT 설정"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP 서버"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "자동 시간 동기화 (NTP 사용)"
@@ -1058,7 +1058,7 @@ msgid "Domain Admin Password"
msgstr "도메인 관리자 암호"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1071,42 +1071,42 @@ msgstr ""
"다음 리스트에서의 운영체제를 선택하시거나, 기본 부팅을 기다리십시요\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "텍스트 메뉴 LILO"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "그래픽 메뉴 GRUB"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "텍스트 메뉴 GRUB"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "/boot에 공간이 부족합니다."
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "「%s」파티션에 부트로더를 설치할 수 없습니다.\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1114,7 +1114,7 @@ msgid ""
msgstr ""
"파티션이 번호가 변경되었기 때문에, 부트로더 설정이 업데이트 되어야 합니다."
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1123,7 +1123,7 @@ msgstr ""
"부트로더가 정확하게 설치 될수 없습니다. rescue로 부팅하여 \"%s\"를 \n"
"선택하여야 합니다."
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "부트로더 재설치"
@@ -1239,7 +1239,7 @@ msgstr "완료"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1263,7 +1263,7 @@ msgstr "URL 주소는 http:// 또는 https://로 시작되어야 합니다."
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "경고"
@@ -2297,7 +2297,7 @@ msgstr "서버 검색"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "팩키지 %s가 필요합니다. 설치하겠습니까?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "%s 팩키지 설치중"
@@ -2307,17 +2307,17 @@ msgstr "%s 팩키지 설치중"
msgid "Mandatory package %s is missing"
msgstr "필수 팩키지 %s가 없습니다."
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "다음 팩키지들이 설치될 것입니다."
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "팩키지 설치 중..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "%s 제거 중"
@@ -4676,7 +4676,7 @@ msgstr "잠비아"
msgid "Zimbabwe"
msgstr "짐바브웨"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "%s에 오신것을 환영합니다."
@@ -4702,7 +4702,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4715,12 +4715,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4743,7 +4742,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4788,7 +4788,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4808,7 +4809,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4822,7 +4824,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4840,7 +4843,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4853,7 +4856,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po
index a72d1977d..2c36bc56b 100644
--- a/perl-install/share/po/ky.po
+++ b/perl-install/share/po/ky.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-ky\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2005-04-20 20:27+0500\n"
"Last-Translator: Nurlan Borubaev <nurlan@tamga.info>\n"
"Language-Team: Kyrgyz\n"
@@ -16,21 +16,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Күтө туруңуз"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Жүктөгүчтү орнотуу жүрүп жатат"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -48,14 +48,14 @@ msgstr ""
"\n"
"Жаңы том ID'си жазылсынбы?"
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Баштапкы жүктөгүчтү орнотуу ийгиликсиз аяктады.\n"
"Төмөнкү жаңылыштык орун алды:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -73,7 +73,7 @@ msgstr ""
" Андан соң жазыңыз: shut-down\n"
"Кийинки жолу жүктөлгөндө сиз баштапкы жүктөгүчтүн чакыргын көрүшүңүз керек."
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -88,268 +88,268 @@ msgstr ""
"\n"
"Кайсы дисктен жүктөлөсүз?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Жүктөгүчтү орнотуу жүрүп жатат"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Баштапкы жүктөгүчтү кайда орноткуңуз келет?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Дисктин биринчи сектору (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Дисктин биринчи сектору (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Түпкү бөлүмдүн биринчи сектору"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Ийилчээкке"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Таштап кете берүү"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Жүктөө стилин конфигурациялоо"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Баштапкы жүктөгүчтүн негизги опциялары"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Баштапкы жүктөгүч"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Колдонулуучу баштапкы жүктөгүч"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Жүктөгүч түзүлүш"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Алдынала болгон образды жүктөө алдындагы пауза"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "ACPI жандыруу"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI жандыруу"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI жандыруу"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI жандыруу"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Коопсуздук"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Пароль"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролдор дал келбейт"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Дагы бир кайталап көрүңүз"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Сиз %s биригүү чекити үчүн шифрделген файл системасын колдоно албайсыз"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Пароль (дагы бир жолу)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Ар бир жүктөгөн сайын /tmp каталогун тазалоо"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Инициализациянын кабары"
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware паузасы"
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ядрону жүктөөдөгү таймаут"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "CD жүктөлүүгө уруксатпы?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "OF жүктөлүү уруксатпы?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Алдынала тандалган ОС?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Образ"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Кошумча"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Видеорежим"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Желенин профили"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Эн белги"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Алдынала алынган"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "Видеосуз"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Бош эн белги мүмкүн эмес"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Сиз ядро образын көрсөтүүңүз керек"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Сиз түпкү бөлүмдү көрсөтүшүңүз керек"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Бул эн белги мурдатан колдонууда бар"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Кандай пункту кошкуңуз келет?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Башка ОС (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Башка ОС (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Башка ОС (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Жүктөө стилин конфигурациялоо"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -358,47 +358,47 @@ msgstr ""
"Учурда сиздин жүктөө менюңузда төмөнкүлөр бар.\n"
"Сиз кошумча пунктарды түзсөңүз же барларын өзгөртсөңүз болот."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "X программаларын пайдалануу уруксаты"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "RPM аспаптарын пайдалануу уруксаты"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "\"su\" урунуу уруксаты"
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "административдик файлдарды урунуу уруксаты"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "тармак аспаптарын урунуу уруксаты"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "компиляция аспаптарын урунуу уруксаты"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s алдагачан кошулган)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Колдонуучу атын бериңиз"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -407,150 +407,150 @@ msgstr ""
"Колдонуучу аты кичине латын тамгаларынан, цифралардан, `-'жана `_' турушу "
"керек"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Колдонуучу аты өтө узун"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Бул колдонуучу аты алдагачан кошулган"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Колдонуучунун IDси"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Группанын IDси"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s сан болушу керек"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s 500дөн чоң болушу керек. Ага карабай кабыл алайынбы?"
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "Колдонуучу аты"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Администратордуy (root) паролун орнотуу"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Колдонуучу киргиз\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Сүрөтбелги"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Чыныгы аты"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Такма аты"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Шел-чөйрө"
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Күтө туруңуз, булак кошулууда..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автологин"
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Мен компьютериңизди автоматтык түрдө бир колдонуучу кирүүсүн орното алам."
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Бул мүмкүнчүлүктү колдонуу"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Алдыалынган колдонуучуну тандаңыз:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Иштетүү үчүн терезе менеджерин тандаңыз:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Релиз эскертмелери"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Жабуу"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Лицензиялык келишим"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Чыгуу"
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Макул"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Баш тартуу"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Колдонулуучу тилди тандаңыз"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -561,82 +561,82 @@ msgstr ""
"каалаган тилди тандаңыз. Орнотуу процесси бүтүп,\n"
"системаңызды кайра жүктөгөн соң алар колдонууга даяр болот."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Көп тилдүүлүк"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Бардык тилдер"
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Тилди тандоо"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Өлкө / Регион"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Өз өлкөңүздү тандаңыз"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Мүмкүн болгон бардык өлкөлөр тизмеси"
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Башка Өлкөлөр"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Кошумча"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Кийирүү ыкмасы:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Жок"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Жалпы ресурс жок"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Бардык колдонуучуларга уруксат"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Тандама"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -651,7 +651,7 @@ msgstr ""
"\n"
"\"Тандама\" кээ бир колдонуучуларга гана бөлүшүү укугун берсе болот.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -660,7 +660,7 @@ msgstr ""
"NFS: адаткы Unix файлдарды бөлүшүү системасы, Mac жана Windows'то начар "
"колдоого ээ."
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -669,7 +669,7 @@ msgstr ""
"SMB: Windows, Mac OS X жана башка көпчүлүк заманбап Linux системаларында "
"колдонулуучу файлдарды ортодо бөлүшүп пайдалануу системасы."
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -677,12 +677,12 @@ msgstr ""
"Сиз NFS же SMB жардамында экспорттосоңуз болот. Кайсынысын колдонууну "
"каалайсыз? Тандаңыз."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake иштетүү"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -691,54 +691,54 @@ msgstr ""
"Колдонуучу ресурстарын бөлүштүрүү \"fileshare\" группасын колдонот .\n"
"Колдонуучуну бул группага кошуу үчүн userdrake'ти колдонсоңуз болот."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Убакыт алкагы"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Аппараттык саатты GMT боюнча орнотуу"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Аппараттык саатты GMT боюнча орнотуу"
-#: any.pm:1576
+#: any.pm:1575
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS сервери"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1076,7 +1076,7 @@ msgstr "Домен админинин паролу"
# the transliteration follows BGN/PCGN-1979 system; with ü and ö
# written u' and o' instead.
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1091,42 +1091,42 @@ msgstr ""
"aldynala bolgonu ju'kto'lgu'cho'ktu' ku'tu'ngu'z.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO тексттик меню менен"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB графикалык меню менен"
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB текстик меню менен"
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "/boot ичинде жетиштүү орун жок"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Сиз %s бөлүмүндө баштапкы жүктөгүчтү орното албайсыз\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1135,7 +1135,7 @@ msgstr ""
"Баштапкы жүктөгүчүңүздүн конфигурациясы жаңыланышы керек, себеби бөлүм "
"жаңыдан номурланган"
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1144,7 +1144,7 @@ msgstr ""
"Баштапкы жүктөгүч туура орнотулбады. Сиз коопсуздук режиминде жүктөлүп \"%s"
"\" тандаңыз"
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Баштапкы жүктөгүчтү кайра орнотуу"
@@ -1261,7 +1261,7 @@ msgstr "Даяр"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1285,7 +1285,7 @@ msgstr "URL http:// же https:// менен башталышы керек"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Эскертүү"
@@ -2319,7 +2319,7 @@ msgstr "Жаңы серверлерди издөө"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s пакети орнотулуга тийиш. Аны орнотууну каалайсызбы?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "%s пакетин орнотууга болбоду!"
@@ -2329,17 +2329,17 @@ msgstr "%s пакетин орнотууга болбоду!"
msgid "Mandatory package %s is missing"
msgstr "%s милдеттүү болчу пакет жетишпөөдө"
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Төмөндөгү пакеттер орнотулушу керек:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Пакеттер орнотулууда..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Пакеттер жоготулууда..."
@@ -4755,7 +4755,7 @@ msgstr "Замбия"
msgid "Zimbabwe"
msgstr "Зимбабве"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "%s Кош келиңиз!"
@@ -4781,7 +4781,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4794,12 +4794,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4822,7 +4821,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4867,7 +4867,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4887,7 +4888,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4901,7 +4903,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4919,7 +4922,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4932,7 +4935,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/libDrakX.pot b/perl-install/share/po/libDrakX.pot
index ce84ecc4f..a51285f00 100644
--- a/perl-install/share/po/libDrakX.pot
+++ b/perl-install/share/po/libDrakX.pot
@@ -6,26 +6,26 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645 diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286 harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr ""
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr ""
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -35,12 +35,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -51,7 +51,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -60,459 +60,459 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:341
+#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr ""
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: any.pm:369
+#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr ""
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr ""
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr ""
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr ""
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr ""
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr ""
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr ""
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr ""
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:442
+#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr ""
-#: any.pm:443
+#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr ""
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr ""
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249 diskdrake/smbnfs_gtk.pm:181
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr ""
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr ""
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr ""
-#: any.pm:452
+#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr ""
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr ""
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr ""
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr ""
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr ""
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr ""
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr ""
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:558
+#: any.pm:557
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr ""
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr ""
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr ""
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr ""
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr ""
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr ""
-#: any.pm:656
+#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:886
+#: any.pm:885
#, c-format
msgid "The user name must start with a lower case letter followed by only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr ""
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr ""
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr ""
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr ""
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:912
+#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr ""
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr ""
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr ""
-#: any.pm:972
+#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:1005
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1006
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr ""
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr ""
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr ""
-#: any.pm:1102
+#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr ""
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr ""
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr ""
-#: any.pm:1157
+#: any.pm:1156
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -520,82 +520,82 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr ""
-#: any.pm:1192
+#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr ""
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr ""
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1250
+#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr ""
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr ""
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr ""
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr ""
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr ""
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -605,79 +605,79 @@ msgid ""
""
msgstr ""
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid "NFS: the traditional Unix file sharing system, with less support on Mac and Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid "You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid "You need to logout and back in again for changes to take effect. Press OK to logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1574
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr ""
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -979,7 +979,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -990,54 +990,54 @@ msgid ""
""
msgstr ""
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr ""
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid ""
"You cannot install the bootloader on a %s partition\n"
""
msgstr ""
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid "Your bootloader configuration must be updated because partition has been renumbered"
msgstr ""
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid "The bootloader cannot be installed correctly. You have to boot rescue and choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1136,7 +1136,7 @@ msgstr ""
msgid "Done"
msgstr ""
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:133 diskdrake/hd_gtk.pm:299 diskdrake/interactive.pm:247 diskdrake/interactive.pm:260 diskdrake/interactive.pm:456 diskdrake/interactive.pm:527 diskdrake/interactive.pm:545 diskdrake/interactive.pm:550 diskdrake/interactive.pm:712 diskdrake/interactive.pm:1002 diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
+#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:133 diskdrake/hd_gtk.pm:299 diskdrake/interactive.pm:247 diskdrake/interactive.pm:260 diskdrake/interactive.pm:456 diskdrake/interactive.pm:527 diskdrake/interactive.pm:545 diskdrake/interactive.pm:550 diskdrake/interactive.pm:712 diskdrake/interactive.pm:1002 diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209 diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225 diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83 fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113 scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
#, c-format
msgid "Error"
msgstr ""
@@ -1151,7 +1151,7 @@ msgstr ""
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:424 diskdrake/interactive.pm:306 diskdrake/interactive.pm:391 diskdrake/interactive.pm:597 diskdrake/interactive.pm:815 diskdrake/interactive.pm:880 diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:424 diskdrake/interactive.pm:306 diskdrake/interactive.pm:391 diskdrake/interactive.pm:597 diskdrake/interactive.pm:815 diskdrake/interactive.pm:880 diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076 diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309 diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr ""
@@ -2163,7 +2163,7 @@ msgstr ""
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr ""
@@ -2173,19 +2173,19 @@ msgstr ""
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid ""
"The following packages need to be installed:\n"
""
msgstr ""
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr ""
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr ""
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "Zimbabwe"
msgstr ""
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr ""
@@ -4489,7 +4489,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4498,11 +4498,11 @@ msgid ""
"shall be called the \"Software Products\" hereafter. The Software Products include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related to the operating \n"
"system and the different components of the Mageia distribution, and any applications \n"
-"distributed with these products provided by Mageia's licensors or suppliers.\n"
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4518,7 +4518,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4543,10 +4544,11 @@ msgid ""
"This limited liability applies to, but is not restricted to, the strong cryptography components \n"
"included in the Software Products.\n"
"However, because some jurisdictions do not allow the exclusion or limitation or liability for \n"
-"consequential or incidental damages, the above limitation may not apply to you. \n"
+"consequential or incidental damages, the above limitation may not apply to you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4560,7 +4562,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4571,7 +4574,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4584,7 +4588,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4595,7 +4599,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index a7f4f3f06..3f4004d5b 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2000-12-23 13:50+0200\n"
"Last-Translator: Mykolas Norvai­as <Myka@centras.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -13,21 +13,21 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Prašom palaukti"
-#: any.pm:262
+#: any.pm:261
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Įkrovos tvarkyklės įdiegimas"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -38,12 +38,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Nepavyko įdiegti įkrovos tvarkyklės. Įvyko tokia klaida:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -54,7 +54,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -64,269 +64,269 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Įkrovos tvarkyklės įdiegimas"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kur nori įdiegti įkrovos tvarkyklę?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Pirmasis kaupiklio sektorius (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Pirmasis kaupiklio sektorius (MBR)"
-#: any.pm:373
+#: any.pm:372
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Pirmasis įkrovos skirsnio sektorius"
-#: any.pm:375
+#: any.pm:374
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Išsaugoti į diskelį"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Praleisti"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Įdiegimo Tipo Konfiguracija"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Įkrovos tvarkyklės pagrindinės parinktys"
-#: any.pm:432
+#: any.pm:431
#, fuzzy, c-format
msgid "Bootloader"
msgstr "Naudojama įkrovos tvarkyklė"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Naudojama įkrovos tvarkyklė"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Įkrovos įrenginys"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Palaukti prieš įkraunant įprastą atvaizdą"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Serveris, Duomenų bazių"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Serveris, Duomenų bazių"
-#: any.pm:445
+#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Saugumas"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Slaptažodis"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Slaptažodžiai nesutampa"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Prašom bandyti vėl"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"Tau reikia tikros bylų sistemos (ext2, reiserfs) šiam montavimo taškui\n"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Slaptažodis (vėl)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Išvalyti /tmp kiekvieną kartą įkrovus"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr ""
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:473
+#: any.pm:472
#, fuzzy, c-format
msgid "Default OS?"
msgstr "Įprastas"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Atvaizdas"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Šakninis"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Pridurti"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Vaizdo režimas"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, fuzzy, c-format
msgid "Network profile"
msgstr "Tinklo interfeisas"
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Žymė"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Įprastas"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Tuščia žymė neleidžiama"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:588
+#: any.pm:587
#, fuzzy, c-format
msgid "You must specify a root partition"
msgstr "Tu privalai turėti swap skirsnį"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Ši žymė jau naudojama"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kokio tipo įrašą tu nori pridėti?"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Kitos OS (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Kitos OS (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Kitos OS (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Įdiegimo Tipo Konfiguracija"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -335,47 +335,47 @@ msgstr ""
"Čia yra skirtingi įrašai.\n"
"Tu gali pakeisti esamus arba prijungti naujus."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s jau pridėtas)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Prašom suteikti vartotojo vardą"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -384,151 +384,151 @@ msgstr ""
"Vartotojo vardas turi susidaryti tik iš mažųjų raidžių, skaičių ir simbolių "
"`-' bei `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Naudotojo vardas yra per ilgas"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Šis vartotojo vardas jau pridėtas"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Vartotojo ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, fuzzy, c-format
msgid "Group ID"
msgstr "Grupė"
-#: any.pm:895
+#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "Vartotojas"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Nurodyti root slaptažodį"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Įvesk vartotoją\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Tikras vardas"
-#: any.pm:924
+#: any.pm:923
#, fuzzy, c-format
msgid "Login name"
msgstr "Domeno vardas"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:972
+#: any.pm:971
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Nustatomas saugumo lygis"
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatinis pasisveikinimas"
-#: any.pm:1005
+#: any.pm:1004
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Aš galiu nustatyti taip, kad vienas vartotojas pasisveikintų automatiškai.\n"
"Jei nenori to naudoti, spausk mygtuką Nutraukti."
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Ar nori naudoti aboot?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Pasirink įprastą vartotoją:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Pasirink, kurią langų tvarkyklę naudosi:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Prašom palaukti"
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Uždaryti"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Licenzijos patvirtinimas"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Išeiti"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Ar turi dar vieną?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Sutinku"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Atmetu"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, fuzzy, c-format
msgid "Please choose a language to use"
msgstr "Prašom pasirinkti kalbą, kurią naudosi"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -536,82 +536,82 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po įdiegimo"
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Pasirink savo kalbą"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, fuzzy, c-format
msgid "All languages"
msgstr "Pasirink savo kalbą"
-#: any.pm:1192
+#: any.pm:1191
#, fuzzy, c-format
msgid "Language choice"
msgstr "Vanuatu"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Valstybė"
-#: any.pm:1247
+#: any.pm:1246
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "Prašom pasirinkti savo pelės rūšį"
-#: any.pm:1249
+#: any.pm:1248
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "Čia yra galimų klaviatūrų sąrašas"
-#: any.pm:1250
+#: any.pm:1249
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Patikrinti prievadus"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Išplėstinis"
-#: any.pm:1256
+#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Joks"
-#: any.pm:1340
+#: any.pm:1339
#, fuzzy, c-format
msgid "No sharing"
msgstr "CUPS paleidžiamas"
-#: any.pm:1340
+#: any.pm:1339
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Pridėti vartotoją"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Prisitaikyti"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -621,86 +621,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Laiko juosta"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Kokia tavo laiko juosta?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Ar tavo įrangos laikrodis nustatytas GMT?"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Ar tavo įrangos laikrodis nustatytas GMT?"
-#: any.pm:1576
+#: any.pm:1575
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS serveris"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1024,7 +1024,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, fuzzy, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1038,56 +1038,56 @@ msgstr ""
"Pasirink operaciju sistema is zemiau esancio saraso,\n"
"arba palauk %d sekundziu, kad butu ikrauta pagal nutylejima\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO su tekstiniu meniu"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "nepakanka vietos /boot"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, fuzzy, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Kur nori įdiegti įkrovos tvarkyklę?"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Įdiegti įkrovos tvarkyklę"
@@ -1200,7 +1200,7 @@ msgstr "Atlikta"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1224,7 +1224,7 @@ msgstr ""
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Dėmesio"
@@ -2246,7 +2246,7 @@ msgstr "DNS serveris"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Kokius jūs norite įdiegti paketus"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Įdiegiamas paketas %s"
@@ -2256,17 +2256,17 @@ msgstr "Įdiegiamas paketas %s"
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "Ruošiamasi įdiegti šiuos paketus"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, fuzzy, c-format
msgid "Installing packages..."
msgstr "Įdiegiamas paketas %s"
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Skiriamoji geba: %s\n"
@@ -4621,7 +4621,7 @@ msgstr "Zambija"
msgid "Zimbabwe"
msgstr "Zimbabvė"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Sveiki atvykę į %s"
@@ -4647,7 +4647,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4660,12 +4660,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4688,7 +4687,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4733,7 +4733,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4753,7 +4754,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4767,7 +4769,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4785,7 +4788,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4798,7 +4801,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po
index 49ada63c2..4c707d214 100644
--- a/perl-install/share/po/ltg.po
+++ b/perl-install/share/po/ltg.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-07-29 11:51+0300\n"
+"POT-Creation-Date: 2012-09-14 13:51+0200\n"
"PO-Revision-Date: 2004-02-24 13:01+0200\n"
"Last-Translator: Māris Laureckis <linux@latgola.lv>\n"
"Language-Team: Latgalian <linux@latgola.lv>\n"
@@ -14,21 +14,21 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
+#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Lyudzu pagaidit"
-#: any.pm:262
+#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Suokneituoja instaleišona procesā"
-#: any.pm:273
+#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:284
+#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Suoknietuoja instaleišona naizadeve. Atkluota itaida kliuda:"
-#: any.pm:290
+#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -55,7 +55,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:330
+#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -70,268 +70,268 @@ msgstr ""
"\n"
"Kurs ir jiusu suoknejamais disks?"
-#: any.pm:341
+#: any.pm:340
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Suokneituoja instaleišona procesā"
-#: any.pm:345
+#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kur jius gribit instalēt suokneituoju?"
-#: any.pm:369
+#: any.pm:368
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Diska pyrmais sektors (MBR)"
-#: any.pm:371
+#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Diska pyrmais sektors (MBR)"
-#: any.pm:373
+#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Suoknejomuos sadalis pyrmais sektors"
-#: any.pm:375
+#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Uz disketi"
-#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
+#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Izlaist"
-#: any.pm:412
+#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Suokneišonys stila konfigureišona"
-#: any.pm:428 any.pm:461 any.pm:462
+#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Suokneituoja golvonuos opcejis"
-#: any.pm:432
+#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Suokneituojs"
-#: any.pm:433 any.pm:465
+#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Kuru OS īluodeituoju lītuot"
-#: any.pm:436 any.pm:468
+#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Suoknejamuo īreice"
-#: any.pm:439
+#: any.pm:438
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:440
+#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Pauze pyrms nūkluseituos sistemys īluodis"
-#: any.pm:441
+#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Īslēgt ACPI"
-#: any.pm:442
+#: any.pm:441
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Īslēgt ACPI"
-#: any.pm:443
+#: any.pm:442
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Īslēgt ACPI"
-#: any.pm:445
+#: any.pm:444
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Īslēgt ACPI"
-#: any.pm:446 security/level.pm:63
+#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Drūšeiba"
-#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
+#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Parole"
-#: any.pm:450 authentication.pm:260
+#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Parolis nasakreit"
-#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Lyudzu mieginit vēlreiz"
-#: any.pm:452
+#: any.pm:451
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Jius navarit lītuot šifreitū failsistemu monteišonys punktā %s"
-#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
+#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Parole (atkāuotuoti)"
-#: any.pm:457
+#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Izteireit /tmp kotrys suokneišonys laikā"
-#: any.pm:467
+#: any.pm:466
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:469
+#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:470
+#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Kerneļa īluodis taimauts"
-#: any.pm:471
+#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Atļaut īluodi nu kompaktdiska?"
-#: any.pm:472
+#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Atļaut īluodi OF?"
-#: any.pm:473
+#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Nūklusātuo OS?"
-#: any.pm:547
+#: any.pm:546
#, c-format
msgid "Image"
msgstr "Attāls"
-#: any.pm:548 any.pm:562
+#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Sakne"
-#: any.pm:549 any.pm:575
+#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Papyldynuot"
-#: any.pm:551
+#: any.pm:550
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:553
+#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:555
+#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Video režims"
-#: any.pm:557
+#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:558
+#: any.pm:557
#, fuzzy, c-format
msgid "Network profile"
msgstr "Jauns profils..."
-#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
+#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nūsaukums"
-#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
+#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Nūklusāts"
-#: any.pm:576
+#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "Bez video"
-#: any.pm:587
+#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Tukšs nūsaukums nav atļauts"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Jiusim juonūruoda kūdula attāls"
-#: any.pm:588
+#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Jiusim juonūruoda saknis (root) sadaļa"
-#: any.pm:589
+#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Itys nūsaukums jau ir izmontuots"
-#: any.pm:607
+#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kaida veida īrokstu gribit pīvīnuot"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:608
+#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Cyta OS (SunOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Cyta OS (MacOS...)"
-#: any.pm:609
+#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Cyta OS (Windows...)"
-#: any.pm:656
+#: any.pm:655
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Suokneišonys stila konfigureišona"
-#: any.pm:657
+#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -340,136 +340,136 @@ msgstr ""
"Ite ir dažaidi suokneišonys īroksti.\n"
"Jius varit pīvīnuot jaunus voi izmaineit esūšūs."
-#: any.pm:868
+#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "pīkļuve X programmom"
-#: any.pm:869
+#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "pīkļuve rpm reikim"
-#: any.pm:870
+#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "atļaut \"su\""
-#: any.pm:871
+#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "pīkļuve administreišonys failim"
-#: any.pm:872
+#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "pīkļuve teikla reikim"
-#: any.pm:873
+#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "pīkļuve kompileišonys reikim"
-#: any.pm:879
+#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(jau pīvīnuots %s)"
-#: any.pm:885
+#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Lyudzu īvodit lītuotuoja vuordu"
-#: any.pm:886
+#: any.pm:885
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Lītuotuoja vuordā var byut tikai mozie angļu burti, cipari, `-' i `_'"
-#: any.pm:887
+#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Lītuotuoja vuords ir puoruok garš"
-#: any.pm:888
+#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Šaids lītuotuoja vuords jau ir pīvīnuots"
-#: any.pm:894 any.pm:930
+#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "Lītuotuoja ID"
-#: any.pm:894 any.pm:931
+#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "Grupys ID"
-#: any.pm:895
+#: any.pm:894
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opcejai %s ir juobyun numeram!"
-#: any.pm:896
+#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:900
+#: any.pm:899
#, fuzzy, c-format
msgid "User management"
msgstr "Lītuotuoja vuords"
-#: any.pm:905
+#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:906 authentication.pm:236
+#: any.pm:905 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "root parolis izviele"
-#: any.pm:912
+#: any.pm:911
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Īvodit lītuotuoju\n"
"%s"
-#: any.pm:914
+#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:917
+#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Vuords i uzvuords"
-#: any.pm:924
+#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Slāgvuords"
-#: any.pm:929
+#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Čaula"
-#: any.pm:972
+#: any.pm:971
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "lyudzu pagaidit cikom izpyldās ttmkfdir..."
-#: any.pm:1004 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autopīsasliegšonuos"
-#: any.pm:1005
+#: any.pm:1004
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
@@ -477,62 +477,62 @@ msgstr ""
"atvērta viena noteikta lietotāja sesija. \n"
"Vai vēlaties lietot šo iespēju?"
-#: any.pm:1006
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Vai vēlaties izmantot aboot?"
-#: any.pm:1007
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Nūruodit nūkluseitū lītuotuoju:"
-#: any.pm:1008
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Nūruodit izmontojamū lūgu menedžeri:"
-#: any.pm:1019 any.pm:1039 any.pm:1107
+#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
+#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Aizvērt"
-#: any.pm:1093
+#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Licencis leigums"
-#: any.pm:1095 diskdrake/dav.pm:26
+#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Beigt"
-#: any.pm:1102
+#: any.pm:1101
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Voi ir vēl kaida?"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Pījimt"
-#: any.pm:1103
+#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Nūraideit"
-#: any.pm:1129 any.pm:1191
+#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Lyudzu izavielejit izmontojamū volūdu"
-#: any.pm:1157
+#: any.pm:1156
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -543,82 +543,82 @@ msgstr ""
"volūdys, kaidys gribit uzstuodeit. Tuos byus pīejamys,\n"
"kod jiusu instaleišona byus gotova i jius puorstarteisit sovu sistemu."
-#: any.pm:1159 fs/partitioning_wizard.pm:174
+#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1160
+#: any.pm:1159
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Vysys volūdys"
-#: any.pm:1169 any.pm:1200
+#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1170
+#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Vysys volūdys"
-#: any.pm:1192
+#: any.pm:1191
#, fuzzy, c-format
msgid "Language choice"
msgstr "Manuali"
-#: any.pm:1246
+#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Vaļsts / Regions"
-#: any.pm:1247
+#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Lyudzu izavielejit jiusu vaļsti"
-#: any.pm:1249
+#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ite ir pylns pīejamū vaļstu saroksts"
-#: any.pm:1250
+#: any.pm:1249
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Cyti porti"
-#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
+#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Izvārsta"
-#: any.pm:1256
+#: any.pm:1255
#, fuzzy, c-format
msgid "Input method:"
msgstr "Teikla metode:"
-#: any.pm:1259
+#: any.pm:1258
#, c-format
msgid "None"
msgstr "Nav"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Bez kūplītuošonys"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Atļaut vysus lītuotuojus"
-#: any.pm:1340
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Pīlāguota"
-#: any.pm:1344
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -634,21 +634,21 @@ msgstr ""
"\n"
"\"Izvārts\" atļaun individualu tīseibu pīškieršonu.\n"
-#: any.pm:1356
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1359
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1367
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -656,12 +656,12 @@ msgstr ""
"Jius varit eksportēt, lītojūt NFS voi SMB. Lyudzu izavielejit, kuru gribit "
"lītuot."
-#: any.pm:1395
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Palaist userdrake"
-#: any.pm:1397
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -670,54 +670,54 @@ msgstr ""
"Lītuotuoju kūplītuojumi izmontoj grupu \"fileshare\". \n"
"Jius varit izmontuot userdrake, lai itai grupai pīvīnuotu lītuotuojus."
-#: any.pm:1504
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1508
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Laika jūsla"
-#: any.pm:1543
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Kaida ir jiusu laika jūsla?"
-#: any.pm:1566 any.pm:1568
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1569
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1573
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Datora pulksteņs īstateits ruodeit GMT laiku"
-#: any.pm:1574
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Datora pulksteņs īstateits ruodeit GMT laiku"
-#: any.pm:1576
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP servers"
-#: any.pm:1577
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatiska laika sinhronizaceja (izmontojūt NTP)"
@@ -1044,7 +1044,7 @@ msgstr "Domena administratora parole"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:978
+#: bootloader.pm:991
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1059,56 +1059,56 @@ msgstr ""
"gaidit, cikom tiks iiluodeita nuuklusaatuo sistema.\n"
"\n"
-#: bootloader.pm:1156
+#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO ar teksta izvieļni"
-#: bootloader.pm:1157
+#: bootloader.pm:1170
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1158
+#: bootloader.pm:1171
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1159
+#: bootloader.pm:1172
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1160
+#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1244
+#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "napīteik vītys /boot sadaļā"
-#: bootloader.pm:1970
+#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Jius navarit instalēt suokneituoju %s sadaļā\n"
-#: bootloader.pm:2091
+#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2104
+#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2105
+#: bootloader.pm:2118
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Suokneituoja instaleišona"
@@ -1226,7 +1226,7 @@ msgstr "Gotovs"
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
-#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
@@ -1250,7 +1250,7 @@ msgstr "URL ir juosasuoc ar http:// voi https://"
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Uzmaneibu"
@@ -2285,7 +2285,7 @@ msgstr "Meklēšanas serveri"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Napīcīšoms instalēt pakūtni %s. Voi gribit tū instalēt?"
-#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Navaru instalēt Xorg pakūtni: %s"
@@ -2295,17 +2295,17 @@ msgstr "Navaru instalēt Xorg pakūtni: %s"
msgid "Mandatory package %s is missing"
msgstr "Iztryukst obligatuo pakūtne %s."
-#: do_pkgs.pm:39 do_pkgs.pm:77
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Tiks instaleitys sekūjūšys pakūtnis:\n"
-#: do_pkgs.pm:241
+#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Instaleju pakūtnis..."
-#: do_pkgs.pm:286 pkgs.pm:285
+#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Nūjamu pakūtnis..."
@@ -4692,7 +4692,7 @@ msgstr "Zambija"
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1227
+#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Laipni lyudzam %s'a"
@@ -4718,7 +4718,7 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:11
+#: messages.pm:12
#, c-format
msgid ""
"Introduction\n"
@@ -4731,12 +4731,11 @@ msgid ""
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
-"distributed with these products provided by Mageia's licensors or "
-"suppliers."
+"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-
-
+#: messages.pm:21
+#, c-format
msgid ""
"1. License Agreement\n"
"\n"
@@ -4759,7 +4758,8 @@ msgid ""
"Software Products."
msgstr ""
-
+#: messages.pm:35
+#, c-format
msgid ""
"2. Limited Warranty\n"
"\n"
@@ -4804,7 +4804,8 @@ msgid ""
"you."
msgstr ""
-
+#: messages.pm:61
+#, c-format
msgid ""
"3. The GPL License and Related Licenses\n"
"\n"
@@ -4824,7 +4825,8 @@ msgid ""
"further details."
msgstr ""
-
+#: messages.pm:73
+#, c-format
msgid ""
"4. Intellectual Property Rights\n"
"\n"
@@ -4838,7 +4840,8 @@ msgid ""
"\"Mageia\" and associated logos are trademarks of Mageia"
msgstr ""
-
+#: messages.pm:82
+#, c-format
msgid ""
"5. Governing Laws \n"
"\n"
@@ -4856,7 +4859,7 @@ msgid ""
"For any question on this document, please contact Mageia."
msgstr ""
-#: messages.pm:93
+#: messages.pm:95
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
@@ -4869,7 +4872,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: messages.pm:102
+#: messages.pm:104
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index a4f381f4b..69bf00f5a 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po